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

  /external/tensorflow/tensorflow/python/kernel_tests/linalg/
linear_operator_util_test.py 156 x_ph = array_ops.placeholder(dtypes.float32)
159 x_bc, y_bc = linear_operator_util.broadcast_matrix_batch_dims([x_ph, y_ph])
162 x_bc_, y_bc_ = sess.run([x_bc, y_bc], feed_dict={x_ph: x, y_ph: y})
176 x_ph = array_ops.placeholder(dtypes.float32)
179 x_bc, y_bc = linear_operator_util.broadcast_matrix_batch_dims([x_ph, y_ph])
182 x_bc_, y_bc_ = sess.run([x_bc, y_bc], feed_dict={x_ph: x, y_ph: y})
219 x_ph = array_ops.placeholder(dtypes.float64)
224 [linear_operator_util.matmul_with_broadcast(x_ph, y_ph),
226 feed_dict={x_ph: x, y_ph: y})
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
sample_stats_test.py 45 x_ph = array_ops.placeholder_with_default(
52 x_ph, axis=1, center=False, normalize=False)
63 x_ph = array_ops.placeholder_with_default(
70 x_ph, axis=1, normalize=False, center=True)
99 x_ph = array_ops.placeholder_with_default(
104 x_ph, axis=axis, max_lags=max_lags, center=center,
166 x_ph = array_ops.placeholder_with_default(
171 x_ph, max_lags=l // 2, center=True, normalize=False)
187 x_ph = array_ops.placeholder_with_default(
192 x_ph, max_lags=1000 * 10 // 2, center=True, normalize=False
    [all...]
  /external/tensorflow/tensorflow/contrib/bayesflow/python/kernel_tests/
hmc_test.py 127 x_ph = array_ops.placeholder(np.float32, name="x_ph")
128 feed_dict = {x_ph: np.random.rand(50, 10, 2)}
129 self._integrator_conserves_energy(x_ph, independent_chain_ndims,
247 x_ph = array_ops.placeholder(np.float32, name="x_ph")
248 feed_dict = {x_ph: np.random.rand(50, 10, 2)}
249 self._chain_gets_correct_expectations(x_ph, independent_chain_ndims,
445 x_ph = array_ops.placeholder(np.float32, name="x_ph")
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
batch_matmul_op_test.py 91 x_ph = array_ops.placeholder(x.dtype)
94 x_ph, y_ph, adjoint_a=adjoint_a, adjoint_b=adjoint_b)
95 z0_val = sess.run(z0, feed_dict={x_ph: x, y_ph: y})
fft_ops_test.py 48 x_ph = array_ops.placeholder(dtype=dtypes.as_dtype(x.dtype))
49 x_tf = self._tfFFT(x_ph, rank, fft_length, feed_dict={x_ph: x})
58 x_ph = array_ops.placeholder(dtype=dtypes.as_dtype(x.dtype))
59 x_tf = self._tfIFFT(x_ph, rank, fft_length, feed_dict={x_ph: x})
  /external/tensorflow/tensorflow/python/ops/
special_math_ops_test.py 66 x_ph = array_ops.placeholder(dtypes.float32, [3, 2, 3, None])
67 beta_ph = math_ops.exp(special_math_ops.lbeta(x_ph))
68 self.assertAllClose(expected_beta_x, beta_ph.eval(feed_dict={x_ph: x_}))

Completed in 4476 milliseconds