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

  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_tensor.cc 42 std::vector<double> values_vec; local
44 GetValueVec<float, double>(&values_vec);
46 GetValueVec<double, double>(&values_vec);
48 BuildOutput<double>(0, 0, values_vec, &tfprof_tensor_pb_);
54 std::vector<int64> values_vec; local
56 GetValueVec<int32, int64>(&values_vec);
58 GetValueVec<int64, int64>(&values_vec);
60 BuildOutput<int64>(0, 0, values_vec, &tfprof_tensor_pb_);
65 std::vector<string> values_vec; local
66 GetValueVec<string, string>(&values_vec);
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
reader_ops.cc 120 std::vector<string> values_vec; variable
121 values_vec.reserve(num_records);
124 reader->ReadUpTo(num_records, queue, &keys_vec, &values_vec, context);
129 OP_REQUIRES(context, num_actually_read == values_vec.size(),
130 errors::InvalidArgument("num_actually_read != len(values_vec"));
146 values_t(i) = std::move(values_vec[i]);

Completed in 68 milliseconds