/external/tensorflow/tensorflow/python/keras/engine/ |
D | base_layer_utils_test.py | 82 int_values = keras.Input(shape=(2,), dtype=dtypes.int32) 83 float_values = math_ops.cast(int_values, dtypes.float32) 84 model = keras.Model(int_values, float_values) 100 int_values = keras.Input(shape=(None,), dtype=dtypes.int32, ragged=True) 101 float_values = math_ops.cast(int_values, dtypes.float32) 102 _ = keras.Model(int_values, float_values) 109 int_values = keras.Input(shape=(None,), dtype=dtypes.int32, sparse=True) 110 float_values = math_ops.cast(int_values, dtypes.float32) 111 _ = keras.Model(int_values, float_values) 114 int_values = keras.Input(shape=(None,), dtype=dtypes.int32, ragged=True) [all …]
|
/external/perfetto/test/trace_processor/python/ |
D | api_unittest.py | 30 int_values = [100, 200] 39 batch.varint_cells.extend(int_values) 48 self.assertEqual(row.foo_num, int_values[num]) 51 int_values = [100, 200, 300, 400] 60 batch_1.varint_cells.extend(int_values[:2]) 70 batch_2.varint_cells.extend(int_values[2:]) 79 self.assertEqual(row.foo_num, int_values[num]) 163 int_values = [100, 200] 172 batch.varint_cells.extend(int_values) 182 self.assertEqual(row['foo_num'], int_values[num]) [all …]
|
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | deduction.cpp | 40 template<int...> struct int_values { struct 45 struct int_values<C1, 12, C3> { struct 49 int check1[int_values<256, 12, 3>::value == 0? 1 : -1]; 50 int check2[int_values<3, 12, 3>::value == 1? 1 : -1];
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | deduction.cpp | 40 template<int...> struct int_values { struct 45 struct int_values<C1, 12, C3> { struct 49 int check1[int_values<256, 12, 3>::value == 0? 1 : -1]; 50 int check2[int_values<3, 12, 3>::value == 1? 1 : -1];
|
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/ |
D | p9.cpp | 18 template<int, int, int> struct int_values { struct 23 struct int_values<C1, 12, C3> { struct 27 int check2[int_values<256, 12, 3>::value == 0? 1 : -1]; argument
|
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.class.spec/ |
D | p9.cpp | 18 template<int, int, int> struct int_values { struct 23 struct int_values<C1, 12, C3> { argument 27 int check2[int_values<256, 12, 3>::value == 0? 1 : -1]; argument
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | literal_util_test.cc | 59 std::vector<int_type> int_values = {10, 11}; in TYPED_TEST() local 61 xla::LiteralUtil::CreateR1(absl::Span<const int_type>(int_values)); in TYPED_TEST() 66 test::AsTensor<int_type>(int_values)); in TYPED_TEST()
|
/external/libchrome/ui/gfx/geometry/ |
D | vector2d_unittest.cc | 155 int int_values[][2] = { in TEST() local 164 for (size_t i = 0; i < arraysize(int_values); ++i) { in TEST() 165 int v0 = int_values[i][0]; in TEST() 166 int v1 = int_values[i][1]; in TEST()
|
/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/ |
D | lower_static_tensor_list.cc | 422 auto int_values = dense_elem_attr.getIntValues(); in matchAndRewrite() local 423 for (auto it = int_values.begin(); it != int_values.end(); ++it) { in matchAndRewrite() 425 if (it == int_values.begin() && dim_value == -1) { in matchAndRewrite()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/ |
D | serialization_base.fbs | 179 int_values:[IntValue];
|
D | serialization_base_generated.h | 1768 const flatbuffers::Vector<flatbuffers::Offset<tflite::gpu::data::IntValue>> *int_values() const { in int_values() function 1804 verifier.VerifyVector(int_values()) && in Verify() 1805 verifier.VerifyVectorOfTables(int_values()) && in Verify() 1844 …uffers::Offset<flatbuffers::Vector<flatbuffers::Offset<tflite::gpu::data::IntValue>>> int_values) { in add_int_values() 1845 fbb_.AddOffset(Arguments::VT_INT_VALUES, int_values); in add_int_values() 1890 …fers::Offset<flatbuffers::Vector<flatbuffers::Offset<tflite::gpu::data::IntValue>>> int_values = 0, 1912 builder_.add_int_values(int_values); 1918 const std::vector<flatbuffers::Offset<tflite::gpu::data::IntValue>> *int_values = nullptr, 1929 …auto int_values__ = int_values ? _fbb.CreateVector<flatbuffers::Offset<tflite::gpu::data::IntValue…
|
/external/perfetto/src/trace_processor/ |
D | export_json.cc | 1466 const auto& int_values = trace_metadata.int_value(); in ExportMetadata() local 1500 *int_values[pos]); in ExportMetadata() 1504 writer_.AppendTelemetryMetadataBool("hadFailures", *int_values[pos]); in ExportMetadata() 1519 *int_values[pos]); in ExportMetadata() 1523 writer_.SetTelemetryMetadataTimestamp("traceStart", *int_values[pos]); in ExportMetadata()
|
/external/tensorflow/tensorflow/python/ops/numpy_ops/ |
D | np_array_ops_test.py | 384 int_values = np.arange(-3, 3).tolist() 386 all_values = int_values + float_values 410 for step in int_values:
|
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/ |
D | serialization.cc | 496 for (auto int_values_fb : *fb_args->int_values()) { in Decode()
|