[clang] [llvm] [HLSL][DXIL][SPRIV] Added WaveActiveMin intrinsic (PR #164385)
Steven Perron via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 22 06:30:27 PDT 2025
s-perron wrote:
> As I stated in the description:
>
> > I have not been able to run the tests myself as I am unsure which project runs the correct test. Any guidance on how I can test myself would be helpful.
>
> How can I do this?
The lit tests are build targets. The clang tests are separate from the llvm backend tests.
This will run the HLSL tests in Clang:
```
ninja check-clang-codegenhlsl check-clang-ast-hlsl check-clang-semahlsl
```
This will run the tests for the SPIR-V and DirectX backend:
```
ninja check-llvm-codegen-spirv ninja check-llvm-codegen-directx
```
https://github.com/llvm/llvm-project/pull/164385
More information about the llvm-commits
mailing list