Home
last modified time | relevance | path

Searched refs:FunctionCallFrame (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/data/
Dsingle_threaded_executor_test.cc150 FunctionCallFrame call_frame({DT_FLOAT, DT_FLOAT}, {DT_FLOAT}); in TEST_F()
177 FunctionCallFrame call_frame({DT_FLOAT}, {DT_FLOAT}); in TEST_F()
226 FunctionCallFrame call_frame({DT_FLOAT}, {DT_FLOAT}); in TEST_F()
243 FunctionCallFrame call_frame({}, {}); in TEST_F()
Ddataset_test_base.cc455 FunctionCallFrame frame(arg_types, ret_types); in RunFunction()
/external/tensorflow/tensorflow/core/framework/
Dfunction.h286 class FunctionCallFrame : public CallFrameInterface {
288 FunctionCallFrame(DataTypeSlice arg_types, DataTypeSlice ret_types);
289 ~FunctionCallFrame() override;
316 TF_DISALLOW_COPY_AND_ASSIGN(FunctionCallFrame);
Dfunction.cc1063 FunctionCallFrame::FunctionCallFrame(DataTypeSlice arg_types, in FunctionCallFrame() function in tensorflow::FunctionCallFrame
1071 FunctionCallFrame::~FunctionCallFrame() {} in ~FunctionCallFrame()
1073 Status FunctionCallFrame::SetArgs(gtl::ArraySlice<Tensor> args) { in SetArgs()
1091 Status FunctionCallFrame::GetRetvals(std::vector<Tensor>* rets) const { in GetRetvals()
1105 Status FunctionCallFrame::ConsumeRetvals(std::vector<Tensor>* rets, in ConsumeRetvals()
1121 Status FunctionCallFrame::GetArg(int index, Tensor* val) const { in GetArg()
1130 Status FunctionCallFrame::SetRetval(int index, const Tensor& val) { in SetRetval()
Dfunction_test.cc910 TEST(FunctionCallFrame, Void_Void) { in TEST() argument
911 FunctionCallFrame frame({}, {}); in TEST()
923 TEST(FunctionCallFrame, Float_Float_Float) { in TEST() argument
924 FunctionCallFrame frame({DT_FLOAT, DT_FLOAT}, {DT_FLOAT}); in TEST()
/external/tensorflow/tensorflow/core/common_runtime/
Dfunction.cc1037 FunctionCallFrame* frame = in RunRemote()
1038 new FunctionCallFrame(fbody->arg_types, fbody->ret_types); in RunRemote()
1154 FunctionCallFrame* frame = in Run()
1155 new FunctionCallFrame(fbody->arg_types, fbody->ret_types); in Run()
Dfunction_test.cc112 FunctionCallFrame frame(arg_types_, ret_types_); in Run()
306 FunctionCallFrame frame(fbody->arg_types, fbody->ret_types); in InstantiateAndRunViaCallFrameInterface()
Ddirect_session.cc852 FunctionCallFrame call_frame(executors_and_keys->input_types, in Run()