| 29 | using tensorflow::string; |
| 30 | |
| 31 | void TFE_OpConsumeInput(TFE_Op* op, TFE_TensorHandle* h, TF_Status* status) { |
| 32 | op->operation.ConsumeInput(h->handle); |
| 33 | } |
| 34 | |
| 35 | TFE_Profiler* TFE_NewProfiler() { return new TFE_Profiler(); } |
| 36 |
nothing calls this directly
no test coverage detected