| 143 | } |
| 144 | |
| 145 | uint64 DivideCeil(uint64 x, uint64 y) { |
| 146 | return port::MathUtil::CeilOfRatio(x, y); |
| 147 | } |
| 148 | |
| 149 | void CalculateDimensionality(const DeviceDescription &device_description, |
| 150 | int64 element_count, int64 *threads_per_block, |
nothing calls this directly
no test coverage detected