| 92 | } // namespace |
| 93 | |
| 94 | GraphRunner::GraphRunner(Env* env) |
| 95 | : device_deleter_(NewSingleThreadedCpuDevice(env)), |
| 96 | device_(device_deleter_.get()) {} |
| 97 | GraphRunner::GraphRunner(Device* device) : device_(device) {} |
| 98 | |
| 99 | GraphRunner::~GraphRunner() {} |
nothing calls this directly
no test coverage detected