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

  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/bijectors/
affine_test.py 48 def dynamic_run(fun, x_value):
49 x_value = np.array(x_value)
51 return sess.run(fun(x), feed_dict={x: x_value})
71 def dynamic_run(fun, x_value):
72 x_value = np.array(x_value)
74 return sess.run(fun(x), feed_dict={x: x_value})
93 def dynamic_run(fun, x_value):
94 x_value = np.array(x_value
    [all...]
  /external/v8/src/builtins/
builtins-math.cc 89 Node* x_value = LoadHeapNumberValue(x); local
90 Node* value = Float64Abs(x_value);
139 Node* x_value = LoadHeapNumberValue(x); local
140 Node* value = (this->*float64op)(x_value);
160 Node* x_value = TruncateTaggedToFloat64(context, x); local
161 Node* value = (this->*float64op)(x_value);
202 Node* x_value = TruncateTaggedToFloat64(context, x); local
203 Node* value = Float64Atan2(y_value, x_value);
271 Node* x_value = var_clz32_x.value(); local
272 Node* value = Word32Clz(x_value);
307 Node* x_value = TruncateTaggedToFloat64(context, x); local
371 Node* x_value = TruncateTaggedToWord32(context, x); local
403 Node* x_value = TruncateTaggedToFloat64(context, x); local
452 Node* x_value = TruncateTaggedToFloat64(context, x); local
    [all...]
  /external/v8/src/runtime/
runtime-numbers.cc 130 CONVERT_SMI_ARG_CHECKED(x_value, 0);
134 if (x_value == y_value) return Smi::FromInt(EQUAL);
138 if (x_value == 0 || y_value == 0)
139 return Smi::FromInt(x_value < y_value ? LESS : GREATER);
147 uint32_t x_scaled = x_value;
149 if (x_value < 0 || y_value < 0) {
151 if (x_value >= 0) return Smi::FromInt(GREATER);
152 x_scaled = -x_value;
  /external/autotest/client/cros/input_playback/
stylus.py 45 def replace_with_prefix(self, in_file, out_file, prefix, x_value, y_value):
54 @param x_value: the target value of X.
64 line = line.replace(prefix + '_X', str(x_value))
65 x_value += 1
  /art/test/004-checker-UnsafeTest18/src/
Main.java 42 public int x_value; field in class:Main
310 m.x_value = -1;
322 int local_x = m.x_value;
330 m.x_value = many_times;
  /external/libavc/encoder/
irc_rd_model.c 368 float x_value = 1.0, f_qp; local
373 x_value = (float)u4_target_res_bits
377 if(0 != x_value)
378 f_qp = u4_estimated_sad / x_value;
  /external/tensorflow/tensorflow/compiler/xla/tests/
matrix_ops_simple_test.cc 46 auto x_value = local
47 builder.Parameter(0, ShapeUtil::MakeShape(F32, {}), "x_value");
50 builder.Add(x_value, y_value);
100 auto x_value = local
101 builder.Parameter(0, ShapeUtil::MakeShape(F32, {}), "x_value");
103 builder.Add(x_value, half);
vector_ops_simple_test.cc 356 auto x_value = local
357 builder.Parameter(0, ShapeUtil::MakeShape(F32, {}), "x_value");
359 builder.Add(x_value, half);
local_client_execute_test.cc 75 auto x_value = LiteralToShapedBuffer(*Literal::CreateR0<float>(42.0f)); local
77 ExecuteLocallyOrDie(builder.Build().ValueOrDie(), {x_value.get()});
    [all...]
  /external/tensorflow/tensorflow/python/ops/
gradients_test.py 459 def _GetFuncGradients(self, f, x_value, b_value):
460 x = constant_op.constant(x_value, name="x")
561 x_value = rng.randn(m, 1).astype("float32")
568 x = constant_op.constant(x_value)
586 x_value = rng.randn(m).astype("float32")
590 x = constant_op.constant(x_value)
606 xs = [constant_op.constant(x_value) for x_value in x_values]
630 x_value = rng.randn(m, m).astype("float32")
632 x = constant_op.constant(x_value)
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
graphviz_example.cc 47 auto x_value = builder.AddInstruction(HloInstruction::CreateParameter( local
48 0, ShapeUtil::MakeShape(F32, {}), "x_value"));
52 half->shape(), HloOpcode::kAdd, x_value, half));
  /external/tensorflow/tensorflow/core/kernels/
betainc_op.cc 96 auto x_value = x.shaped<T, NDIM>(x_shaper.x_reshape()); \
99 BCast::ToIndexArray<NDIM>(b_shaper.x_bcast()), x_value, \
quantized_add_op.cc 226 const int64 x_value = static_cast<int64>(x_data[i]); local
227 int64 x_in_output_range_64 = x_0_int64 + (x_value * x_mult_int32);
271 const int64 x_value = static_cast<int64>(x_data[i]); local
272 int64 x_in_output_range_64 = x_0_int64 + (x_value * x_mult_int32);
  /external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
gru_ops_test.py 74 x_value = np.random.rand(batch_size, input_size)
81 basic_res = sess.run([output], {x: x_value, h: h_value})
87 block_res = sess.run([output], {x: x_value, h: h_value})
167 x_value = np.random.rand(batch_size, input_size)
188 ], {x: x_value,
209 ], {x: x_value,
  /external/tensorflow/tensorflow/python/kernel_tests/distributions/
util_test.py 536 for x_value in (np.ones(
542 self._np_rotate_transpose(x_value, shift_value),
544 feed_dict={x: x_value,
    [all...]

Completed in 1370 milliseconds