diff options
| author | Jay Kwak <82421531+jkwak-work@users.noreply.github.com> | 2024-10-28 16:40:53 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-28 16:40:53 -0700 |
| commit | b7a619b45b0745f166d2dcc5985b994fb1d85d13 (patch) | |
| tree | a1fbae9702899bf574624641f31bf17d9dd54999 /prelude | |
| parent | 80471601720e107f0914479f6097281d0840cf18 (diff) | |
Replace the word stdlib or standard-library with core-module for source code (#5415)
This commit changes the word "stdlib" or "standard library" to "core module" in the source code.
Diffstat (limited to 'prelude')
| -rw-r--r-- | prelude/slang-cpp-scalar-intrinsics.h | 2 | ||||
| -rw-r--r-- | prelude/slang-cuda-prelude.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/prelude/slang-cpp-scalar-intrinsics.h b/prelude/slang-cpp-scalar-intrinsics.h index 55001cb21..1ade8614f 100644 --- a/prelude/slang-cpp-scalar-intrinsics.h +++ b/prelude/slang-cpp-scalar-intrinsics.h @@ -431,7 +431,7 @@ SLANG_FORCE_INLINE uint64_t U64_abs(uint64_t f) { return f; } SLANG_FORCE_INLINE uint64_t U64_min(uint64_t a, uint64_t b) { return a < b ? a : b; } SLANG_FORCE_INLINE uint64_t U64_max(uint64_t a, uint64_t b) { return a > b ? a : b; } -// TODO(JS): We don't define countbits for 64bit in stdlib currently. +// TODO(JS): We don't define countbits for 64bit in the core module currently. // It's not clear from documentation if it should return 32 or 64 bits, if it exists. // 32 bits can always hold the result, and will be implicitly promoted. SLANG_FORCE_INLINE uint32_t U64_countbits(uint64_t v) diff --git a/prelude/slang-cuda-prelude.h b/prelude/slang-cuda-prelude.h index a6c8fd17b..e0335f08a 100644 --- a/prelude/slang-cuda-prelude.h +++ b/prelude/slang-cuda-prelude.h @@ -1348,7 +1348,7 @@ struct RWByteAddressBuffer memcpy((char*)data + index, &value, sizeof(T)); } - /// Can be used in stdlib to gain access + /// Can be used in the core module to gain access template <typename T> SLANG_CUDA_CALL T* _getPtrAt(size_t index) { |
