Fixes: SWDEV-274276
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
I guess it would be nicer
llvm/lib/Target/AMDGPU/SIISelLowering.cpp | ||
---|---|---|
12057–12058 | Probably should add a comment explaining what amdgpu-unsafe-fp-atomics implies and add to the documentation. I assumed it would cover just bypassing the memory scope issue |
llvm/lib/Target/AMDGPU/SIISelLowering.cpp | ||
---|---|---|
12057–12058 | That was the idea initially. However, our users request to bypass denorm mode checks with that option too. |
clang/docs/ClangCommandLineReference.rst | ||
---|---|---|
3002 | Enable generation of unsafe floating point atomic instructions. May generate more efficient code, but may not respect rounding and denormal modes, and may give incorrect results for certain memory destinations. (AMDGPU) |
Updated documentation and made clang-tidy happy.
clang/docs/ClangCommandLineReference.rst | ||
---|---|---|
3002 | Thanks Tony! Really appreciate it. |
Enable generation of unsafe floating point atomic instructions. May generate more efficient code, but may not respect rounding and denormal modes, and may give incorrect results for certain memory destinations. (AMDGPU)