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

  /external/tensorflow/tensorflow/python/kernel_tests/
reduce_join_op_test.py 191 expected_val = "thisisatestpleasedonotpanic"
194 input_array, expected_val, expected_shape, reduction_indices=None)
197 expected_val = "thisisatestpleasedonotpanic"
200 constant_op.constant(input_array), expected_val,
204 expected_val = input_array
207 input_array, expected_val, expected_shape, reduction_indices=[])
305 expected_val = [["thisisatestpleasedonotpanic"]]
308 constant_op.constant(input_array), expected_val, expected_shape,
312 expected_val = input_array
315 input_array, expected_val, expected_shape
    [all...]
slice_op_test.py 211 expected_val = inp[indices[0]:indices[0] + sizes[0], indices[1]:indices[
215 self.assertAllEqual(slice_val, expected_val)
216 self.assertAllEqual(slice2_val, expected_val)
217 self.assertEqual(expected_val.shape, slice_t.get_shape())
218 self.assertEqual(expected_val.shape, slice2_t.get_shape())
sparse_conditional_accumulator_test.py 251 expected_val = sum(elems) / len(elems)
253 np.array([[expected_val, 0], [0, expected_val]]).astype(np.float32),
  /external/google-breakpad/src/testing/gtest/test/
gtest_repeat_test.cc 65 const int expected_val = (expected);\
67 if (::testing::internal::IsTrue(expected_val != actual_val)) {\
71 << "Which is: " << expected_val << "\n";\
  /external/googletest/googletest/test/
gtest_repeat_test.cc 65 const int expected_val = (expected);\
67 if (::testing::internal::IsTrue(expected_val != actual_val)) {\
71 << "Which is: " << expected_val << "\n";\
  /external/protobuf/gtest/test/
gtest_repeat_test.cc 65 const int expected_val = (expected);\
67 if (::testing::internal::IsTrue(expected_val != actual_val)) {\
71 << "Which is: " << expected_val << "\n";\
  /external/v8/testing/gtest/test/
gtest_repeat_test.cc 65 const int expected_val = (expected);\
67 if (::testing::internal::IsTrue(expected_val != actual_val)) {\
71 << "Which is: " << expected_val << "\n";\
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_repeat_test.cc 65 const int expected_val = (expected);\
67 if (::testing::internal::IsTrue(expected_val != actual_val)) {\
71 << "Which is: " << expected_val << "\n";\
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest_repeat_test.cc 65 const int expected_val = (expected);\
67 if (::testing::internal::IsTrue(expected_val != actual_val)) {\
71 << "Which is: " << expected_val << "\n";\
  /external/autotest/server/hosts/
servo_repair.py 61 def _validate_attr(host, val, expected_val, attr, config_file):
74 @param expected_val Expected value.
82 if expected_val is not None and val != expected_val:
84 '%s is %s; it should be %s' % (attr, val, expected_val))
  /external/valgrind/none/tests/ppc32/
test_dfp1.c 395 unsigned long long i, max_rm, expected_val; local
420 expected_val = i << shift;
423 expected_val = (i << shift) | BFP_MAX_RM;
428 *hex_fpscr_out, expected_val,
429 (expected_val == *hex_fpscr_out) ? "yes" : "no");
  /external/valgrind/none/tests/ppc64/
test_dfp1.c 395 unsigned long long i, max_rm, expected_val; local
420 expected_val = i << shift;
423 expected_val = (i << shift) | BFP_MAX_RM;
428 *hex_fpscr_out, expected_val,
429 (expected_val == *hex_fpscr_out) ? "yes" : "no");
  /external/tensorflow/tensorflow/core/util/tensor_bundle/
tensor_bundle_test.cc 55 const Tensor& expected_val) {
62 EXPECT_EQ(expected_val.dtype(), dtype);
63 EXPECT_EQ(expected_val.shape(), shape);
65 Tensor val(expected_val.dtype(), shape);
67 test::ExpectTensorEqual<T>(val, expected_val);
89 auto* expected_val = expected_var.get<T>(); local
90 EXPECT_EQ(*expected_val, *actual_val);
95 void ExpectNext(BundleReader* reader, const Tensor& expected_val) {
101 test::ExpectTensorEqual<T>(val, expected_val);
338 Tensor expected_val(DT_FLOAT, kFullShape)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
quantized_resize_bilinear_op_test.cc 260 float expected_val = 0.0f; local
262 expected_val = QuantizedToFloat<qint32>(
269 expected_val = (image_val0 + image_val1) * SCALE;
271 VLOG(1) << "(" << i << ") " << expected_val << ", " << resized_image_val;
272 EXPECT_NEAR(expected_val, resized_image_val, RESIZE_VAL_TOLERANCE)
273 << expected_val << ", " << resized_image_val;
  /external/tensorflow/tensorflow/compiler/tests/
lrn_ops_test.py 123 expected_val = expected.eval()
125 self.assertAllClose(actual_val, expected_val, rtol=1e-3)
  /external/tensorflow/tensorflow/core/debug/
grpc_session_debug_test.cc 73 // "expected_val".
74 void IsSingleFloatValue(const Tensor& val, float expected_val) {
77 ASSERT_EQ(val.flat<float>()(0), expected_val);
  /external/tensorflow/tensorflow/python/training/
server_lib_test.py 133 expected_val = np.empty([10000, 3000], dtype=np.float32)
134 expected_val.fill(0.5)
135 self.assertAllEqual(expected_val, sess.run(c))
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_session_test.cc 64 // "expected_val".
65 static void IsSingleFloatValue(const Tensor& val, float expected_val) {
68 ASSERT_EQ(val.flat<float>()(0), expected_val);
    [all...]

Completed in 673 milliseconds