Searched refs:deterministic (Results 1 – 25 of 112) sorted by relevance
12345
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/ |
D | deterministic_test.py | 21 from tensorflow.contrib.distributions.python.ops import deterministic as deterministic_lib 34 deterministic = deterministic_lib.Deterministic(loc) 36 self.assertAllEqual(deterministic.batch_shape_tensor().eval(), (2, 3, 4)) 37 self.assertAllEqual(deterministic.batch_shape, (2, 3, 4)) 38 self.assertAllEqual(deterministic.event_shape_tensor().eval(), []) 39 self.assertEqual(deterministic.event_shape, tensor_shape.TensorShape([])) 43 deterministic = deterministic_lib.Deterministic( 47 deterministic.prob(0.).eval() 50 deterministic = deterministic_lib.Deterministic(0) 52 self.assertAllClose(1, deterministic.prob(0).eval()) [all …]
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_StatelessRandomNormal.pbtxt | 27 summary: "Outputs deterministic pseudorandom values from a normal distribution." 31 The outputs are a deterministic function of `shape` and `seed`.
|
D | api_def_StatelessRandomUniform.pbtxt | 27 summary: "Outputs deterministic pseudorandom random values from a uniform distribution." 32 The outputs are a deterministic function of `shape` and `seed`.
|
D | api_def_StatelessTruncatedNormal.pbtxt | 27 summary: "Outputs deterministic pseudorandom values from a truncated normal distribution." 33 The outputs are a deterministic function of `shape` and `seed`.
|
D | api_def_FractionalAvgPool.pbtxt | 62 name: "deterministic" 66 in unit test to make FractionalAvgPool deterministic.
|
D | api_def_MatchingFiles.pbtxt | 19 Note also that the order of filenames returned can be non-deterministic.
|
D | api_def_StringToHashBucket.pbtxt | 17 The hash function is deterministic on the content of the string within the
|
D | api_def_FractionalMaxPool.pbtxt | 62 name: "deterministic" 66 in unit test to make FractionalMaxPool deterministic.
|
D | api_def_ParallelInterleaveDataset.pbtxt | 19 !! WARNING !! This dataset is not deterministic!
|
D | api_def_StringToHashBucketFast.pbtxt | 23 The hash function is deterministic on the content of the string within the
|
D | api_def_StringToHashBucketStrong.pbtxt | 30 The hash function is deterministic on the content of the string within the
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | fractional_avg_pool_op_test.py | 136 deterministic=True, 169 deterministic=True, 254 deterministic=True, 328 deterministic=True, 478 deterministic=True, 511 deterministic=True, 542 deterministic=True,
|
D | fractional_max_pool_op_test.py | 136 deterministic=True, 169 deterministic=True, 299 deterministic=True, 463 deterministic=True, 498 deterministic=True, 531 deterministic=True,
|
/external/boringssl/src/crypto/rand_extra/ |
D | CMakeLists.txt | 8 deterministic.c
|
/external/libxml2/result/VC/ |
D | ElementValid8.rdr | 2 <doc><a/><c> doc is non-deterministic </c></doc>
|
D | ElementValid8 | 2 <doc><a/><c> doc is non-deterministic </c></doc>
|
/external/swiftshader/third_party/subzero/docs/ |
D | ALLOCATION.rst | 33 Although code randomization is a key aspect of security, deterministic and 36 be made deterministic. 39 translation queue in deterministic order. But since translation is 41 deterministic. The writer thread would be responsible for reordering the
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/ |
D | boundarytests.txt | 6 Potentially the MAX+1/MIN-1 values are deterministic. The others are just
|
/external/ltp/testcases/open_posix_testsuite/Documentation/ |
D | HOWTO_BoundaryTest | 16 Potentially the MAX+1/MIN-1 values are deterministic. The others are just
|
/external/llvm/test/tools/llvm-profdata/ |
D | hash-mismatch.proftext | 7 # The function ordering is non-deterministic, so we need to do our
|
/external/swiftshader/src/Shader/ |
D | Shader.hpp | 405 …bool deterministic; // Equal accross shader instances run in lockstep (e.g. unrollable loop cout… member 436 rel.deterministic = false; in Parameter()
|
/external/puffin/ |
D | README.md | 3 Source code for Puffin: A utility for deterministic DEFLATE recompression.
|
/external/tensorflow/tensorflow/contrib/bayesflow/python/ops/ |
D | layers_util.py | 24 from tensorflow.contrib.distributions.python.ops import deterministic as deterministic_lib
|
/external/boringssl/src/ |
D | FUZZING.md | 59 * Replace `RAND_bytes` with a deterministic PRNG. Call `RAND_reset_for_fuzzing()` at the start of f… 77 … a `-fuzzer` flag which mirrors the fuzzer mode changes above and a `-deterministic` flag which re…
|
/external/deqp/doc/testspecs/GLES2/ |
D | functional.color_clear.txt | 40 or color mask are chosen using deterministic random number generator.
|
12345