Skip to content

Commit

Permalink
make the empty parens after level constructors optional (NVIDIA#2750)
Browse files Browse the repository at this point in the history
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
ericniebler and pciolkosz authored Nov 8, 2024
1 parent 1708cb3 commit 9616009
Show file tree
Hide file tree
Showing 6 changed files with 177 additions and 166 deletions.
Loading

0 comments on commit 9616009

Please sign in to comment.