/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/ |
D | prepare_quantize.cc | 200 auto min_max = GetMinMaxValuesForArgument(func_name, i); in SetInputNodesQuantizationParams() local 202 if (!min_max.first.hasValue() || !min_max.second.hasValue()) return; in SetInputNodesQuantizationParams() 206 builder.getF64FloatAttr(min_max.first.getValue()), in SetInputNodesQuantizationParams() 207 builder.getF64FloatAttr(min_max.second.getValue()), in SetInputNodesQuantizationParams()
|
/external/rust/crates/itertools/examples/ |
D | iris.rs | 110 let min_max = |data: &[Iris], col| { in main() localVariable 117 let (min_x, max_x) = min_max(&irises, a); in main() 118 let (min_y, max_y) = min_max(&irises, b); in main()
|
/external/tensorflow/tensorflow/compiler/mlir/lite/quantization/tests/ |
D | import_quant_stats.mlir | 1 …ms { min_max { min: -1 max: 1 } } } entries { name: "op_0:0" params { min_max { min: -2 max: 2 } }…
|
/external/deqp-deps/SPIRV-Tools/source/fuzz/ |
D | fuzzer_context.cpp | 378 const std::pair<uint32_t, uint32_t>& min_max) { in ChooseBetweenMinAndMax() argument 379 assert(min_max.first <= min_max.second); in ChooseBetweenMinAndMax() 380 return min_max.first + in ChooseBetweenMinAndMax() 381 random_generator_->RandomUint32(min_max.second - min_max.first + 1); in ChooseBetweenMinAndMax()
|
D | fuzzer_context.h | 558 uint32_t ChooseBetweenMinAndMax(const std::pair<uint32_t, uint32_t>& min_max);
|
D | fuzzer_util.cpp | 872 auto min_max = std::minmax_element(arr.begin(), arr.end()); in IsPermutationOfRange() local 873 return arr.size() == hi - lo + 1 && *min_max.first == lo && in IsPermutationOfRange() 874 *min_max.second == hi; in IsPermutationOfRange()
|
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | fuzzer_context.cpp | 378 const std::pair<uint32_t, uint32_t>& min_max) { in ChooseBetweenMinAndMax() argument 379 assert(min_max.first <= min_max.second); in ChooseBetweenMinAndMax() 380 return min_max.first + in ChooseBetweenMinAndMax() 381 random_generator_->RandomUint32(min_max.second - min_max.first + 1); in ChooseBetweenMinAndMax()
|
D | fuzzer_context.h | 558 uint32_t ChooseBetweenMinAndMax(const std::pair<uint32_t, uint32_t>& min_max);
|
D | fuzzer_util.cpp | 872 auto min_max = std::minmax_element(arr.begin(), arr.end()); in IsPermutationOfRange() local 873 return arr.size() == hi - lo + 1 && *min_max.first == lo && in IsPermutationOfRange() 874 *min_max.second == hi; in IsPermutationOfRange()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/ |
D | fuzzer_context.cpp | 396 const std::pair<uint32_t, uint32_t>& min_max) { in ChooseBetweenMinAndMax() argument 397 assert(min_max.first <= min_max.second); in ChooseBetweenMinAndMax() 398 return min_max.first + in ChooseBetweenMinAndMax() 399 random_generator_->RandomUint32(min_max.second - min_max.first + 1); in ChooseBetweenMinAndMax()
|
D | fuzzer_context.h | 585 uint32_t ChooseBetweenMinAndMax(const std::pair<uint32_t, uint32_t>& min_max);
|
D | fuzzer_util.cpp | 931 auto min_max = std::minmax_element(arr.begin(), arr.end()); in IsPermutationOfRange() local 932 return arr.size() == hi - lo + 1 && *min_max.first == lo && in IsPermutationOfRange() 933 *min_max.second == hi; in IsPermutationOfRange()
|
/external/tensorflow/tensorflow/tools/tensorflow_builder/compat_checker/ |
D | compat_checker.py | 288 min_max = next_match.replace(" ", "").split(",") 293 if not min_max[0]: 294 min_max[0] = "0" 296 if not min_max[1]: 297 min_max[1] = "inf" 299 self.range = min_max
|
/external/tensorflow/tensorflow/compiler/mlir/lite/tests/end2end/ |
D | quant_stats.pbtxt.stats | 4 min_max {
|
/external/tensorflow/tensorflow/compiler/mlir/lite/python/ |
D | tf_tfl_flatbuffer_helpers.cc | 233 auto min_max, InputStatsToMinMax(flag.mean_value(), in PopulateQuantizationSpecs() 235 node_mins->push_back(min_max.first); in PopulateQuantizationSpecs() 236 node_maxs->push_back(min_max.second); in PopulateQuantizationSpecs()
|
/external/tensorflow/tensorflow/compiler/mlir/lite/quantization/ |
D | import_quant_stats_pass.cc | 143 llvm::APFloat min(param.min_max().min()); in ImportAsStatsOps() 144 llvm::APFloat max(param.min_max().max()); in ImportAsStatsOps()
|
D | quantization_info.proto | 28 MinMax min_max = 1; field
|
/external/eigen/test/ |
D | array.cpp | 425 template<typename ArrayType> void min_max(const ArrayType& m) in min_max() function 472 CALL_SUBTEST_1( min_max(Array<float, 1, 1>()) ); in test_array() 473 CALL_SUBTEST_2( min_max(Array22f()) ); in test_array() 474 CALL_SUBTEST_3( min_max(Array44d()) ); in test_array() 475 …CALL_SUBTEST_5( min_max(ArrayXXf(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<in… in test_array() 476 …CALL_SUBTEST_6( min_max(ArrayXXi(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<in… in test_array()
|
/external/llvm-project/llvm/test/Assembler/ |
D | auto_upgrade_nvvm_intrinsics.ll | 67 ; CHECK-LABEL: @min_max 68 define void @min_max(i32 %a1, i32 %a2, i64 %b1, i64 %b2) {
|
/external/tensorflow/tensorflow/core/ops/ |
D | array_ops.cc | 3254 ShapeHandle min_max; in __anon42d741194a02() local 3255 TF_RETURN_IF_ERROR(c->WithRank(c->input(2), 0, &min_max)); in __anon42d741194a02() 3256 TF_RETURN_IF_ERROR(c->Merge(min_max, c->input(3), &min_max)); in __anon42d741194a02() 3259 c->set_output(1, min_max); in __anon42d741194a02() 3260 c->set_output(2, min_max); in __anon42d741194a02() 3304 ShapeHandle min_max; in __anon42d741194c02() local 3305 TF_RETURN_IF_ERROR(c->WithRank(c->input(2), 1, &min_max)); in __anon42d741194c02() 3306 TF_RETURN_IF_ERROR(c->Merge(min_max, last_dim, &min_max)); in __anon42d741194c02() 3307 TF_RETURN_IF_ERROR(c->Merge(c->input(3), min_max, &min_max)); in __anon42d741194c02() 3310 c->set_output(1, min_max); in __anon42d741194c02() [all …]
|
/external/rust/crates/regex/src/ |
D | compile.rs | 556 Range(hir::RepetitionRange::Exactly(min_max)) => { in c_repeat() 557 self.c_repeat_range(&rep.hir, rep.greedy, min_max, min_max) in c_repeat()
|
/external/python/cpython3/Python/ |
D | bltinmodule.c | 1585 min_max(PyObject *args, PyObject *kwds, int op) in min_max() function 1699 return min_max(args, kwds, Py_LT); in builtin_min() 1716 return min_max(args, kwds, Py_GT); in builtin_max()
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 1358 min_max(PyObject *args, PyObject *kwds, int op) in min_max() function 1449 return min_max(args, kwds, Py_LT); in builtin_min() 1463 return min_max(args, kwds, Py_GT); in builtin_max()
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.2.x/src/ |
D | gles31-master.txt | 15411 dEQP-GLES31.functional.uniform_location.min_max.float_vertex_min 15412 dEQP-GLES31.functional.uniform_location.min_max.float_vertex_max 15413 dEQP-GLES31.functional.uniform_location.min_max.float_fragment_min 15414 dEQP-GLES31.functional.uniform_location.min_max.float_fragment_max 15415 dEQP-GLES31.functional.uniform_location.min_max.vec2_vertex_min 15416 dEQP-GLES31.functional.uniform_location.min_max.vec2_vertex_max 15417 dEQP-GLES31.functional.uniform_location.min_max.vec2_fragment_min 15418 dEQP-GLES31.functional.uniform_location.min_max.vec2_fragment_max 15419 dEQP-GLES31.functional.uniform_location.min_max.vec3_vertex_min 15420 dEQP-GLES31.functional.uniform_location.min_max.vec3_vertex_max [all …]
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.2.x/ |
D | gles31-master.txt | 15411 dEQP-GLES31.functional.uniform_location.min_max.float_vertex_min 15412 dEQP-GLES31.functional.uniform_location.min_max.float_vertex_max 15413 dEQP-GLES31.functional.uniform_location.min_max.float_fragment_min 15414 dEQP-GLES31.functional.uniform_location.min_max.float_fragment_max 15415 dEQP-GLES31.functional.uniform_location.min_max.vec2_vertex_min 15416 dEQP-GLES31.functional.uniform_location.min_max.vec2_vertex_max 15417 dEQP-GLES31.functional.uniform_location.min_max.vec2_fragment_min 15418 dEQP-GLES31.functional.uniform_location.min_max.vec2_fragment_max 15419 dEQP-GLES31.functional.uniform_location.min_max.vec3_vertex_min 15420 dEQP-GLES31.functional.uniform_location.min_max.vec3_vertex_max [all …]
|