Home
last modified time | relevance | path

Searched refs:SetTensor (Results 1 – 13 of 13) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/eager/
Dcopy_to_device_node.h65 return dst_->SetTensor(std::move(tensor), dstd_); in Run()
Dtensor_handle_data.h58 Status SetTensor(tensorflow::Tensor&& t);
Dtensor_handle_data.cc84 Status LocalTensorHandleData::SetTensor(tensorflow::Tensor&& t) { in SetTensor() function in tensorflow::LocalTensorHandleData
Dtensor_handle.h218 Status SetTensor(tensorflow::Tensor&& tensor, const Device* d);
Dtensor_handle.cc927 Status TensorHandle::SetTensor(tensorflow::Tensor&& t, const Device* d) { in SetTensor() function in tensorflow::TensorHandle
938 return data.SetTensor(std::move(t)); in SetTensor()
948 return mirror.SetTensor(std::move(t)); in SetTensor()
Dexecute.cc1028 TF_RETURN_IF_ERROR(retvals[i]->SetTensor( in GetKernelOutputs()
/external/tensorflow/tensorflow/lite/python/optimize/
Dcalibration_wrapper.h94 PyObject* SetTensor(int index, PyObject* value);
Dcalibration_wrapper.cc227 if (!SetTensor(input_tensor_idx, input)) { in FeedTensor()
236 PyObject* CalibrationWrapper::SetTensor(int index, PyObject* value) { in SetTensor() function in tflite::calibration_wrapper::CalibrationWrapper
/external/tensorflow/tensorflow/lite/python/interpreter_wrapper/
Dinterpreter_wrapper.h88 PyObject* SetTensor(int i, PyObject* value);
Dinterpreter_wrapper_pybind11.cc138 return tensorflow::PyoOrThrow(self.SetTensor(i, value.ptr())); in PYBIND11_MODULE()
Dinterpreter_wrapper.cc417 PyObject* InterpreterWrapper::SetTensor(int i, PyObject* value) { in SetTensor() function in tflite::interpreter_wrapper::InterpreterWrapper
607 return SetTensor(input->second, value); in SetInputTensorFromSignatureDefName()
/external/tensorflow/tensorflow/lite/python/
Dinterpreter.py499 self._interpreter.SetTensor(tensor_index, value)
/external/tensorflow/tensorflow/core/distributed_runtime/eager/
Dremote_copy_node.cc302 captured_state_->dst()->SetTensor(std::move(outputs[0]), recv_device); in StartRecv()