Configuration#

Warp has settings at the global, module, and kernel level that can be used to fine-tune the compilation and verbosity of Warp programs. In cases in which a setting can be changed at multiple levels (e.g.: enable_backward), the setting at the more-specific scope takes precedence.

Global Settings#

Settings can be modified by direct assignment before or after calling wp.init(), though some settings only take effect if set prior to initialization.

For example, the location of the user kernel cache can be changed with:

import os

import warp as wp

example_dir = os.path.dirname(os.path.realpath(__file__))

# set default cache directory before wp.init()
wp.config.kernel_cache_dir = os.path.join(example_dir, "tmp", "warpcache1")

wp.init()
warp.config.version: str = '1.7.0'#

Warp version string

warp.config.verify_fp: bool = False#

Enable floating-point verification for inputs and outputs.

When enabled, checks if all values are finite before and after operations.

Note: Enabling this flag impacts performance.

warp.config.verify_cuda: bool = False#

Enable CUDA error checking after kernel launches.

This setting cannot be used during graph capture

Note: Enabling this flag impacts performance

warp.config.print_launches: bool = False#

Enable detailed kernel launch logging.

Prints information about each kernel launch including:

  • Launch dimensions

  • Input/output parameters

  • Target device

Note: Enabling this flag impacts performance.

warp.config.mode: str = 'release'#

Compilation mode for Warp kernels.

Parameters:

mode – Either "release" or "debug".

Note: Debug mode may impact performance.

This setting can be overridden at the module level by setting the "mode" module option.

warp.config.verbose: bool = False#

Enable detailed logging during code generation and compilation.

warp.config.verbose_warnings: bool = False#

Enable extended warning messages with source location information.

warp.config.quiet: bool = False#

Disable Warp module initialization messages.

Error messages and warnings remain unaffected.

warp.config.verify_autograd_array_access: bool = False#

Enable warnings for array overwrites that may affect gradient computation.

warp.config.enable_vector_component_overwrites: bool = False#

Allow multiple writes to vector/matrix/quaternion components.

Note: Enabling this may significantly increase kernel compilation time.

warp.config.cache_kernels: bool = True#

Enable kernel caching between application launches.

warp.config.kernel_cache_dir: str | None = None#

Directory path for storing compiled kernel cache.

If None, the path is determined in the following order:

  1. WARP_CACHE_PATH environment variable.

  2. System’s user cache directory (via appdirs.user_cache_directory).

Note: Subdirectories prefixed with wp_ will be created in this location.

warp.config.cuda_output: str | None = None#

Preferred CUDA output format for kernel compilation.

Parameters:

cuda_output – One of {None, "ptx", "cubin"}. If None, format is auto-determined.

warp.config.ptx_target_arch: int | None = None#

Target architecture version for PTX generation, e.g., ptx_target_arch = 75.

If None, the architecture is determined by devices present in the system.

warp.config.lineinfo: bool = False#

Enable the compilation of modules with line information.

Modules compiled for GPU execution will be compiled with the --generate-line-info compiler option, which generates line-number information for device code. Line-number information is always included when compiling a module in "debug" mode regardless of this setting.

This setting can be overridden at the module level by setting the "lineinfo" module option.

warp.config.line_directives: bool = True#

Enable Python source line mapping in generated code.

If True, #line directives are inserted in generated code for modules compiled with line information to map back to the original Python source file.

warp.config.enable_backward: bool = True#

Enable compilation of kernel backward passes.

This setting can be overridden at the module level by setting the "enable_backward" module option.

warp.config.llvm_cuda: bool = False#

Use Clang/LLVM compiler instead of NVRTC for CUDA compilation.

warp.config.enable_graph_capture_module_load_by_default: bool = True#

Enable automatic module loading before graph capture.

Only affects systems with CUDA driver versions below 12.3.

warp.config.enable_mempools_at_init: bool = True#

Enable CUDA memory pools during device initialization when supported.

warp.config.max_unroll: int = 16#

Maximum unroll factor for loops.

Note that max_unroll does not consider the total number of iterations in nested loops. This can result in a large amount of automatically generated code if each nested loop is below the max_unroll threshold.

This setting can be overridden at the module level by setting the "max_unroll" module option.

Module Settings#

Module-level settings to control runtime compilation and code generation may be changed by passing a dictionary of option pairs to wp.set_module_options().

For example, compilation of backward passes for the kernel in an entire module can be disabled with:

wp.set_module_options({"enable_backward": False})

The options for a module can also be queried using wp.get_module_options().

Field

Type

Default Value

Description

mode

String

Global setting

A module-level override of the warp.config.mode setting.

max_unroll

Integer

Global setting

A module-level override of the warp.config.max_unroll setting.

enable_backward

Boolean

Global setting

A module-level override of the warp.config.enable_backward setting.

fast_math

Boolean

False

If True, CUDA kernels will be compiled with the --use_fast_math compiler option, which enables some fast math operations that are faster but less accurate.

fuse_fp

Boolean

True

If True, allow compilers to emit fused floating point operations such as fused-multiply-add. This may improve numerical accuracy and is generally recommended. Setting to False can help ensuring that functionally equivalent kernels will produce identical results unaffected by the presence or absence of fused operations.

lineinfo

Boolean

Global setting

A module-level override of the warp.config.lineinfo setting.

cuda_output

String

None

A module-level override of the warp.config.cuda_output setting.

Kernel Settings#

Backward-pass compilation can be disabled on a per-kernel basis by passing the enable_backward argument into the @wp.kernel decorator as in the following example:

@wp.kernel(enable_backward=False)
def scale_2(
    x: wp.array(dtype=float),
    y: wp.array(dtype=float),
):
    y[0] = x[0] ** 2.0