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

  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_tensor_test.cc 62 {"tensor_value"}, // show the tensor value.
68 EXPECT_GT(root.children(0).tensor_value().value_double_size(), 10);
70 EXPECT_GT(root.children(1).tensor_value().value_double_size(), 10);
72 EXPECT_EQ(root.children(2).tensor_value().value_double_size(), 1);
  /external/tensorflow/tensorflow/core/debug/
debug_gateway.h 53 // tensor_value: Reference to the tensor value
56 const Tensor& tensor_value, const bool is_ref)>
debug_gateway_test.cc 131 const Tensor& tensor_value, const bool is_ref) {
133 tensors_initialized.push_back(tensor_value.IsInitialized());
134 tensor_vals.insert(std::make_pair(node_name, tensor_value));
282 const Tensor& tensor_value, const bool is_ref) {
285 watched_tensor_vals.push_back(tensor_value);
288 debug_identity_tensor_vals.push_back(tensor_value);
290 debug_nan_count_tensor_vals.push_back(tensor_value);
395 const Tensor& tensor_value, const bool is_ref) {
399 debug_identity_tensor_vals["a"] = tensor_value;
404 debug_identity_tensor_vals["x"] = tensor_value;
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
tensor_array_ops.cc 393 const Tensor* tensor_value; variable
395 OP_REQUIRES_OK(ctx, ctx->input("value", &tensor_value));
407 ctx, tensor_value->dtype() == tensor_array->ElemType(),
411 DataTypeString(tensor_value->dtype()), "."));
412 PersistentTensor persistent_tensor(*tensor_value); variable
1010 const Tensor* tensor_value; variable
1207 const Tensor* tensor_value; variable
    [all...]
quantized_add_op.cc 375 const int64 tensor_value = static_cast<int64>(tensor_data[i]); local
377 tensor_0_int64 + (tensor_value * tensor_mult_int32);
435 const int64 tensor_value = static_cast<int64>(tensor_data[i]); local
437 tensor_0_int64 + (tensor_value * tensor_mult_int32);
  /external/tensorflow/tensorflow/python/framework/
constant_op.py 211 tensor_value = attr_value_pb2.AttrValue()
212 tensor_value.tensor.CopyFrom(
215 dtype_value = attr_value_pb2.AttrValue(type=tensor_value.tensor.dtype)
218 attrs={"value": tensor_value,
  /external/tensorflow/tensorflow/contrib/lite/python/
op_hint.py 121 tensor_value = _ops.convert_to_tensor(value)
123 tensor_value.op.node_def.attr["value"].tensor)
  /external/tensorflow/tensorflow/python/debug/cli/
stepper_cli.py 518 tensor_value = self._node_stepper.get_tensor_value(tensor_name)
523 tensor_value,
560 tensor_value = eval(parsed.tensor_value_str) # pylint: disable=eval-used
563 self._node_stepper.override_tensor(tensor_name, tensor_value)
570 tensor_value,
  /external/tensorflow/tensorflow/python/debug/lib/
grpc_debug_test_server.py 154 tensor_value = debug_data.load_tensor_from_event(event)
156 tensor_value)
debug_data.py 129 tensor_value = InconvertibleTensorProto(tensor_proto)
132 tensor_value = tensor_util.MakeNdarray(tensor_proto)
134 tensor_value = InconvertibleTensorProto(tensor_proto)
137 tensor_value = InconvertibleTensorProto(tensor_proto, False)
139 return tensor_value
    [all...]
  /external/tensorflow/tensorflow/python/tools/
optimize_for_inference_lib.py 190 tensor_value = tensor_util.MakeNdarray(input_tensor)
191 return tensor_value
  /external/tensorflow/tensorflow/python/ops/
rnn_cell_impl.py     [all...]
  /external/tensorflow/tensorflow/tools/quantization/
quantize_graph.py 244 tensor_value = tensor_util.MakeNdarray(input_tensor)
254 tensor_value_rounded = quantize_array(tensor_value, num_buckets)
    [all...]
  /external/tensorflow/tensorflow/core/grappler/optimizers/
constant_folding.cc 108 for (const T& tensor_value : *tensor_values) {
109 if (tensor_value != value) {
    [all...]

Completed in 468 milliseconds