| 236 | } |
| 237 | |
| 238 | int3 ConvBuffer::GetGridSize() const { |
| 239 | const int grid_x = IntegralDivideRoundUp(dst_[0]->Width(), x_elements_); |
| 240 | const int grid_y = IntegralDivideRoundUp(dst_[0]->Height(), y_elements_); |
| 241 | const int grid_z = dst_[0]->Depth(); |
| 242 | return int3(grid_x, grid_y, grid_z); |
| 243 | } |
| 244 | |
| 245 | Status ConvBuffer::Tune(const TuningParameters& params) { |
| 246 | RETURN_IF_ERROR(BindArguments()); |
nothing calls this directly
no test coverage detected