summaryrefslogtreecommitdiffstats
path: root/slang.h
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2023-03-16 22:17:34 -0700
committerGitHub <noreply@github.com>2023-03-16 22:17:34 -0700
commitfc9cba5307d166f7fda3f7e2c8b5bed7b06fef54 (patch)
tree1a7e73b2b00cd5672c0c7318a6f4ab52cf7c5557 /slang.h
parent2fd1ac6c85230d47c008e45fefcc1c49400e96bd (diff)
Add `[CudaDeviceExport]` to allow exporting CUDA device functions. (#2708)
* Add `[CudaDeviceExport]` to allow exporting CUDA device functions. * Fix. --------- Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'slang.h')
-rw-r--r--slang.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/slang.h b/slang.h
index d79d7829c..1a72c4348 100644
--- a/slang.h
+++ b/slang.h
@@ -571,6 +571,7 @@ extern "C"
SLANG_SHADER_HOST_CALLABLE, ///< A CPU target that makes the compiled shader code available to be run immediately
SLANG_CUDA_SOURCE, ///< Cuda source
SLANG_PTX, ///< PTX
+ SLANG_CUDA_OBJECT_CODE, ///< Object code that contains CUDA functions.
SLANG_OBJECT_CODE, ///< Object code that can be used for later linking
SLANG_HOST_CPP_SOURCE, ///< C++ code for host library or executable.
SLANG_HOST_HOST_CALLABLE, ///<