HomeSort by relevance Sort by last modified time
    Searched refs:input3 (Results 1 - 20 of 20) sorted by null

  /external/tensorflow/tensorflow/lite/kernels/
select_test.cc 43 int input3() { return input3_; } function in class:tflite::__anon46091::SelectOpModel
65 model.PopulateTensor<bool>(model.input3(), {true, true, true, true});
79 model.PopulateTensor<float>(model.input3(), {0.5, 0.6, 0.7, 0.8});
92 model.PopulateTensor<uint8_t>(model.input3(), {5, 6, 7, 8});
105 model.PopulateTensor<int8_t>(model.input3(), {5, 6, 7, -8});
118 model.PopulateTensor<int16_t>(model.input3(), {5, 6, 7, 8});
131 model.PopulateTensor<int32_t>(model.input3(), {5, 6, 7, 8});
143 model.PopulateTensor<int32_t>(model.input3(), {5, 6, 7, 8});
155 model.PopulateTensor<int32_t>(model.input3(), {5, 6, 7, 8});
detection_postprocess_test.cc 42 const TensorData& input3,
49 input3_ = AddInput(input3);
75 int input3() { return input3_; } function in class:tflite::ops::custom::__anon46011::BaseDetectionPostprocessOpModel
220 m.QuantizeAndPopulate<uint8_t>(m.input3(), inputs3[0]);
253 const TensorData& input3, const TensorData& output1,
258 input3_ = AddInput(input3);
286 int input3() { return input3_; } function in class:tflite::ops::custom::__anon46011::DetectionPostprocessOpModelwithRegularNMS
431 m.QuantizeAndPopulate<uint8_t>(m.input3(), inputs3[0]);
543 m.QuantizeAndPopulate<uint8_t>(m.input3(), inputs3[0]);
  /art/test/537-checker-arraycopy/src/
Main.java 94 public static int arraycopy3(Object[] obj1, Object[] obj2, int input1, int input3, int input4) {
95 System.arraycopy(obj1, input1, obj2, input3, input4);
98 return input1 + input3 + input4;
  /external/skia/tests/
GrSKSLPrettyPrintTest.cpp 21 const SkString input3(" dangerous\ndo so at your own\n risk*/;\n\n\t\t\t\n"
96 testStr.push_back(input3.c_str());
97 lengths.push_back((int)input3.size());
  /external/skqp/tests/
GrSKSLPrettyPrintTest.cpp 21 const SkString input3(" dangerous\ndo so at your own\n risk*/;\n\n\t\t\t\n"
96 testStr.push_back(input3.c_str());
97 lengths.push_back((int)input3.size());
  /external/libchrome/crypto/
secure_hash_unittest.cc 18 std::string input3(500000, 'a'); // 'a' repeated half a million times
28 ctx->Update(input3.data(), input3.size());
29 ctx->Update(input3.data(), input3.size());
101 std::string input3 = input1 + input2; local
102 ctx2->Update(input3.data(), input3.size());
sha2_unittest.cc 82 std::string input3(1000000, 'a'); // 'a' repeated a million times
93 crypto::SHA256HashString(input3, output3, sizeof(output3));
98 crypto::SHA256HashString(input3,
  /external/eigen/unsupported/test/
cxx11_tensor_chipping.cpp 203 Tensor<float, 3, DataLayout> input3(3,7,11);
204 input3.setRandom();
205 Tensor<float, 3, DataLayout> result2 = input1.template chip<0>(0).template chip<1>(2) + input3;
209 float expected = input1(0,i,2,j,k) + input3(i,j,k);
242 Tensor<float, 4, DataLayout> input3(2,5,7,11);
243 input3.setRandom();
245 tensor.template chip<1>(1) = input3;
254 VERIFY_IS_EQUAL(tensor(i,j,k,l,m), input3(i,k,l,m));
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ReduceTest.java 602 private long sillySum(final byte[] input1, final float[] input2, final int[] input3) {
603 // input3 is a flattened 3-vector
605 assertEquals(input1.length * 3, input3.length);
609 sum += ((((input1[i] + (long)Math.ceil(Math.log(input2[i]))) + input3[3*i + 0]) + input3[3*i + 1]) + input3[3*i + 2]);
618 // input3 is a flattened 3-vector
619 final int[] input3 = createInputArrayInt(3 * length, 18); local
621 final long javaRslt = sillySum(input1, input2, input3);
622 final long rsRslt = mScript.reduce_sillysum(input1, input2, input3).get()
676 final int[] input3 = createInputArrayInt(3 * lengths[len3idx], 21); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
listformattertest.cpp 108 UnicodeString input3[] = {one, two, three}; local
109 CheckFormatting(formatter.getAlias(), input3, 3, results[2], testName);
127 UnicodeString input3[] = {one, two, three}; local
128 formatter->format(input3, 3, results[2], errorCode);
536 UnicodeString input3[] = {one, two, three}; local
537 CheckFormatting(&formatter, input3, 3, results[2], "TestOutOfOrderPatterns()");
  /bionic/tests/
math_data_test.h 80 T3 input3; member in struct:data_1_3_t
298 data[i].expected, f(data[i].input1, data[i].input2, data[i].input3)) << "Failed on element " << i;
  /build/soong/android/
rule_builder_test.go 247 "input3": nil,
282 Input(PathForSource(ctx, "input3")).
289 "command3 input3 out/output2 out/output3",
294 wantInputs := PathsForSource(ctx, []string{"Implicit", "Input", "input", "input2", "input3"})
  /external/libvpx/libvpx/vpx_dsp/mips/
fwd_txfm_msa.h 178 #define FDCT8x16_ODD(input0, input1, input2, input3, input4, input5, input6, \
196 ILVL_H2_SH(input2, input5, input3, input4, vec2_m, vec4_m); \
197 ILVR_H2_SH(input2, input5, input3, input4, vec3_m, vec5_m); \
  /external/libvpx/libvpx/vpx_dsp/x86/
fwd_txfm_impl_sse2.h 614 __m128i input0, input1, input2, input3, input4, input5, input6, input7; local
    [all...]
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 933 ArrayInputStream input3(buffer + 19, 6);
943 {&input1, &input2, &input3, &input4, &input5, &input6, &input7};
  /external/dng_sdk/source/
dng_read_image.cpp 302 const uint8 *input3 = input + rowIncrement * 3; local
304 const uint8 *input3 = input;
316 output [3] = input3 [col];
    [all...]
  /external/tensorflow/tensorflow/core/graph/
graph_constructor_test.cc 2347 Node* input3 = FindNode("import\/input3"); local
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
optimized_ops.h 694 int8x16_t input3 = vreinterpretq_s8_u8( local
1479 int8x16_t input3 = vld1q_s8(shuffled_input_ptr + 48); local
    [all...]
  /external/tensorflow/tensorflow/lite/kernels/internal/optimized/
optimized_ops.h 572 int8x16_t input3 = vreinterpretq_s8_u8( local
648 local_accum01 = vmull_s8(vget_low_s8(weights03), vget_low_s8(input3));
650 local_accum11 = vmull_s8(vget_low_s8(weights13), vget_low_s8(input3));
654 vget_high_s8(input3));
658 vget_high_s8(input3));
1423 int8x16_t input3 = vld1q_s8(shuffled_input_ptr + 48); local
    [all...]
  /external/tensorflow/tensorflow/python/saved_model/
load_test.py 357 input3 = [6, ({"a": y}, x)] # Compatible with input1 signature.
370 self.assertEqual(32, imported.f(input3).numpy())
    [all...]

Completed in 652 milliseconds