| 42 | class FalseGPUOperator : public Operator<GPUBackend> { |
| 43 | public: |
| 44 | explicit FalseGPUOperator(const OpSpec &spec) |
| 45 | : Operator<GPUBackend>(spec), |
| 46 | cpu_impl_(spec), |
| 47 | thread_pool_(num_threads_, spec.GetArgument<int>("device_id"), true, |
| 48 | "FalseGPUOperator " + spec.SchemaName()) { |
| 49 | cpu_ws_.SetThreadPool(&thread_pool_); |
| 50 | } |
| 51 | ~FalseGPUOperator() override = default; |
| 52 | |
| 53 | protected: |
nothing calls this directly
no test coverage detected