Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make the empty parens after level constructors optional (NVIDIA#2750)
For example, what before needed to be written as: ```cpp cudax::make_hierarchy(cudax::block_dims<block_size>(), cudax::grid_dims<grid_size>()) ``` can now be written as: ```cpp cudax::make_hierarchy(cudax::block_dims<block_size>, cudax::grid_dims<grid_size>) ``` --------- Co-authored-by: pciolkosz <pciolkosz@nvidia.com>
- Loading branch information