Closed rdspring1 closed 2 days ago
This PR fixes the setting of gdimx in 2d and 3d inner reduction heuristics.
gdimx
Previously, gdimx == LaunchParams::UNINITIALIZED_VAL in the else block, so the gdimx > scheduler_utils::x_grid_limit if statement was always false and gdimx was not set.
gdimx == LaunchParams::UNINITIALIZED_VAL
gdimx > scheduler_utils::x_grid_limit
!test
This PR fixes the setting of
gdimx
in 2d and 3d inner reduction heuristics.Previously,
gdimx == LaunchParams::UNINITIALIZED_VAL
in the else block, so thegdimx > scheduler_utils::x_grid_limit
if statement was always false andgdimx
was not set.