| 126 | } |
| 127 | |
| 128 | Status Upsample::AddToQueue(CLCommandQueue* queue) { |
| 129 | RETURN_IF_ERROR(BindArguments()); |
| 130 | return queue->DispatchImplicit(kernel_, GetGridSize(), work_group_size_); |
| 131 | } |
| 132 | |
| 133 | Status Upsample::Tune(const TuningParameters& params) { |
| 134 | RETURN_IF_ERROR(BindArguments()); |
nothing calls this directly
no test coverage detected