python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Golang: How to build deterministic in github ci actions and local on m1 mac
I am trying to build deterministic go executables. My build script is really simple:
#!/bin/bash
BASEPATH=$(git rev-parse --show-toplevel)
cd "$BASEPATH/lambda"
GOOS=linux GOARCH=amd64 GOFL...
markussiebert
Votes: 0
Answers: 1
How to clear MySQL deterministic function result cache?
I have a huge Geo database that I frequently need to compare with real time Geo data in order to determine nearest location per Latitude:Longitude. The location table does hold a number of rows, but i...
Broken Arrow
Votes: 0
Answers: 2
How to get rid of nondeterminism in C++. Tried ADDR_NO_RANDOMIZE, other things
I have a C++ program that is nondeterministic. I run it with an input file, and it runs ok. I run it with the same input file a second time, and it crashes. I'd like to get rid of the nondeterminis...
jyelon
Votes: 0
Answers: 3
Initialise Pytorch layer with local random number generator
When writing larger programs that require determinism for random processes, it is generally considered good practice to create function-specific random number generators (rngs) and pass those to the r...
MartijnVanAttekum
Votes: 0
Answers: 1