diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2020-03-09 12:40:04 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-09 12:40:04 -0400 |
| commit | 7e0aa9315f7f65033229c1f76d7df47ccd2da3d0 (patch) | |
| tree | 28ca885d901526ae548895f354626844d305d16f /source/core | |
| parent | b1317cd16ab9c827596a28ccf4258ef1bb672d92 (diff) | |
CUDA support for vector/matrix Wave intrinsics (#1266)
* Distinguish between __activeMask and _getConvergedMask().
Remove need to pass in mask to CUDA wave impls.
* Add support for vector/matrix Wave intrinsics for CUDA.
Fix issue with CUDA parsing of errors.
* Fix typo.
Diffstat (limited to 'source/core')
| -rw-r--r-- | source/core/slang-nvrtc-compiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/slang-nvrtc-compiler.cpp b/source/core/slang-nvrtc-compiler.cpp index 2f9944786..db4e4f32f 100644 --- a/source/core/slang-nvrtc-compiler.cpp +++ b/source/core/slang-nvrtc-compiler.cpp @@ -204,7 +204,7 @@ static SlangResult _parseNVRTCLine(const UnownedStringSlice& line, DownstreamDia StringUtil::split(line, ':', split); } - if (split.getCount() == 3) + if (split.getCount() >= 3) { // tests/cuda/cuda-compile.cu(7): warning: variable "c" is used before its value is set |
