Home
last modified time | relevance | path

Searched refs:v_val (Results 1 – 8 of 8) sorted by relevance

/external/deqp/data/gles31/shaders/es32/
Dseparate_shader_validation.test32 out mediump float v_val;
36 v_val = float(gl_VertexID);
47 in mediump float v_val;
50 ${FRAG_COLOR} = vec4(v_val);
66 out mediump float v_val;
69 v_val = float(gl_VertexID);
79 in mediump float v_val;
83 ${FRAG_COLOR} = vec4(v_val + v_val_no_such_output);
99 out mediump vec3 v_val;
102 v_val = vec3(float(gl_VertexID));
[all …]
/external/deqp/data/gles31/shaders/es31/
Dseparate_shader_validation.test14 out mediump float v_val;
18 v_val = float(gl_VertexID);
29 in mediump float v_val;
32 ${FRAG_COLOR} = vec4(v_val);
48 out mediump float v_val;
51 v_val = float(gl_VertexID);
61 in mediump float v_val;
65 ${FRAG_COLOR} = vec4(v_val + v_val_no_such_output);
81 out mediump vec3 v_val;
84 v_val = vec3(float(gl_VertexID));
[all …]
/external/tensorflow/tensorflow/compiler/tests/
Dsvd_op_test.py52 s_val, u_val, v_val = sess.run([s, u, v], feed_dict={x_tf: x_np})
54 v_diff = np.matmul(v_val, np.swapaxes(v_val, -1, -2)) - np.eye(n)
66 np.linalg.norm(self._compute_usvt(s_val, u_val, v_val) - x_np), 2e-2)
Dself_adjoint_eig_op_test.py45 e_val, v_val = sess.run([e, v], feed_dict={x_tf: x_np})
47 v_diff = np.matmul(v_val, np.swapaxes(v_val, -1, -2)) - np.eye(n)
/external/tensorflow/tensorflow/python/ops/
Dnn_batchnorm_test.py80 v_val = np.random.random_sample(param_shape).astype(np.float32)
87 v = constant_op.constant(v_val, name="v")
103 np_bn = self._npBatchNorm(x_val, m_val, v_val, beta_val, gamma_val,
130 v_val = np.random.random_sample(param_shape).astype(np.float64)
136 v = constant_op.constant(v_val, name="v")
215 v_val = np.random.random_sample(param_shape).astype(np.float32)
223 v = constant_op.constant(v_val, name="v")
267 v_val = np.random.random_sample(param_shape).astype(np.float32)
274 v = constant_op.constant(v_val, name="v")
310 v_val = np.random.random_sample(param_shape).astype(numpy_param_dtype)
[all …]
/external/tensorflow/tensorflow/python/client/
Dsession_test.py618 v_val = s.run(v)
619 self.assertAllEqual([[1.0, 1.0]], v_val)
987 v_val = v.eval()
988 self.assertAllEqual([[4.0, 4.0, 4.0]], v_val)
995 v_val = v.eval()
996 self.assertAllEqual([[4.0, 4.0, 4.0]], v_val)
998 v_val = v.eval()
999 self.assertAllEqual([[6.0, 6.0, 6.0]], v_val)
1040 v_val = v.eval()
1041 self.assertAllEqual([[1.0, 1.0]], v_val)
[all …]
/external/deqp/data/gles2/shaders/
Dpreprocessor.test2628 varying float v_val;
2631 v_val = 1.0;
2638 invariant varying float v_val;
2641 out0 = v_val;
2653 varying float v_val;
2656 v_val = 1.0;
2668 varying float v_val;
2671 out0 = v_val;
/external/python/cpython3/Python/
Dhamt.c2433 PyObject *v_val; in _PyHamt_Eq() local
2439 iter_res = hamt_iterator_next(&iter, &v_key, &v_val); in _PyHamt_Eq()
2450 int cmp = PyObject_RichCompareBool(v_val, w_val, Py_EQ); in _PyHamt_Eq()