Searched refs:TF_OutputList (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/c/eager/ |
D | c_api_unified_experimental.h | 100 typedef struct TF_OutputList TF_OutputList; typedef 101 TF_OutputList* TF_NewOutputList(); 102 void TF_DeleteOutputList(TF_OutputList* o); 104 void TF_OutputListSetNumOutputs(TF_OutputList* o, int num_outputs, TF_Status*); 106 int TF_OutputListNumOutputs(TF_OutputList* o); 108 TF_AbstractTensor* TF_OutputListGet(TF_OutputList* o, int i); 110 void TF_OutputListPushBack(TF_OutputList* o, TF_AbstractTensor* tensor, 118 TF_AbstractTensor* const* inputs, TF_OutputList* o, 127 TF_OutputList*, TF_Status*);
|
D | c_api_unified_experimental.cc | 122 TF_OutputList* outputs, TF_Status* s) { in TF_FinalizeFunction() 175 TF_OutputList* TF_NewOutputList() { return wrap(new OutputList); } in TF_NewOutputList() 176 void TF_DeleteOutputList(TF_OutputList* o) { delete unwrap(o); } in TF_DeleteOutputList() 177 void TF_OutputListSetNumOutputs(TF_OutputList* o, int num_outputs, in TF_OutputListSetNumOutputs() 183 int TF_OutputListNumOutputs(TF_OutputList* o) { in TF_OutputListNumOutputs() 186 TF_AbstractTensor* TF_OutputListGet(TF_OutputList* o, int i) { in TF_OutputListGet() 189 void TF_OutputListPushBack(TF_OutputList* o, TF_AbstractTensor* tensor, in TF_OutputListPushBack() 221 TF_AbstractTensor* const* inputs, TF_OutputList* o, in TF_ExecuteOperation()
|
D | c_api_unified_experimental_test.cc | 78 TF_OutputList* o = TF_NewOutputList(); in TEST_P() 143 TF_OutputList* o = TF_NewOutputList(); in TEST_P() 224 TF_OutputList* o = TF_NewOutputList(); in TEST_P() 310 TF_OutputList* o = TF_NewOutputList(); in TEST_P() 374 TF_OutputList* add_outputs = TF_NewOutputList(); in TEST_P() 465 TF_OutputList* mm_outputs = TF_NewOutputList(); in TEST_P() 571 TF_OutputList* add_outputs = TF_NewOutputList(); in TEST_P() 593 TF_OutputList* add_outputs = TF_NewOutputList(); in TEST_P() 613 TF_OutputList* func_outputs = TF_NewOutputList(); in TEST_P() 670 TF_OutputList* func_outputs = TF_NewOutputList(); in TEST_P() [all …]
|
D | c_api_unified_experimental_internal.h | 134 DEFINE_CONVERSION_FUNCTIONS(OutputList, TF_OutputList)
|