Searched defs:out_values (Results 1 - 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/contrib/libsvm/kernels/
H A Ddecode_libsvm_op.cc46 std::vector<T> out_values; variable
86 out_values.emplace_back(feature_value);
120 2, TensorShape({static_cast<int64>(out_values.size())}),
123 std::copy_n(out_values.begin(), out_values.size(), &values(0));
/external/tensorflow/tensorflow/contrib/lite/models/
H A Dspeech_test.cc85 string out_values; local
86 if (!std::getline(out_file, out_values, '\n')) {
90 *out << " output: \"" << out_values << "\"" << std::endl;
/external/tensorflow/tensorflow/core/kernels/
H A Dsdca_ops.cc304 auto out_values = out->matrix<int64>(); variable
310 out_values(i, 0) = TF_PREDICT_TRUE(fprint.low64 >= 2)
313 out_values(i, 1) = fprint.high64;
H A Dsparse_add_op.cc101 std::vector<T> out_values; variable
113 out_values.push_back(a_values(i));
120 out_values.push_back(s);
127 out_values.push_back(b_values(j));
136 out_values.push_back(A_OR_B##_values(IDX)); \
146 const int64 sum_nnz = out_values.size();
162 std::copy_n(out_values.begin(), sum_nnz, &out_values_flat(0));
H A Dsparse_reduce_op.cc180 Tensor *out_values; variable
182 ctx, ctx->allocate_output(0, reduction.reduced_shape, &out_values));
183 auto out_flat = out_values->flat<T>();
/external/tensorflow/tensorflow/python/client/
H A Dtf_session_helper.cc49 TF_Status* out_status, PyObjectVector* out_values,
142 out_values->push_back(output.release());
148 // in *out_values.
152 PyObjectVector* out_values, TF_Buffer* run_outputs) {
154 target_nodes, out_status, out_values, run_outputs);
176 // in *out_values.
179 TF_Status* out_status, PyObjectVector* out_values) {
181 NameVector(), out_status, out_values, nullptr);
45 TF_Run_wrapper_helper(TF_DeprecatedSession* session, const char* handle, const TF_Buffer* run_options, PyObject* feed_dict, const NameVector& output_names, const NameVector& target_nodes, TF_Status* out_status, PyObjectVector* out_values, TF_Buffer* run_outputs) argument
149 TF_Run_wrapper(TF_DeprecatedSession* session, const TF_Buffer* run_options, PyObject* feed_dict, const NameVector& output_names, const NameVector& target_nodes, TF_Status* out_status, PyObjectVector* out_values, TF_Buffer* run_outputs) argument
177 TF_PRun_wrapper(TF_DeprecatedSession* session, const char* handle, PyObject* feed_dict, const NameVector& output_names, TF_Status* out_status, PyObjectVector* out_values) argument

Completed in 285 milliseconds