Closed eqy closed 2 days ago
The grid dim calculations (among others) seem to make assumptions about the minimal number of SMs on a device e.g.,
grid.y = std::min(max_blocks_per_grid / blocks_per_slice, params.groups * params.n);
This assumption causes grid.y to be set to 0 on certain devices with low SM count (10) e.g., A16, A2. Disabling this test for now.
grid.y
0
CC @alpha0422 @crcrpar @ptrblck
The grid dim calculations (among others) seem to make assumptions about the minimal number of SMs on a device e.g.,
This assumption causes
grid.y
to be set to0
on certain devices with low SM count (10) e.g., A16, A2. Disabling this test for now.CC @alpha0422 @crcrpar @ptrblck