-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a standalone test for NVTX ranges
- Loading branch information
1 parent
892f5be
commit f3bb6bd
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// The purpose of this test is to verify that CUB can use NVTX without any additional dependencies. It is built as part | ||
// of the unit tests, but can also be built standalone: | ||
|
||
// Compile (from current directory): | ||
// nvcc test_nvtx_standalone.cu -I../../cub -I../../thrust -I../../libcudacxx/include -o nvtx_standalone | ||
// Profile & view: | ||
// (nsys profile -o nvtx_standalone.nsys-rep -f true ./nvtx_standalone || true) && nsys-ui nvtx_standalone.nsys-rep | ||
|
||
#include <cub/device/device_for.cuh> | ||
|
||
#include <thrust/iterator/counting_iterator.h> | ||
|
||
struct Op | ||
{ | ||
_CCCL_HOST_DEVICE void operator()(int i) const | ||
{ | ||
printf("%d\n", i); | ||
} | ||
}; | ||
|
||
int main() | ||
{ | ||
CUB_DETAIL_NVTX_RANGE_SCOPE("main"); | ||
|
||
thrust::counting_iterator<int> it{0}; | ||
cub::DeviceFor::ForEach(it, it + 16, Op{}); | ||
cudaDeviceSynchronize(); | ||
} |