Compute Sanitizer
Compute Sanitizer
Compute Sanitizer
TABLE OF CONTENTS
www.nvidia.com
Compute Sanitizer v2022.2.0 | ii
7.5. Error Actions............................................................................................. 27
7.6. Escape Sequences....................................................................................... 29
7.7. Specifying Filters........................................................................................ 29
7.8. Coredump support.......................................................................................30
7.9. OptiX support............................................................................................ 30
Chapter 8. Operating System Specific Behavior......................................................... 32
8.1. Windows Specific Behavior............................................................................ 32
8.2. Using the Compute Sanitizer on Jetson and Tegra devices.......................................32
Chapter 9. CUDA Fortran Support...........................................................................33
9.1. CUDA Fortran Specific Behavior...................................................................... 33
Chapter 10. Compute Sanitizer Tool Examples...........................................................34
10.1. Example Use of Memcheck........................................................................... 34
10.1.1. memcheck_demo Output........................................................................ 34
10.1.2. memcheck_demo Output with Memcheck (Release Build)................................. 34
10.1.3. memcheck_demo Output with Memcheck (Debug Build)...................................37
10.1.4. Leak Checking in Compute Sanitizer.......................................................... 39
10.2. Example Use of Racecheck...........................................................................39
10.2.1. Block-level Hazards.............................................................................. 40
10.2.2. Warp-level Hazards...............................................................................41
10.3. Example Use of Initcheck............................................................................ 42
10.3.1. Memset Error...................................................................................... 43
10.4. Example Use of Synccheck........................................................................... 44
10.4.1. Divergent Threads................................................................................ 45
10.4.2. Illegal Syncwarp.................................................................................. 46
www.nvidia.com
Compute Sanitizer v2022.2.0 | iii
LIST OF TABLES
www.nvidia.com
Compute Sanitizer v2022.2.0 | iv
Chapter 1.
INTRODUCTION
www.nvidia.com
Compute Sanitizer v2022.2.0 | 1
Introduction
‣ Memcheck – The memory access error and leak detection tool. See Memcheck Tool
‣ Racecheck – The shared memory data access hazard detection tool. See Racecheck
Tool
‣ Initcheck – The uninitialized device global memory access detection tool. See
Initcheck Tool
‣ Synccheck – The thread synchronization hazard detection tool. See Synccheck Tool
www.nvidia.com
Compute Sanitizer v2022.2.0 | 2
Chapter 2.
COMPUTE SANITIZER
For a full list of options that can be specified to compute-sanitizer and their default
values, see Command Line Options
www.nvidia.com
Compute Sanitizer v2022.2.0 | 3
Compute Sanitizer
www.nvidia.com
Compute Sanitizer v2022.2.0 | 4
Compute Sanitizer
www.nvidia.com
Compute Sanitizer v2022.2.0 | 5
Compute Sanitizer
www.nvidia.com
Compute Sanitizer v2022.2.0 | 6
Compute Sanitizer
www.nvidia.com
Compute Sanitizer v2022.2.0 | 7
Compute Sanitizer
www.nvidia.com
Compute Sanitizer v2022.2.0 | 8
Compute Sanitizer
2.2. Compilation Options
The Compute Sanitizer tools do not need any special compilation flags to function.
The output displayed by the Compute Sanitizer tools is more useful with some extra
compiler flags. The -G option to nvcc forces the compiler to generate debug information
for the CUDA application. To generate line number information for applications without
affecting the optimization level of the output, the -lineinfo nvcc option can be used.
The Compute Sanitizer tools fully support both of these options and can display source
attribution of errors for applications compiled with line information.
The stack backtrace feature of the Compute Sanitizer tools is more useful when the
application contains function symbol names. For the host backtrace, this varies based on
the host OS. On Linux, the host compiler must be given the -rdynamic option to retain
function symbols. On Windows, the application must be compiled for debugging, i.e.
the /Zi option. When using nvcc, flags to the host compiler can be specified using the -
Xcompiler option. For the device backtrace, the full frame information is only available
when the application is compiled with device debug information. The compiler can skip
generation of frame information when building with optimizations.
Sample command line to build with function symbols and device side line information
on Linux:
www.nvidia.com
Compute Sanitizer v2022.2.0 | 9
Chapter 3.
MEMCHECK TOOL
3.1. What is Memcheck?
The memcheck tool is a run time error detection tool for CUDA applications. The tool
can precisely detect and report out of bounds and misaligned memory accesses to
global, local and shared memory in CUDA applications. It can also detect and report
hardware reported error information. In addition, the memcheck tool can detect and
report memory leaks in the user application.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 10
Memcheck Tool
The memcheck tool reports two classes of errors precise and imprecise.
Precise errors in memcheck are those that the tool can uniquely identify and gather all
information for. For these errors, memcheck can report the block and thread coordinates
of the thread causing the failure, the program counter (PC) of the instruction performing
the access, as well as the address being accessed and its size and type. If the CUDA
application contains line number information (by either being compiled with device side
debugging information, or with line information), then the tool will also print the source
file and line number of the erroneous access.
Imprecise errors are errors reported by the hardware error reporting mechanism that
could not be precisely attributed to a particular thread. The precision of the error varies
based on the type of the error and in many cases, memcheck may not be able to attribute
the cause of the error back to the source file and line.
3.3. Using Memcheck
The memcheck tool is enabled by default when running the Compute Sanitizer
application. It can also be explicitly enabled by using the --tool memcheck option.
When run in this way, the memcheck tool will look for precise, imprecise, malloc/free
and CUDA API errors. The reporting of device leaks must be explicitly enabled. Errors
identified by the memcheck tool are displayed on the screen after the application has
completed execution. See Understanding Memcheck Errors for more information about
how to interpret the messages printed by the tool.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 11
Memcheck Tool
The first line shows the memory segment, type and size being accessed. The
memory segment is one of:
‣ __global__ : for device global memory
‣ __shared__ : for per block shared memory
‣ __local__ : for per thread local memory
In this case, the access was to device global memory. The next field contains
information about the type of access, whether it was a read or a write. In this case,
the access is a write. Finally, the last item is the size of the access in bytes. In this
example, the access was 4 bytes in size.
at 0x160 in memcheck_demo.cu:6:unaligned_kernel(void)
The second line contains the PC of the instruction, the source file and line number (if
available) and the CUDA kernel name. In this example, the instruction causing the
access was at PC 0x160 inside the unaligned_kernel CUDA kernel. Additionally,
since the application was compiled with line number information, this instruction
corresponds to line 6 in the memcheck_demo.cu source file.
by thread (0,0,0) in block (0,0,0)
The third line contains the thread indices and block indices of the thread on which
the error was hit. In this example, the thread doing the erroneous access belonged to
the first thread in the first block.
Address 0x7f6510c00001 is misaligned
The fourth line contains the memory address being accessed and the type of access
error. The type of access error can either be out of bounds access or misaligned
access. In this example, the access was to address 0x7f6510c00001 and the access
error was because this address was not aligned correctly.
2. Hardware exception: Imprecise errors are generated for errors that the hardware
reports to the memcheck tool. Hardware exceptions have a variety of formats and
messages. Typically, the first line will provide some information about the type of
error encountered.
3. Malloc/free error: Malloc/free errors refer to the errors in the invocation of device side
malloc()/free() in CUDA kernels. An example of a malloc/free error:
www.nvidia.com
Compute Sanitizer v2022.2.0 | 12
Memcheck Tool
The first line indicates that this is a malloc/free error, and contains the type of error.
This type can be:
‣ Double free – This indicates that the thread called free() on an allocation that
has already been freed.
‣ Invalid pointer to free – This indicates that free was called on a pointer that
was not returned by malloc().
‣ Heap corruption : This indicates generalized heap corruption, or cases where
the state of the heap was modified in a way that memcheck did not expect.
In this example, the error is due to calling free() on a pointer which had already
been freed.
at 0x79d8
The second line gives the PC on GPU where the error was reported. This PC is
usually inside of system code, and is not interesting to the user. The device frame
backtrace will contain the location in user code where the malloc()/free() call
was made.
by thread (0,0,0) in block (0,0,0)
The third line contains the thread and block indices of the thread that caused this
error. In this example, the thread has threadIdx = (0,0,0) and blockIdx = (0,0,0)
Address 0x400aff920
This line contains the value of the pointer passed to free() or returned by
malloc()
4. Leak errors: Errors are reported for allocations created using cudaMalloc and for
allocations on the device heap that were not freed when the CUDA context was
destroyed. An example of a cudaMalloc allocation leak report is the following:
The error message reports information about the size of the allocation that was
leaked as well as the address of the allocation on the device.
A device heap leak message will be explicitly identified as such:
5. CUDA API error: CUDA API errors are reported for CUDA API calls that return an
error value. An example of a CUDA API error:
========= Program hit invalid copy direction for memcpy (error 21) on CUDA
API call to cudaMemcpy.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 13
Memcheck Tool
The message contains the returned value of the CUDA API call, as well as the name
of the API function that was called.
Make sure to look at the device side backtrace to find the location in the application
where the malloc()/free() call was made.
3.7. Leak Checking
The memcheck tool can detect leaks of allocated memory.
Memory leaks are device side allocations that have not been freed by the time the
context is destroyed. The memcheck tool tracks device memory allocations created using
the CUDA driver or runtime APIs.
The --leak-check full option must be specified to enable leak checking.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 14
Memcheck Tool
3.8. Padding
The memcheck tool can automatically add padding to memory allocations in order to
improve out of bounds error detection for global memory.
By default, global memory buffers can be allocated back-to-back in the virtual address
space. When that happens, an overflow access into the first buffer will simply happen in
the second buffer and not be detected as out-of-bounds.
Using the --padding option will automatically extend the allocation size, effectively
creating a padding buffer after each allocation. This improves the out of bounds error
detection as accesses to the padding area will always be considered invalid. The example
below displays possible buffer addresses when using --padding 32. Every allocation is
followed by a 32 bytes padding buffer. Writing or reading this buffer will cause an out-
of-bounds access to be reported.
This option supports allocations created via the cudaMalloc APIs, cudaHostAlloc and
cudaMallocHost.
This option does not support allocations created via cudaHostRegister or the CUDA
virtual memory management APIs.
Be aware that using this option will result in an increased device memory pressure,
potentially causing additional CUDA out of memory errors.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 15
Memcheck Tool
www.nvidia.com
Compute Sanitizer v2022.2.0 | 16
Chapter 4.
RACECHECK TOOL
4.1. What is Racecheck?
The racecheck tool is a run time shared memory data access hazard detector. The primary
use of this tool is to help identify memory access race conditions in CUDA applications
that use shared memory.
In CUDA applications, storage declared with the __shared__ qualifier is placed on chip
shared memory. All threads in a thread block can access this per block shared memory.
Shared memory goes out of scope when the thread block completes execution. As
shared memory is on chip, it is frequently used for inter-thread communication and
as a temporary buffer to hold data being processed. As this data is being accessed by
multiple threads in parallel, incorrect program assumptions may result in data races.
Racecheck is a tool built to identify these hazards and help users write programs free of
shared memory races.
Currently, this tool only supports detecting accesses to on-chip shared memory.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 17
Racecheck Tool
4.3. Using Racecheck
The racecheck tool is enabled by running the Compute Sanitizer application with the --
tool racecheck option.
Once racecheck has identified a hazard, the user can make program modifications to
ensure this hazard is no longer present. In the case of Write-After-Write hazards, the
program should be modified so that multiple writes are not happening to the same
location. In the case of Read-After-Write and Write-After-Read hazards, the reading and
writing locations should be deterministically ordered. In CUDA kernels, this can be
achieved by inserting a __syncthreads() call between the two accesses. To avoid races
between threads within a single warp, __syncwarp() can be used.
The racecheck tool does not perform any memory access error checking. It is
recommended that users first run the memcheck tool to ensure the application is free
of errors.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 18
Racecheck Tool
The analysis record contains high-level information about the hazard that is conveyed to
the end user. Each line contains information about a unique location in the application
which is participating in the race.
The first word on the first line indicates the severity of this report. In this case, the
message is at the WARNING level of severity. For more information on the different
severity levels, see Racecheck Severity Levels. Analysis reports are composed of one or
more racecheck hazards, and the severity level of the report is that of the hazard with the
highest severity.
The first line additionally contains the type of access. The access can be either:
‣ Read
‣ Write
The next item on the line is the PC of the location where the access happened from. In
this case, the PC is 0xf0. If the application was compiled with line number information,
this line also contains the file name and line number of the access. Finally, the line
contains the name of the kernel issuing the access.
The next lines contain the location of the other PCs participating in the race condition.
In this case, there is only one other PC which is 0x280. Similarly to the first line, file
name and line number are printed if the application was compiled with line number
information. The name of the kernel issuing the access is then printed. Finally, the line
also contains the number of hazards detected for this specific race condition.
A given analysis report will always contain at least one line which is performing a
write access. A common strategy to eliminate races which contain only write accesses
is to ensure that the write access is performed by only one thread. In the case of races
with multiple readers and one writer, introducing explicit program ordering via a
__syncthreads() call can avoid the race condition. For races between threads within
the same warp, the __syncwarp() intrinsic can be used to avoid the hazard.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 19
Racecheck Tool
message for each byte on which a hazard was detected. Additionally, when enabled, the
host backtrace for the launch of the kernel will also be displayed.
A sample racecheck hazard is below:
The hazard records are dense and capture a lot of interesting information. In general
terms, the first line contains information about the hazard severity, type and address, as
well as information about the thread block where it occurred. The next 2 lines contain
detailed information about the two threads that were in contention. These two lines are
ordered chronologically, so the first entry is for the access that occurred earlier and the
second for the access that occurred later. The final line is printed for some hazard types
and captures the actual data that was being written.
Examining this line by line, we have :
ERROR: Potential WAW hazard detected at __shared__ 0x0 in block (0, 0, 0)
The first word on this line indicates the severity of this hazard. In this case, the message
is at the ERROR level of severity. For more information on the different severity levels,
see Racecheck Severity Levels.
The next piece of information here is the type of hazard. The racecheck tool detects three
types of hazards:
‣ WAW or Write-After-Write hazards
‣ WAR or Write-After-Read hazards
‣ RAW or Read-After-Write hazards
The type of hazard indicates the accesses types of the two threads that were in
contention. In this example, the hazard is of Write-After-Write type.
The next piece of information is the address in shared memory that was being accessed.
This is the offset in per block shared memory that was being accessed by both threads.
Since the racecheck tool is byte accurate, the message is only for the byte of memory at
given address. In this example, the byte being accessed is byte 0x0 in shared memory.
Finally, the first line contains the block index of the thread block to which the two racing
threads belong.
The second line contains information about the first thread to write to this location.
Write Thread (0, 0, 0) at 0x2f0 in raceWAW.cu:20:WAW(void)
The first item on this line indicates the type of access being performed by this thread
to the shared memory address. In this example, the thread was writing to the location.
The next component is the index of the thread block. In this case, the thread is at index
(0,0,0). Following this, we have the byte offset of the instruction which did the access in
the kernel. In this example, the offset is 0x2f0. This is followed by the source file and line
www.nvidia.com
Compute Sanitizer v2022.2.0 | 20
Racecheck Tool
number (if line number information is available). The final item on this line is the name
of the kernel that was being executed.
The third line contains similar information about the second thread that was causing this
hazard. This line has an identical format to the previous line.
The fourth line contains information about the data in the two accesses.
Current Value : 1, Incoming Value : 2
If the second thread in the hazard was performing a write access, i.e., the hazard is a
Write-After-Write (WAW) or a Write-After-Read (WAR), this line contains the value after
the access by the first thread as the Current Value and the value that will be written by the
second access as the Incoming Value. In this case, the first thread wrote the value 1 to the
shared memory location. The second thread is attempting to write the value 2.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 21
Racecheck Tool
The number of barriers tracked by the tool is based on the number of barriers present in
the source code as reported by compiler information. In some cases, the compiler may
undercount this number. Racecheck will report the following warning if more barriers
are used than expected:
========= Warning: Detected overflow of tracked cuda::barrier structures.
Results might be incorrect. Try using --num-cuda-barriers to fix the issue
www.nvidia.com
Compute Sanitizer v2022.2.0 | 22
Chapter 5.
INITCHECK TOOL
5.1. What is Initcheck?
The initcheck tool is a run time uninitialized device global memory access detector. This
tool can identify when device global memory is accessed without it being initialized via
device side writes, or via CUDA memcpy and memset API calls.
Currently, this tool only supports detecting accesses to device global memory.
5.2. Using Initcheck
The initcheck tool is enabled by running the Compute Sanitizer application with the --
tool initcheck option.
The initcheck tool does not perform any memory access error checking. It is
recommended that users first run the memcheck tool to ensure the application is free
of errors.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 23
Chapter 6.
SYNCCHECK TOOL
6.1. What is Synccheck?
The synccheck tool is a runtime tool that can identify whether a CUDA application
is correctly using synchronization primitives, specifically __syncthreads() and
__syncwarp() intrinsics and their Cooperative Groups API counterparts.
6.2. Using Synccheck
The synccheck tool is enabled by running the Compute Sanitizer application with the --
tool synccheck option.
The synccheck tool does not perform any memory access error checking. It is
recommended that users first run the memcheck tool to ensure the application is free
of errors.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 24
Synccheck Tool
Each report starts with "Barrier error detected." In most cases, this is followed by a
classification of the detected barrier error. In this message, a CUDA block with divergent
threads was found. The following error classes can be reported:
‣ Divergent thread(s) in block: Divergence between threads within a block was detected
for a barrier that does not support this on the current architecture. For example, this
occurs when __syncthreads() is used within conditional code but the conditional
does not evaluate equally across all threads in the block.
‣ Divergent thread(s) in warp: Divergence between threads within a single warp was
detected for a barrier that does not support this on the current architecture.
‣ Invalid arguments: A barrier instruction or primitive was used with invalid
arguments. This can occur for example if not all threads reaching a __syncwarp()
declare themselves in the mask parameter. However, synccheck will not detect cases
where not all the threads declared in the mask parameter reach the __syncwarp().
The next line states the PC of the location where the access happened. In this case, the
PC is 0xf0. If the application was compiled with line number information, this line
would also contain the file name and line number of the access, followed by the name of
the kernel issuing the access.
The third line contains information on the thread and block for which this violation was
detected. In this case, it is thread 37 in block 0.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 25
Chapter 7.
COMPUTE SANITIZER FEATURES
7.1. Nonblocking Mode
By default, the standalone Compute Sanitizer tool will launch kernels in nonblocking
mode. This allows the tool to support error reporting in applications running concurrent
kernels
To force kernels to execute serially, a user can use the --force-blocking-launches
yes option. One side effect is that when in blocking mode, only the first thread
to hit an error in a kernel will be reported. Also, using this option or --force-
synchronization-limit will disable CUDA reduced API serialization.
7.2. Stack Backtraces
Compute Sanitizer can generate backtraces when given --show-backtrace option.
Backtraces usually consist of two sections – a saved host backtrace that leads up to the
CUDA driver call site, and a device backtrace at the time of the error. Each backtrace
contains a list of frames showing the state of the stack at the time the backtrace was
created.
To get function names in the host backtraces, the user application must be built with
support for symbol information in the host application. For more information, see
Compilation Options
Backtraces are printed for most Compute Sanitizer tool outputs, and the information
generated varies depending on the type of output. The table below explains the kind of
host and device backtrace seen under different conditions.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 26
Compute Sanitizer Features
Note that for OptiX applications, the name of OptiX internal device functions will be
displayed as "NVIDIA Internal".
7.3. Name Demangling
The Compute Sanitizer suite supports displaying mangled and demangled names
for CUDA kernels and CUDA device functions. By default, tools display the fully
demangled name, which contains the name of the kernel as well as its prototype
information. In the simple demangle mode, the tools will only display the first part of
the name. If demangling is disabled, tools will display the complete mangled name of
the kernel.
7.4. Dynamic Parallelism
The Compute Sanitizer tool suite supports dynamic parallelism. The memcheck
tool supports precise error reporting of out of bounds and misaligned accesses on
global, local and shared memory accesses, as well as on global atomic instructions for
applications using dynamic parallelism. In addition, the imprecise hardware exception
reporting mechanism is also fully supported. Error detection on applications using
dynamic parallelism requires significantly more memory on the device; as a result, in
memory constrained environments, memcheck may fail to initialize with an internal out
of memory error.
For limitations, see the known limitations in the Release Notes section.
7.5. Error Actions
When encountering an error, Compute Sanitizer behavior depends on the type of error.
The default behavior of Compute Sanitizer is to continue execution on purely host side
errors. Hardware exceptions detected by the memcheck tool cause the CUDA context to
1
In some cases, there may be no device backtrace
www.nvidia.com
Compute Sanitizer v2022.2.0 | 27
Compute Sanitizer Features
be destroyed. Precise errors (such as memory access and malloc/free errors) detected by
the memcheck tool cause the kernel to be terminated. This terminates the kernel without
running any subsequent instructions and the application continues launching other
kernels in the CUDA context. The handling of memory access and malloc/free errors
detected by the memcheck tool can be changed using the --destroy-on-device-
error option.
The --destroy-on-device-error kernel option is not supported on Maxwell
GPUs.
For racecheck detected hazards, the hazard is reported, but execution is not affected.
For a full summary of error action, based on the type of the error see the table below. The
error action terminate kernel refers to the cases where the kernel is terminated early, and
no subsequent instructions are run. In such cases, the CUDA context is not destroyed
and other kernels continue execution and CUDA API calls can still be made.
When kernel execution is terminated early, the application may not have completed
its computations on data. Any subsequent kernels that depend on this data will have
undefined behavior.
The action terminate CUDA context refers to the cases where the CUDA context is
forcibly terminated. In such cases, all outstanding work for the context is terminated
and subsequent CUDA API calls will fail. The action continue application refers to cases
where the application execution is not impacted, and the kernel continues executing
instructions.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 28
Compute Sanitizer Features
7.6. Escape Sequences
The --save and --log-file options to Compute Sanitizer accept the following escape
sequences in the file name.
‣ %% : Replaced with a literal %.
‣ %p : Replaced with the PID of the Compute Sanitizer frontend application.
‣ %q{ENVVAR} : Replaced with the contents of the environment variable ENVVAR. If the
variable does not exist, this is replaced with an empty string.
‣ Any other character following the % causes an error.
7.7. Specifying Filters
Compute Sanitizer tools support filtering the choice of kernels which should be checked.
When a filter is specified, only kernels matching the filter will be checked. Filters are
specified using the --kernel-regex and --kernel-regex-exclude options. By
default, the Compute Sanitizer tools will check all kernels in the application.
The --kernel-regex and --kernel-regex-exclude options can be specified
multiple times. If a kernel satisfies any filter, it will be checked by the running the
Compute Sanitizer tool.
The --kernel-regex and --kernel-regex-exclude options take a filter specification
consisting of a list of comma separated key value pairs, specified as key=value. In order
for a filter to be matched, all components of the filter specification must be satisfied. If
a filter is incorrectly specified in any component, the entire filter is ignored. For a full
summary of valid key values, see the table below. If a key has multiple strings, any of the
strings can be used to specify that filter component.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 29
Compute Sanitizer Features
7.8. Coredump support
Starting from CUDA 11.6, the compute-sanitizer tool can generate a CUDA coredump
once an error is detected by using the --generate-coredump yes option. Once the
coredump is generated, the target application will abort.
The coredump file can be loaded in cuda-gdb using the following option:
(cuda-gdb) target cudacore core.name.nvcudmp
7.9. OptiX support
Starting from CUDA 11.6, the compute-sanitizer tool support OptiX 7
applications. No extra options are required for this feature. To get full device
backtrace information, please make sure your OptiX modules are compiled
with OPTIX_COMPILE_DEBUG_LEVEL_FULL set in the debugLevel field in the
OptixModuleCompileOptions structure.
When using compute-sanitizer on OptiX applciations, it is possible that some or all
device frames are located in OptiX internal code. Such frames have their name displayed
as NVIDIA Internal. See the example below of an error reported in user code called
from an internal OptiX function:
www.nvidia.com
Compute Sanitizer v2022.2.0 | 30
Compute Sanitizer Features
reported with a regular use of --leak-check full. See the example below of an
optixProgramGroup that was not destroyed being reported:
www.nvidia.com
Compute Sanitizer v2022.2.0 | 31
Chapter 8.
OPERATING SYSTEM SPECIFIC BEHAVIOR
More information about the registry keys to control the Timeout Detection and
Recovery mechanism is available from MSDN at http://msdn.microsoft.com/en-us/
library/windows/hardware/ff569918%28v=vs.85%29.aspx.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 32
Chapter 9.
CUDA FORTRAN SUPPORT
www.nvidia.com
Compute Sanitizer v2022.2.0 | 33
Chapter 10.
COMPUTE SANITIZER TOOL EXAMPLES
Depending on the SM type of your GPU, your system output may vary.
make
10.1.1. memcheck_demo Output
When a CUDA application causes access violations, the kernel launch may report
an illegal memory access or misaligned address. Sticky errors will be reported for all
subsequent kernel launches.
This sample application is causing two failures but there is no way to detect where
the misaligned address access is caused. The second kernel is also not able to run, as
illustrated in the following output:
$ ./memcheck_demo
Mallocing memory
Running unaligned_kernel: misaligned address
Running out_of_bounds_kernel: misaligned address
www.nvidia.com
Compute Sanitizer v2022.2.0 | 34
Compute Sanitizer Tool Examples
violation. Though the kernel name and error type are detected, there is no line number
information on the failing kernel. Also included in the output are the host and device
backtraces for the call sites where the functions were launched
Now run this application with Compute Sanitizer and check the output. By default, the
application will run so that the kernel is terminated on memory access errors, but other
work in the CUDA context can still proceed.
In the output below, the first kernel no longer reports an unspecified launch failure as
its execution has been terminated early after Compute Sanitizer detected the error. The
application continued to run the second kernel. The error detected in the second kernel
causes it to terminate early.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 35
Compute Sanitizer Tool Examples
$ make run_memcheck
/usr/local/cuda/compute-sanitizer/compute-sanitizer --destroy-on-device-error
kernel memcheck_demo
========= COMPUTE-SANITIZER
Mallocing memory
========= Invalid __global__ write of size 4 bytes
========= at 0x70 in unaligned_kernel()
========= by thread (0,0,0) in block (0,0,0)
========= Address 0x7f671ac00001 is misaligned
========= and is inside the nearest allocation at 0x7fb654c00000 of size 4
bytes
========= Saved host backtrace up to driver entry point at kernel launch
time
========= Host Frame: [0x2774ec]
========= in /lib/x86_64-linux-gnu/libcuda.so.1
========= Host Frame:__cudart803 [0xfccb]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:cudaLaunchKernel [0x6a578]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:cudaError cudaLaunchKernel<char>(char const*, dim3,
dim3, void**, unsigned long, CUstream_st*) [0xb535]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:__device_stub__Z16unaligned_kernelv() [0xb22e]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:unaligned_kernel() [0xb28c]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:run_unaligned() [0xaf55]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:main [0xb0e2]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:../sysdeps/nptl/
libc_start_call_main.h:58:__libc_start_call_main [0x2dfd0]
========= in /lib/x86_64-linux-gnu/libc.so.6
========= Host Frame:../csu/libc-start.c:379:__libc_start_main [0x2e07d]
========= in /lib/x86_64-linux-gnu/libc.so.6
========= Host Frame:_start [0xada5]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
=========
Running unaligned_kernel: no error
========= Invalid __global__ write of size 4 bytes
========= at 0x90 in out_of_bounds_kernel()
========= by thread (0,0,0) in block (0,0,0)
========= and is 140,418,624,437,472 bytes before the nearest allocation at
0x7fb649a00000 of size 1,024 bytes
========= Saved host backtrace up to driver entry point at kernel launch
time
========= Host Frame: [0x2774ec]
========= in /lib/x86_64-linux-gnu/libcuda.so.1
========= Host Frame:__cudart803 [0xfccb]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:cudaLaunchKernel [0x6a578]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:cudaError cudaLaunchKernel<char>(char const*, dim3,
dim3, void**, unsigned long, CUstream_st*) [0xb535]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:__device_stub__Z20out_of_bounds_kernelv() [0xb34e]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:out_of_bounds_kernel() [0xb3ac]
=========
www.nvidia.com in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
Compute Sanitizer v2022.2.0 | 36
========= Host Frame:run_out_of_bounds() [0xb037]
========= in /home/cuda/github/compute-sanitizer-samples/
Compute Sanitizer Tool Examples
make dbg=1
The source location of the error is now reported in the compute-sanitizer output:
www.nvidia.com
Compute Sanitizer v2022.2.0 | 37
Compute Sanitizer Tool Examples
$ make_run_memcheck
========= COMPUTE-SANITIZER
========= Invalid __global__ write of size 4 bytes
========= at 0x160 in /home/cuda/github/compute-sanitizer-samples/Memcheck/
memcheck_demo.cu:34:unaligned_kernel()
========= by thread (0,0,0) in block (0,0,0)
========= and is inside the nearest allocation at 0x7f9544c00000 of size 4
bytes
========= Saved host backtrace up to driver entry point at kernel launch
time
========= Host Frame: [0x2774ec]
========= in /lib/x86_64-linux-gnu/libcuda.so.1
========= Host Frame:__cudart803 [0xfccb]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:cudaLaunchKernel [0x6a578]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:cudaError cudaLaunchKernel<char>(char const*, dim3,
dim3, void**, unsigned long, CUstream_st*) [0xb535]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:__device_stub__Z16unaligned_kernelv() [0xb22e]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:unaligned_kernel() [0xb28c]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:run_unaligned() [0xaf55]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:main [0xb0e2]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:../sysdeps/nptl/
libc_start_call_main.h:58:__libc_start_call_main [0x2dfd0]
========= in /lib/x86_64-linux-gnu/libc.so.6
========= Host Frame:../csu/libc-start.c:379:__libc_start_main [0x2e07d]
========= in /lib/x86_64-linux-gnu/libc.so.6
========= Host Frame:_start [0xada5]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
=========
Running unaligned_kernel: no error
========= Invalid __global__ write of size 4 bytes
========= at 0xb0 in /home/cuda/github/compute-sanitizer-samples/Memcheck/
memcheck_demo.cu:39:out_of_bounds_function()
========= by thread (0,0,0) in block (0,0,0)
========= Address 0x87654320 is out of bounds
========= and is 140,276,689,190,112 bytes before the nearest allocation at
0x7f953da00000 of size 1,024 bytes
========= Device Frame:/home/cuda/github/compute-sanitizer-samples/Memcheck/
memcheck_demo.cu:44:out_of_bounds_kernel() [0x30]
========= Saved host backtrace up to driver entry point at kernel launch
time
========= Host Frame: [0x2774ec]
========= in /lib/x86_64-linux-gnu/libcuda.so.1
========= Host Frame:__cudart803 [0xfccb]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:cudaLaunchKernel [0x6a578]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:cudaError cudaLaunchKernel<char>(char const*, dim3,
dim3, void**, unsigned long, CUstream_st*) [0xb535]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:__device_stub__Z20out_of_bounds_kernelv() [0xb34e]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
=========
www.nvidia.com Host Frame:out_of_bounds_kernel() [0xb3ac]
=========
Compute Sanitizer in /home/cuda/github/compute-sanitizer-samples/
v2022.2.0 | 38
Memcheck/memcheck_demo
========= Host Frame:run_out_of_bounds() [0xb037]
Compute Sanitizer Tool Examples
$ make_run_leakcheck
========= COMPUTE-SANITIZER
...
========= Leaked 1,024 bytes at 0x7fab4fa00000
========= Saved host backtrace up to driver entry point at cudaMalloc time
========= Host Frame: [0x9b5c16]
========= in /lib/x86_64-linux-gnu/libcuda.so.1
========= Host Frame:__cudart612 [0x41f5e]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:__cudart618 [0x1080b]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:cudaMalloc [0x4f3ef]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:main [0xb0dd]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
========= Host Frame:../sysdeps/nptl/
libc_start_call_main.h:58:__libc_start_call_main [0x2dfd0]
========= in /lib/x86_64-linux-gnu/libc.so.6
========= Host Frame:../csu/libc-start.c:379:__libc_start_main [0x2e07d]
========= in /lib/x86_64-linux-gnu/libc.so.6
========= Host Frame:_start [0xada5]
========= in /home/cuda/github/compute-sanitizer-samples/
Memcheck/memcheck_demo
=========
========= LEAK SUMMARY: 1024 bytes leaked in 1 allocations
========= ERROR SUMMARY: 3 errors
www.nvidia.com
Compute Sanitizer v2022.2.0 | 39
Compute Sanitizer Tool Examples
hazards on the block level. The second example uses an application called warp_error,
which has shared memory hazards on the warp level.
Depending on the SM type of your GPU, your system output may vary.
10.2.1. Block-level Hazards
block_error.cu source code
#define THREADS 128
__global__
void sumKernel(int *data_in, int *sum_out)
{
int tx = threadIdx.x;
smem[tx] = data_in[tx] + tx;
if (tx == 0) {
*sum_out = 0;
for (int i = 0; i < THREADS; ++i)
*sum_out += smem[i];
}
}
cudaFree(data_in);
cudaFree(sum_out);
return 0;
}
Each kernel thread write some element in shared memory. Afterward, thread 0
computes the sum of all elements in shared memory and stores the result in global
memory variable sum_out.
Running this application under the racecheck tool with the --racecheck-report
analysis option, the following error is reported:
Racecheck reports races between thread 0 reading all shared memory elements in line 14
and each individual thread writing its shared memory entry in line 9. Accesses to shared
www.nvidia.com
Compute Sanitizer v2022.2.0 | 40
Compute Sanitizer Tool Examples
memory between multiple threads, where at least one access is a write, can potentially
race with each other. Since the races are between threads of different warps, the block-
level synchronization barrier __syncthreads() is required in line 10.
Note that a total of 508 hazards are reported: the kernel uses a single block of 128
threads. The data size written or read, respectively, by each thread is four bytes (one
int) and hazards are reported at the byte level. The writes by all threads race with the
reads by thread 0, except for the four writes by thread 0 itself.
10.2.2. Warp-level Hazards
warp_error.cu source code
#define WARPS 2
#define WARP_SIZE 32
#define THREADS (WARPS * WARP_SIZE)
__global__
void sumKernel(int *data_in, int *sum_out)
{
int tx = threadIdx.x;
smem_first[tx] = data_in[tx] + tx;
if (tx % WARP_SIZE == 0) {
int wx = tx / WARP_SIZE;
smem_second[wx] = 0;
for (int i = 0; i < WARP_SIZE; ++i)
smem_second[wx] += smem_first[wx * WARP_SIZE + i];
}
__syncthreads();
if (tx == 0) {
*sum_out = 0;
for (int i = 0; i < WARPS; ++i)
*sum_out += smem_second[i];
}
}
cudaFree(data_in);
cudaFree(sum_out);
return 0;
}
www.nvidia.com
Compute Sanitizer v2022.2.0 | 41
Compute Sanitizer Tool Examples
The kernel computes the some of all individual elements in shared memory two stages.
First, each thread computes its local shared memory value in smem_first. Second, a
single thread of each warp is chosen with if (tx % WARP_SIZE == 0) to sum all
elements written by its warp, indexed wx, and store the result in smem_second. Finally,
thread 0 of the kernel computes the sum of elements in smem_second and writes the
value into global memory.
Running this application under the racecheck tool with the --racecheck-report
hazard option, multiple hazards with WARNING severity are reported:
To avoid the errors demonstrated in the Block-level Hazards example, the kernel uses
the block-level barrier __syncthreads() in line 22. However, racecheck still reports
read-after-write (RAW) hazards between threads within the same warp, with severity
WARNING. On architectures prior to SM 7.0 (Volta), programmers commonly relied
on the assumption that threads within a warp execute code in lock-step (warp-level
programming). Starting with CUDA 9.0, programmers can use the new __syncwarp()
warp-wide barrier (instead of only __syncthreads() beforehand) to avoid such
hazards. This barrier should be inserted at line 13.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 42
Compute Sanitizer Tool Examples
10.3.1. Memset Error
memset_error.cu source code
#define THREADS 128
#define BLOCKS 2
__global__
void vectorAdd(int *v)
{
int tx = threadIdx.x + blockDim.x * blockIdx.x;
v[tx] += tx;
}
vectorAdd<<<BLOCKS, THREADS>>>(d_vec);
cudaDeviceSynchronize();
cudaFree(d_vec);
return 0;
}
The example implements a very simple vector addition, where the thread index is added
to each vector element. The vector contains BLOCKS * THREADS elements of type int.
The vector is allocated on the device and then initialized to 0 using cudaMemset before
the kernel is launched.
Running this application under the initcheck tool reports multiple errors like the
following:
The problem is that the call to cudaMemset expects the size of the to-be set memory in
bytes. However, the size is given in elements, as a factor of sizeof(int) is missing
while computing the parameter. As a result, 3/4 of the memory will have undefined
values during the vector addition.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 43
Compute Sanitizer Tool Examples
Depending on the SM type of your GPU, your system output may vary.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 44
Compute Sanitizer Tool Examples
10.4.1. Divergent Threads
divergent_threads.cu source code
#define THREADS 64
#define DATA_BLOCKS 16
__global__ void
myKernel(int *data_in, int *sum_out, const int size)
{
int tx = threadIdx.x;
smem[tx] = 0;
__syncthreads();
if (tx == 0) {
*sum_out = 0;
for (int i = 0; i < THREADS; ++i)
*sum_out += smem[i];
}
}
cudaDeviceSynchronize();
cudaFree(data_in);
cudaFree(sum_out);
return 0;
}
In this example, we launch a kernel with a single block of 64 threads. The kernels loops
over DATA_BLOCKS blocks of input data data_in. In each iteration, THREADS elements
are added concurrently in shared memory. Finally, a single thread 0 computes the sum of
all values in shared memory and writes it to sum_out.
Running this application under the synccheck tool, 16 errors like the following are
reported:
www.nvidia.com
Compute Sanitizer v2022.2.0 | 45
Compute Sanitizer Tool Examples
The issue is with the __syncthreads() in line 20 when reading the last data block
into shared memory. Note that the last data block only has 48 elements (compared to 64
elements for all other blocks). As a result, not all threads of the second warp execute this
statement in convergence as required.
10.4.2. Illegal Syncwarp
illegal_syncwarp.cu source code
#define THREADS 32
__global__ void
myKernel(int *sum_out)
{
int tx = threadIdx.x;
__syncwarp(mask);
*sum_out = 0;
for (int i = 0; i < (THREADS / 2); ++i)
*sum_out += smem[i];
}
__syncthreads();
}
cudaMalloc((void**)&sum_out, sizeof(int));
myKernel<<<1,THREADS>>>(sum_out);
cudaDeviceSynchronize();
cudaFree(sum_out);
return 0;
}
This example only applies to devices of compute capability 7.0 (Volta) and above. The
kernel is launched with a single warp (32 threads), but only thread 0-15 are part of the
computation. Each of these threads initializes one shared memory element with its
thread index. After the assignment, __syncwarp() is used to ensure that the warp is
www.nvidia.com
Compute Sanitizer v2022.2.0 | 46
Compute Sanitizer Tool Examples
converged and all writes are visible to other threads. The mask passed to __syncwarp()
is computed using __ballot_sync(), which enables the bits for the first 16 threads
in mask. Finally, the first thread (index 0) computes the sum over all initialized shared
memory elements and writes it to global memory.
Building the application with -G to enable debug information and running it under the
synccheck tool on SM 7.0 and above, multiple errors like the following are reported:
The issue is with the __syncwarp(mask) in line 15. All threads for which tx <
(THREADS / 2) holds true are enabled in the mask, which are threads 0-15. However,
the if condition evaluates true for threads 0-16. As a result, thread 16 executes the
__syncwarp(mask) but does not declare itself in the mask parameter as required.
www.nvidia.com
Compute Sanitizer v2022.2.0 | 47
Notice
ALL NVIDIA DESIGN SPECIFICATIONS, REFERENCE BOARDS, FILES, DRAWINGS,
DIAGNOSTICS, LISTS, AND OTHER DOCUMENTS (TOGETHER AND SEPARATELY,
"MATERIALS") ARE BEING PROVIDED "AS IS." NVIDIA MAKES NO WARRANTIES,
EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO THE
MATERIALS, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF
NONINFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR
PURPOSE.
Information furnished is believed to be accurate and reliable. However, NVIDIA
Corporation assumes no responsibility for the consequences of use of such
information or for any infringement of patents or other rights of third parties
that may result from its use. No license is granted by implication of otherwise
under any patent rights of NVIDIA Corporation. Specifications mentioned in this
publication are subject to change without notice. This publication supersedes and
replaces all other information previously supplied. NVIDIA Corporation products
are not authorized as critical components in life support devices or systems
without express written approval of NVIDIA Corporation.
Trademarks
NVIDIA and the NVIDIA logo are trademarks or registered trademarks of NVIDIA
Corporation in the U.S. and other countries. Other company and product names
may be trademarks of the respective companies with which they are associated.
Copyright
© 2019-2022 NVIDIA Corporation and affiliates. All rights reserved.
This product includes software developed by the Syncro Soft SRL (http://
www.sync.ro/).
www.nvidia.com