Skip to content

Commit ed123a9

Browse files
authored
WGSL: Support isnan, isinf, etc.. (shader-slang#5609)
1 parent 1e7f541 commit ed123a9

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

source/slang/hlsl.meta.slang

+13-9
Original file line numberDiff line numberDiff line change
@@ -9445,7 +9445,7 @@ void InterlockedCompareStoreFloatBitwise<T:IAtomicable>(__ref T dest, T compar
94459445
/// @category math
94469446
__generic<T : __BuiltinFloatingPointType>
94479447
[__readNone]
9448-
[require(cpp_cuda_glsl_hlsl_metal_spirv, sm_4_0_version)]
9448+
[require(cpp_cuda_glsl_hlsl_metal_spirv_wgsl, sm_4_0_version)]
94499449
bool isfinite(T x)
94509450
{
94519451
__target_switch
@@ -9463,7 +9463,7 @@ bool isfinite(T x)
94639463

94649464
__generic<T : __BuiltinFloatingPointType, let N : int>
94659465
[__readNone]
9466-
[require(cpp_cuda_glsl_hlsl_metal_spirv, sm_4_0_version)]
9466+
[require(cpp_cuda_glsl_hlsl_metal_spirv_wgsl, sm_4_0_version)]
94679467
vector<bool, N> isfinite(vector<T, N> x)
94689468
{
94699469
__target_switch
@@ -9481,7 +9481,7 @@ vector<bool, N> isfinite(vector<T, N> x)
94819481

94829482
__generic<T : __BuiltinFloatingPointType, let N : int, let M : int>
94839483
[__readNone]
9484-
[require(cpp_cuda_glsl_hlsl_metal_spirv, sm_4_0_version)]
9484+
[require(cpp_cuda_glsl_hlsl_metal_spirv_wgsl, sm_4_0_version)]
94859485
matrix<bool, N, M> isfinite(matrix<T, N, M> x)
94869486
{
94879487
__target_switch
@@ -9498,7 +9498,7 @@ matrix<bool, N, M> isfinite(matrix<T, N, M> x)
94989498
/// @category math
94999499
__generic<T : __BuiltinFloatingPointType>
95009500
[__readNone]
9501-
[require(cpp_cuda_glsl_hlsl_metal_spirv, sm_4_0_version)]
9501+
[require(cpp_cuda_glsl_hlsl_metal_spirv_wgsl, sm_4_0_version)]
95029502
bool isinf(T x)
95039503
{
95049504
__target_switch
@@ -9512,12 +9512,14 @@ bool isinf(T x)
95129512
__intrinsic_asm "$P_isinf($0)";
95139513
case spirv:
95149514
return spirv_asm { result:$$bool = OpIsInf $x};
9515+
case wgsl:
9516+
__intrinsic_asm "($0 > 0x1.fffffep+127f) || ($0 < -0x1.fffffep+127f)";
95159517
}
95169518
}
95179519

95189520
__generic<T : __BuiltinFloatingPointType, let N : int>
95199521
[__readNone]
9520-
[require(cpp_cuda_glsl_hlsl_metal_spirv, sm_4_0_version)]
9522+
[require(cpp_cuda_glsl_hlsl_metal_spirv_wgsl, sm_4_0_version)]
95219523
vector<bool, N> isinf(vector<T, N> x)
95229524
{
95239525
__target_switch
@@ -9535,7 +9537,7 @@ vector<bool, N> isinf(vector<T, N> x)
95359537

95369538
__generic<T : __BuiltinFloatingPointType, let N : int, let M : int>
95379539
[__readNone]
9538-
[require(cpp_cuda_glsl_hlsl_metal_spirv, sm_4_0_version)]
9540+
[require(cpp_cuda_glsl_hlsl_metal_spirv_wgsl, sm_4_0_version)]
95399541
matrix<bool, N, M> isinf(matrix<T, N, M> x)
95409542
{
95419543
__target_switch
@@ -9552,7 +9554,7 @@ matrix<bool, N, M> isinf(matrix<T, N, M> x)
95529554
/// @category math
95539555
__generic<T : __BuiltinFloatingPointType>
95549556
[__readNone]
9555-
[require(cpp_cuda_glsl_hlsl_metal_spirv, sm_4_0_version)]
9557+
[require(cpp_cuda_glsl_hlsl_metal_spirv_wgsl, sm_4_0_version)]
95569558
bool isnan(T x)
95579559
{
95589560
__target_switch
@@ -9566,12 +9568,14 @@ bool isnan(T x)
95669568
__intrinsic_asm "$P_isnan($0)";
95679569
case spirv:
95689570
return spirv_asm { result:$$bool = OpIsNan $x};
9571+
case wgsl:
9572+
__intrinsic_asm "$0 != $0";
95699573
}
95709574
}
95719575

95729576
__generic<T : __BuiltinFloatingPointType, let N : int>
95739577
[__readNone]
9574-
[require(cpp_cuda_glsl_hlsl_metal_spirv, sm_4_0_version)]
9578+
[require(cpp_cuda_glsl_hlsl_metal_spirv_wgsl, sm_4_0_version)]
95759579
vector<bool, N> isnan(vector<T, N> x)
95769580
{
95779581
__target_switch
@@ -9589,7 +9593,7 @@ vector<bool, N> isnan(vector<T, N> x)
95899593

95909594
__generic<T : __BuiltinFloatingPointType, let N : int, let M : int>
95919595
[__readNone]
9592-
[require(cpp_cuda_glsl_hlsl_metal_spirv, sm_4_0_version)]
9596+
[require(cpp_cuda_glsl_hlsl_metal_spirv_wgsl, sm_4_0_version)]
95939597
matrix<bool, N, M> isnan(matrix<T, N, M> x)
95949598
{
95959599
__target_switch

tests/expected-failure-github.txt

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ tests/compute/texture-simple (wgpu)
3232
tests/compute/transcendental-double (wgpu)
3333
tests/hlsl-intrinsic/byte-address-buffer/byte-address-struct.slang.5 syn (wgpu)
3434
tests/hlsl-intrinsic/classify-double.slang.6 syn (wgpu)
35-
tests/hlsl-intrinsic/classify-float.slang.5 syn (wgpu)
3635
tests/hlsl-intrinsic/matrix-float.slang.6 syn (wgpu)
3736
tests/hlsl-intrinsic/matrix-int.slang.6 syn (wgpu)
3837
tests/hlsl-intrinsic/scalar-double-simple.slang.7 syn (wgpu)

tests/hlsl-intrinsic/classify-float.slang

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
//TEST(compute):COMPARE_COMPUTE_EX:-slang -compute -dx12 -shaderobj
44
//TEST(compute, vulkan):COMPARE_COMPUTE_EX:-vk -compute -shaderobj
55
//TEST(compute, vulkan):COMPARE_COMPUTE_EX:-cuda -compute -shaderobj
6-
//DISABLE_TEST(compute):COMPARE_COMPUTE_EX:-wgpu
76

87
// inf, -inf, nan, finite
98
//TEST_INPUT:ubuffer(data=[ 0x7f800000 0xff800000 0x7fffffff 1 ], stride=4):name inputBuffer

0 commit comments

Comments
 (0)