Questions tagged [deterministic]

The system or program exhibits the same behavior in different runs.

The system or program exhibits the same behavior on different runs. This is opposed to .

353 questions
-1
votes
1 answer

Does this code for deterministic execution of java threads look correct from a concurrency point of view?

I wanted a way to have multiple threads, but to have only one thread running at a time, controlling which thread ran when and how much code each thread would run at a time. The solution I've arrived at is to have a controller thread and worker…
Bruce
  • 2,406
  • 5
  • 29
  • 35
-1
votes
1 answer

For algorithms such as the gossip protocol used by Cassandra, what is the advantage of random peer selection versus a deterministic approach?

For algorithms such as the gossip protocol used by Cassandra, what is the advantage of random peer selection versus a deterministic approach such as iterating over the list of all peers?
Coder
  • 441
  • 2
  • 17
-1
votes
1 answer

random process modeling in signal processing

i would like to understand one thing and please help me to clarify it,sometimes it is necessary to represent given data by sum of complex exponentials with additive white noise,let us consider following model using sinusoidal model clear…
user466534
-1
votes
1 answer

java bytecode deterministic instructions

I need to find automatically all instructions in java bytecode that are executed for sure. An analog example in pseudocode: x=a; //will be executed for sure y=b; //will be executed for sure if(x>y) //will be executed for sure x++; //might not be…
-2
votes
3 answers

Paring function - Output becomes exponential for big real inputs

I am using a Cantor pairing function that takes two real number output unique real number. def cantor_paring(a,b): return (1/2)*(a+b)*(a+b+1) + b This work good for me when the input pair number are small. cantor_paring(3,5) 41.0 However, when…
shakthydoss
  • 2,551
  • 6
  • 27
  • 36
-2
votes
1 answer

GPU determinism with TensorFlow bilinear interpolation

I'm looking to use TensorFlow Addons (9.1) with TensorFlow (2.2-stable). There is a function tfa.image.dense_image_warp that I wish to use. However, it uses bilinear interpolation which I'm having trouble understanding if it is…
-2
votes
1 answer

deterministic distribution noise in python

I'm trying to simulate this article. In order to make images noisy and based on the article I need to add manually deterministic distribution noise to Mnist dataset. The article says " This noise has been added manually using deterministic…
-2
votes
1 answer

Which are the deterministic sorting algorithms with O(nlogn)?

Which are the deterministic sorting algorithms with O(nlogn)...? Only name few algorithms...
apkos99
  • 109
  • 7
1 2 3
23
24