Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
harrism committed Nov 26, 2024
1 parent 5e51e66 commit 6a1c8e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/cuproj/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,6 @@ auto d_proj = proj->get_device_projection(cuproj::direction::FORWARD)
std::size_t block_size = 256;
std::size_t grid_size = (d_in.size() + block_size - 1) / block_size;
example_kernel<<<grid_size, block_size>>>(
d_proj, d_in.data().get(), d_out.data().get(), d_in.size());
d_proj, d_in.data().get(), d_out.data().get(), d_in.size());
cudaDeviceSynchronize();
```

0 comments on commit 6a1c8e1

Please sign in to comment.