Home
last modified time | relevance | path

Searched refs:y_val (Results 1 – 21 of 21) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dsgprcopies.ll28 %y_val = phi float [ %call9, %for.body ], [ %y, %for.body.preheader ]
29 %sub = fsub float -0.000000e+00, %y_val
31 %call8 = tail call float @llvm.fmuladd.f32(float %sub, float %y_val, float %call7) #1
33 %call9 = tail call float @llvm.fmuladd.f32(float %mul, float %y_val, float %y) #1
/external/tensorflow/tensorflow/python/ops/
Dnn_test.py1123 y_val = self.evaluate(y)
1124 self.assertAllEqual(y_val, y_val_expected)
1146 y_val = self.evaluate(y)
1147 self.assertAllEqual(y_val, y_val_expected)
1155 y_val = self.evaluate(y)
1156 self.assertAllEqual(y_val, y_val_expected)
1164 y_val = self.evaluate(y)
1165 self.assertAllEqual(y_val, y_val_expected)
1173 y_val = self.evaluate(y)
1174 self.assertAllEqual(y_val, y_val_expected)
[all …]
Dnn_fused_batchnorm_test.py86 y_val = self.evaluate(y)
93 self.assertAllClose(y_ref, y_val, atol=atol)
131 y_val, mean_val, var_val = self.evaluate([y, mean, var])
135 self.assertAllClose(y_ref, y_val, atol=y_atol)
/external/tensorflow/tensorflow/python/training/
Dtraining_ops_test.py219 y_val = [np.arange(1, 11), np.arange(11, 21), np.arange(21, 31)]
221 y = np.array(y_val).astype(dtype)
233 y_val = [[4.0], [5.0], [6.0]]
235 y = np.array(y_val).astype(dtype)
247 y_val = [[4.0], [5.0], [6.0]]
250 y = np.array(y_val).astype(dtype)
/external/tensorflow/tensorflow/compiler/tests/
Dfused_batchnorm_test.py108 y_val, _, _ = sess.run([y, mean, variance], {
113 self.assertAllClose(y_val, y_ref_converted, atol=1e-3)
164 y_val, mean_val, var_val = sess.run([y, mean, var], {
170 self.assertAllClose(y_val, y_ref_converted, atol=1e-3)
Dfifo_queue_test.py176 x_val, y_val = sess.run(dequeued_t)
179 self.assertEqual([y], y_val)
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LICM/
Dlcssa-ssa-promoter.ll48 %y_val = load i32, i32* @y, align 4
49 %icmp = icmp eq i32 %y_val, 0
/external/llvm/test/Transforms/LICM/
Dlcssa-ssa-promoter.ll48 %y_val = load i32, i32* @y, align 4
49 %icmp = icmp eq i32 %y_val, 0
/external/tensorflow/tensorflow/contrib/distribute/python/
Dparameter_server_strategy_test.py246 y_val, z_val, f_val = sess.run([y, z, f])
247 self.assertEqual(y_val, 33.0)
397 y_val, z_val, f_val = sess.run([y, z, f])
398 self.assertEqual(y_val, 33.0)
468 x_val, y_val, z_val = sess.run([x, y, z])
470 self.assertEqual(y_val, 20.0 + 1.0 * num_workers * d.num_replicas_in_sync)
473 y_val == 20.0 + 1.0 * num_workers * d.num_replicas_in_sync and
/external/skqp/src/effects/imagefilters/
DSkMagnifierImageFilter.cpp179 int y_val = SkTPin(bounds.y() + SkScalarFloorToInt(y_interp), 0, inputBM.height() - 1); in onFilterImage() local
181 *dptr = *inputBM.getAddr32(x_val, y_val); in onFilterImage()
/external/skia/src/effects/imagefilters/
DSkMagnifierImageFilter.cpp179 int y_val = SkTPin(bounds.y() + SkScalarFloorToInt(y_interp), 0, inputBM.height() - 1); in onFilterImage() local
181 *dptr = *inputBM.getAddr32(x_val, y_val); in onFilterImage()
/external/tensorflow/tensorflow/python/distribute/
Ddistribute_coordinator_test.py302 x_val, y_val = sess.run([x, y])
305 self.assertEqual(y_val, 14.0)
306 if x_val == 16.0 and y_val == 14.0:
335 x_val, y_val = sess.run([x, y])
338 self.assertEqual(y_val, 14.0)
339 if x_val == 16.0 and y_val == 14.0:
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_map_fn_op_test.py228 y_val, x_val = foo
229 bar = backend.tile(y_val, array_ops.shape(x_val))
/external/tensorflow/tensorflow/python/keras/engine/
Dbase_layer_test.py418 y_val = np.ones((3, 3))
420 np.matmul(x_val, y_val),
431 y_val = np.ones((3, 3))
433 np.matmul(x_val, y_val),
/external/tensorflow/tensorflow/contrib/layers/python/layers/
Drev_block_lib_test.py156 y_val, yd_val, gd_val, g_val = sess.run([y, y_rev, grads_rev, grads])
157 self.assertAllClose(y_val, yd_val)
/external/v8/src/parsing/
Dparser.cc164 double y_val = y->AsLiteral()->AsNumber(); in ShortcutNumericLiteralBinaryExpression() local
167 *x = factory()->NewNumberLiteral(x_val + y_val, pos); in ShortcutNumericLiteralBinaryExpression()
170 *x = factory()->NewNumberLiteral(x_val - y_val, pos); in ShortcutNumericLiteralBinaryExpression()
173 *x = factory()->NewNumberLiteral(x_val * y_val, pos); in ShortcutNumericLiteralBinaryExpression()
176 *x = factory()->NewNumberLiteral(x_val / y_val, pos); in ShortcutNumericLiteralBinaryExpression()
179 int value = DoubleToInt32(x_val) | DoubleToInt32(y_val); in ShortcutNumericLiteralBinaryExpression()
184 int value = DoubleToInt32(x_val) & DoubleToInt32(y_val); in ShortcutNumericLiteralBinaryExpression()
189 int value = DoubleToInt32(x_val) ^ DoubleToInt32(y_val); in ShortcutNumericLiteralBinaryExpression()
194 int value = DoubleToInt32(x_val) << (DoubleToInt32(y_val) & 0x1F); in ShortcutNumericLiteralBinaryExpression()
199 uint32_t shift = DoubleToInt32(y_val) & 0x1F; in ShortcutNumericLiteralBinaryExpression()
[all …]
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h362 PrimaryChromaticity(float x_val, float y_val) : x_(x_val), y_(y_val) {} in PrimaryChromaticity() argument
/external/libaom/libaom/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h362 PrimaryChromaticity(float x_val, float y_val) : x_(x_val), y_(y_val) {} in PrimaryChromaticity() argument
/external/deqp/external/openglcts/modules/gl/
Dgl4cCopyImageTests.cpp5481 const GLuint y_val = y_vals[y]; in ExceedingBoundariesTest() local
5483 …const GLenum res = ((0 == x_val) && (0 == y_val) && (0 == z_val)) ? GL_NO_ERROR : GL_INVALID_VALUE; in ExceedingBoundariesTest()
5501 testCase src_test_case = { tex_target, depth, height, x_val, y_val, z_val, 0, 0, 0, res }; in ExceedingBoundariesTest()
5503 testCase dst_test_case = { tex_target, depth, height, 0, 0, 0, x_val, y_val, z_val, res }; in ExceedingBoundariesTest()
5645 const GLuint y_val = y_vals[y]; in InvalidAlignmentTest() local
5646 … const GLenum res = ((valid_h == h_val) && (valid_w == w_val) && (0 == x_val) && (0 == y_val)) ? in InvalidAlignmentTest()
5650 testCase dst_test_case = { h_val, w_val, 0, 0, x_val, y_val, res }; in InvalidAlignmentTest()
5652 testCase src_test_case = { h_val, w_val, x_val, y_val, 0, 0, res }; in InvalidAlignmentTest()
/external/tensorflow/tensorflow/python/kernel_tests/
Dpadding_fifo_queue_test.py229 x_val, y_val = self.evaluate(dequeued_t)
232 self.assertEqual([y], y_val)
Dfifo_queue_test.py273 x_val, y_val = self.evaluate(dequeued_t)
276 self.assertEqual([y], y_val)