Skip to content

Commit

Permalink
Fixes #493: launch_config_builder_t::overall_size() now takes a `gr…
Browse files Browse the repository at this point in the history
…id::overall_dimension_t` rather than a `grid::dimension_t`
  • Loading branch information
eyalroz committed Apr 16, 2023
1 parent 305b293 commit cbe4570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cuda/api/launch_config_builder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ class launch_config_builder_t {
return overall_dimensions(grid::overall_dimensions_t{x, y, z});
}

launch_config_builder_t& overall_size(grid::dimension_t size) { return overall_dimensions(size, 1, 1); }
launch_config_builder_t& overall_size(grid::overall_dimension_t size) { return overall_dimensions(size, 1, 1); }

launch_config_builder_t& block_cooperation(bool cooperation)
{
Expand Down

0 comments on commit cbe4570

Please sign in to comment.