-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[HLSL] generate hlsl.wavesize attribute (#107176)
Generate function attribute hlsl.wavesize from [WaveSize]. For #70118
- Loading branch information
1 parent
7046a9f
commit 0f77bdd
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ | ||
// RUN: dxil-pc-shadermodel6.6-compute %s -DSM66 -hlsl-entry foo \ | ||
// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s | ||
|
||
// RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ | ||
// RUN: dxil-pc-shadermodel6.8-compute %s -DNO_PREFERR -hlsl-entry foo \ | ||
// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s --check-prefix=NO_PREFERR | ||
|
||
// RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \ | ||
// RUN: dxil-pc-shadermodel6.8-compute %s -hlsl-entry foo \ | ||
// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s --check-prefix=CHECK-SM68 | ||
|
||
|
||
// Make sure wavesize attribute get correct value for sm66 and sm68. | ||
// CHECK:define void @foo() | ||
// CHECK:"hlsl.wavesize"="8,0,0" | ||
|
||
// NO_PREFERR:define void @foo() | ||
// NO_PREFERR:"hlsl.wavesize"="8,128,0" | ||
|
||
// CHECK-SM68:define void @foo() | ||
// CHECK-SM68:"hlsl.wavesize"="8,128,64" | ||
|
||
[numthreads(16,8,1)] | ||
#ifdef SM66 | ||
[WaveSize(8)] | ||
#elif NO_PREFERR | ||
[WaveSize(8, 128)] | ||
#else | ||
[WaveSize(8, 128, 64)] | ||
#endif | ||
void foo() { | ||
|
||
} |