├── .gitignore ├── .gitmodules ├── ApiTracker ├── ApiTracker.cpp └── Makefile ├── DeviceMalloc ├── DeviceMalloc.cpp ├── DeviceMalloc.h ├── DeviceMallocPatches.cu └── Makefile ├── Initcheck ├── Makefile └── memset_error.cu ├── LICENSE ├── Memcheck ├── Makefile └── memcheck_demo.cu ├── MemoryTracker ├── Makefile ├── MemoryTracker.cpp ├── MemoryTracker.h └── MemoryTrackerPatches.cu ├── NvtxMemoryPool ├── Makefile ├── NvtxMemoryPool.cu ├── NvtxMemoryPool.h └── README.md ├── NvtxNaming ├── Makefile ├── NvtxNaming.cu ├── NvtxNaming.h └── README.md ├── NvtxPermissions ├── Makefile ├── NvtxPermissions.cu ├── NvtxPermissions.h └── README.md ├── README.md ├── Racecheck ├── Makefile ├── block_error.cu └── warp_error.cu ├── Suppressions ├── Makefile ├── suppressions_demo.cu └── suppressions_initcheck_demo.cu └── Synccheck ├── Makefile ├── divergent_threads.cu └── illegal_syncwarp.cu /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/.gitmodules -------------------------------------------------------------------------------- /ApiTracker/ApiTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/ApiTracker/ApiTracker.cpp -------------------------------------------------------------------------------- /ApiTracker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/ApiTracker/Makefile -------------------------------------------------------------------------------- /DeviceMalloc/DeviceMalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/DeviceMalloc/DeviceMalloc.cpp -------------------------------------------------------------------------------- /DeviceMalloc/DeviceMalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/DeviceMalloc/DeviceMalloc.h -------------------------------------------------------------------------------- /DeviceMalloc/DeviceMallocPatches.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/DeviceMalloc/DeviceMallocPatches.cu -------------------------------------------------------------------------------- /DeviceMalloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/DeviceMalloc/Makefile -------------------------------------------------------------------------------- /Initcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Initcheck/Makefile -------------------------------------------------------------------------------- /Initcheck/memset_error.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Initcheck/memset_error.cu -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /Memcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Memcheck/Makefile -------------------------------------------------------------------------------- /Memcheck/memcheck_demo.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Memcheck/memcheck_demo.cu -------------------------------------------------------------------------------- /MemoryTracker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/MemoryTracker/Makefile -------------------------------------------------------------------------------- /MemoryTracker/MemoryTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/MemoryTracker/MemoryTracker.cpp -------------------------------------------------------------------------------- /MemoryTracker/MemoryTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/MemoryTracker/MemoryTracker.h -------------------------------------------------------------------------------- /MemoryTracker/MemoryTrackerPatches.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/MemoryTracker/MemoryTrackerPatches.cu -------------------------------------------------------------------------------- /NvtxMemoryPool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/NvtxMemoryPool/Makefile -------------------------------------------------------------------------------- /NvtxMemoryPool/NvtxMemoryPool.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/NvtxMemoryPool/NvtxMemoryPool.cu -------------------------------------------------------------------------------- /NvtxMemoryPool/NvtxMemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/NvtxMemoryPool/NvtxMemoryPool.h -------------------------------------------------------------------------------- /NvtxMemoryPool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/NvtxMemoryPool/README.md -------------------------------------------------------------------------------- /NvtxNaming/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/NvtxNaming/Makefile -------------------------------------------------------------------------------- /NvtxNaming/NvtxNaming.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/NvtxNaming/NvtxNaming.cu -------------------------------------------------------------------------------- /NvtxNaming/NvtxNaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/NvtxNaming/NvtxNaming.h -------------------------------------------------------------------------------- /NvtxNaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/NvtxNaming/README.md -------------------------------------------------------------------------------- /NvtxPermissions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/NvtxPermissions/Makefile -------------------------------------------------------------------------------- /NvtxPermissions/NvtxPermissions.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/NvtxPermissions/NvtxPermissions.cu -------------------------------------------------------------------------------- /NvtxPermissions/NvtxPermissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/NvtxPermissions/NvtxPermissions.h -------------------------------------------------------------------------------- /NvtxPermissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/NvtxPermissions/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/README.md -------------------------------------------------------------------------------- /Racecheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Racecheck/Makefile -------------------------------------------------------------------------------- /Racecheck/block_error.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Racecheck/block_error.cu -------------------------------------------------------------------------------- /Racecheck/warp_error.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Racecheck/warp_error.cu -------------------------------------------------------------------------------- /Suppressions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Suppressions/Makefile -------------------------------------------------------------------------------- /Suppressions/suppressions_demo.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Suppressions/suppressions_demo.cu -------------------------------------------------------------------------------- /Suppressions/suppressions_initcheck_demo.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Suppressions/suppressions_initcheck_demo.cu -------------------------------------------------------------------------------- /Synccheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Synccheck/Makefile -------------------------------------------------------------------------------- /Synccheck/divergent_threads.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Synccheck/divergent_threads.cu -------------------------------------------------------------------------------- /Synccheck/illegal_syncwarp.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/compute-sanitizer-samples/HEAD/Synccheck/illegal_syncwarp.cu --------------------------------------------------------------------------------