| 119 | } |
| 120 | |
| 121 | TF_Operation* Placeholder(TF_Graph* graph, TF_Status* s, const char* name, |
| 122 | TF_DataType dtype, const std::vector<int64_t>& dims) { |
| 123 | TF_Operation* op; |
| 124 | PlaceholderHelper(graph, s, name, dtype, dims, &op); |
| 125 | return op; |
| 126 | } |
| 127 | |
| 128 | void ConstHelper(TF_Tensor* t, TF_Graph* graph, TF_Status* s, const char* name, |
| 129 | TF_Operation** op) { |
no test coverage detected