-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[SPIRV][HLSL] Add lowering of rsqrt
to SPIRV
#95849
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -1,53 +1,84 @@ | ||
// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \ | ||
// RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ | ||
// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ | ||
// RUN: --check-prefixes=CHECK,NATIVE_HALF | ||
// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ | ||
// RUN: --check-prefixes=CHECK,DXIL_CHECK,DXIL_NATIVE_HALF,NATIVE_HALF | ||
// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \ | ||
// RUN: dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \ | ||
// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF | ||
// RUN: -o - | FileCheck %s --check-prefixes=CHECK,DXIL_CHECK,NO_HALF,DXIL_NO_HALF | ||
// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \ | ||
// RUN: spirv-unknown-vulkan-compute %s -fnative-half-type \ | ||
// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ | ||
// RUN: --check-prefixes=CHECK,SPIR_CHECK,NATIVE_HALF,SPIR_NATIVE_HALF | ||
// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \ | ||
// RUN: spirv-unknown-vulkan-compute %s -emit-llvm -disable-llvm-passes \ | ||
// RUN: -o - | FileCheck %s --check-prefixes=CHECK,SPIR_CHECK,NO_HALF,SPIR_NO_HALF | ||
|
||
// NATIVE_HALF: define noundef half @ | ||
// NATIVE_HALF: %dx.rsqrt = call half @llvm.dx.rsqrt.f16( | ||
// NATIVE_HALF: ret half %dx.rsqrt | ||
// NO_HALF: define noundef float @"?test_rsqrt_half@@YA$halff@$halff@@Z"( | ||
// NO_HALF: %dx.rsqrt = call float @llvm.dx.rsqrt.f32( | ||
// NO_HALF: ret float %dx.rsqrt | ||
// DXIL_NATIVE_HALF: define noundef half @ | ||
// SPIR_NATIVE_HALF: define spir_func noundef half @ | ||
// DXIL_NATIVE_HALF: %hlsl.rsqrt = call half @llvm.dx.rsqrt.f16( | ||
// SPIR_NATIVE_HALF: %hlsl.rsqrt = call half @llvm.spv.rsqrt.f16( | ||
// NATIVE_HALF: ret half %hlsl.rsqrt | ||
// DXIL_NO_HALF: define noundef float @ | ||
// SPIR_NO_HALF: define spir_func noundef float @ | ||
// DXIL_NO_HALF: %hlsl.rsqrt = call float @llvm.dx.rsqrt.f32( | ||
// SPIR_NO_HALF: %hlsl.rsqrt = call float @llvm.spv.rsqrt.f32( | ||
// NO_HALF: ret float %hlsl.rsqrt | ||
half test_rsqrt_half(half p0) { return rsqrt(p0); } | ||
// NATIVE_HALF: define noundef <2 x half> @ | ||
// NATIVE_HALF: %dx.rsqrt = call <2 x half> @llvm.dx.rsqrt.v2f16 | ||
// NATIVE_HALF: ret <2 x half> %dx.rsqrt | ||
// NO_HALF: define noundef <2 x float> @ | ||
// NO_HALF: %dx.rsqrt = call <2 x float> @llvm.dx.rsqrt.v2f32( | ||
// NO_HALF: ret <2 x float> %dx.rsqrt | ||
// DXIL_NATIVE_HALF: define noundef <2 x half> @ | ||
// SPIR_NATIVE_HALF: define spir_func noundef <2 x half> @ | ||
// DXIL_NATIVE_HALF: %hlsl.rsqrt = call <2 x half> @llvm.dx.rsqrt.v2f16 | ||
// SPIR_NATIVE_HALF: %hlsl.rsqrt = call <2 x half> @llvm.spv.rsqrt.v2f16 | ||
// NATIVE_HALF: ret <2 x half> %hlsl.rsqrt | ||
// DXIL_NO_HALF: define noundef <2 x float> @ | ||
// SPIR_NO_HALF: define spir_func noundef <2 x float> @ | ||
// DXIL_NO_HALF: %hlsl.rsqrt = call <2 x float> @llvm.dx.rsqrt.v2f32( | ||
// SPIR_NO_HALF: %hlsl.rsqrt = call <2 x float> @llvm.spv.rsqrt.v2f32( | ||
// NO_HALF: ret <2 x float> %hlsl.rsqrt | ||
half2 test_rsqrt_half2(half2 p0) { return rsqrt(p0); } | ||
// NATIVE_HALF: define noundef <3 x half> @ | ||
// NATIVE_HALF: %dx.rsqrt = call <3 x half> @llvm.dx.rsqrt.v3f16 | ||
// NATIVE_HALF: ret <3 x half> %dx.rsqrt | ||
// NO_HALF: define noundef <3 x float> @ | ||
// NO_HALF: %dx.rsqrt = call <3 x float> @llvm.dx.rsqrt.v3f32( | ||
// NO_HALF: ret <3 x float> %dx.rsqrt | ||
// DXIL_NATIVE_HALF: define noundef <3 x half> @ | ||
// SPIR_NATIVE_HALF: define spir_func noundef <3 x half> @ | ||
// DXIL_NATIVE_HALF: %hlsl.rsqrt = call <3 x half> @llvm.dx.rsqrt.v3f16 | ||
// SPIR_NATIVE_HALF: %hlsl.rsqrt = call <3 x half> @llvm.spv.rsqrt.v3f16 | ||
// NATIVE_HALF: ret <3 x half> %hlsl.rsqrt | ||
// DXIL_NO_HALF: define noundef <3 x float> @ | ||
// SPIR_NO_HALF: define spir_func noundef <3 x float> @ | ||
// DXIL_NO_HALF: %hlsl.rsqrt = call <3 x float> @llvm.dx.rsqrt.v3f32( | ||
// SPIR_NO_HALF: %hlsl.rsqrt = call <3 x float> @llvm.spv.rsqrt.v3f32( | ||
// NO_HALF: ret <3 x float> %hlsl.rsqrt | ||
half3 test_rsqrt_half3(half3 p0) { return rsqrt(p0); } | ||
// NATIVE_HALF: define noundef <4 x half> @ | ||
// NATIVE_HALF: %dx.rsqrt = call <4 x half> @llvm.dx.rsqrt.v4f16 | ||
// NATIVE_HALF: ret <4 x half> %dx.rsqrt | ||
// NO_HALF: define noundef <4 x float> @ | ||
// NO_HALF: %dx.rsqrt = call <4 x float> @llvm.dx.rsqrt.v4f32( | ||
// NO_HALF: ret <4 x float> %dx.rsqrt | ||
// DXIL_NATIVE_HALF: define noundef <4 x half> @ | ||
// SPIR_NATIVE_HALF: define spir_func noundef <4 x half> @ | ||
// DXIL_NATIVE_HALF: %hlsl.rsqrt = call <4 x half> @llvm.dx.rsqrt.v4f16 | ||
// SPIR_NATIVE_HALF: %hlsl.rsqrt = call <4 x half> @llvm.spv.rsqrt.v4f16 | ||
// NATIVE_HALF: ret <4 x half> %hlsl.rsqrt | ||
// DXIL_NO_HALF: define noundef <4 x float> @ | ||
// SPIR_NO_HALF: define spir_func noundef <4 x float> @ | ||
// DXIL_NO_HALF: %hlsl.rsqrt = call <4 x float> @llvm.dx.rsqrt.v4f32( | ||
// SPIR_NO_HALF: %hlsl.rsqrt = call <4 x float> @llvm.spv.rsqrt.v4f32( | ||
// NO_HALF: ret <4 x float> %hlsl.rsqrt | ||
half4 test_rsqrt_half4(half4 p0) { return rsqrt(p0); } | ||
|
||
// CHECK: define noundef float @ | ||
// CHECK: %dx.rsqrt = call float @llvm.dx.rsqrt.f32( | ||
// CHECK: ret float %dx.rsqrt | ||
// DXIL_CHECK: define noundef float @ | ||
// SPIR_CHECK: define spir_func noundef float @ | ||
// DXIL_CHECK: %hlsl.rsqrt = call float @llvm.dx.rsqrt.f32( | ||
// SPIR_CHECK: %hlsl.rsqrt = call float @llvm.spv.rsqrt.f32( | ||
// CHECK: ret float %hlsl.rsqrt | ||
float test_rsqrt_float(float p0) { return rsqrt(p0); } | ||
// CHECK: define noundef <2 x float> @ | ||
// CHECK: %dx.rsqrt = call <2 x float> @llvm.dx.rsqrt.v2f32 | ||
// CHECK: ret <2 x float> %dx.rsqrt | ||
// DXIL_CHECK: define noundef <2 x float> @ | ||
// SPIR_CHECK: define spir_func noundef <2 x float> @ | ||
// DXIL_CHECK: %hlsl.rsqrt = call <2 x float> @llvm.dx.rsqrt.v2f32 | ||
// SPIR_CHECK: %hlsl.rsqrt = call <2 x float> @llvm.spv.rsqrt.v2f32 | ||
// CHECK: ret <2 x float> %hlsl.rsqrt | ||
float2 test_rsqrt_float2(float2 p0) { return rsqrt(p0); } | ||
// CHECK: define noundef <3 x float> @ | ||
// CHECK: %dx.rsqrt = call <3 x float> @llvm.dx.rsqrt.v3f32 | ||
// CHECK: ret <3 x float> %dx.rsqrt | ||
// DXIL_CHECK: define noundef <3 x float> @ | ||
// SPIR_CHECK: define spir_func noundef <3 x float> @ | ||
// DXIL_CHECK: %hlsl.rsqrt = call <3 x float> @llvm.dx.rsqrt.v3f32 | ||
// SPIR_CHECK: %hlsl.rsqrt = call <3 x float> @llvm.spv.rsqrt.v3f32 | ||
// CHECK: ret <3 x float> %hlsl.rsqrt | ||
float3 test_rsqrt_float3(float3 p0) { return rsqrt(p0); } | ||
// CHECK: define noundef <4 x float> @ | ||
// CHECK: %dx.rsqrt = call <4 x float> @llvm.dx.rsqrt.v4f32 | ||
// CHECK: ret <4 x float> %dx.rsqrt | ||
// DXIL_CHECK: define noundef <4 x float> @ | ||
// SPIR_CHECK: define spir_func noundef <4 x float> @ | ||
// DXIL_CHECK: %hlsl.rsqrt = call <4 x float> @llvm.dx.rsqrt.v4f32 | ||
// SPIR_CHECK: %hlsl.rsqrt = call <4 x float> @llvm.spv.rsqrt.v4f32 | ||
// CHECK: ret <4 x float> %hlsl.rsqrt | ||
float4 test_rsqrt_float4(float4 p0) { return rsqrt(p0); } |
This file contains hidden or 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 hidden or 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 hidden or 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,68 @@ | ||
; RUN: llc -O0 -mtriple=spirv-unknown-unknown %s -o - | FileCheck %s | ||
; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-unknown-unknown %s -o - -filetype=obj | spirv-val %} | ||
|
||
; CHECK-DAG: %[[#op_ext_glsl:]] = OpExtInstImport "GLSL.std.450" | ||
|
||
; CHECK-DAG: %[[#float_32:]] = OpTypeFloat 32 | ||
; CHECK-DAG: %[[#float_16:]] = OpTypeFloat 16 | ||
; CHECK-DAG: %[[#float_64:]] = OpTypeFloat 64 | ||
|
||
; CHECK-DAG: %[[#vec4_float_32:]] = OpTypeVector %[[#float_32]] 4 | ||
; CHECK-DAG: %[[#vec4_float_16:]] = OpTypeVector %[[#float_16]] 4 | ||
; CHECK-DAG: %[[#vec4_float_64:]] = OpTypeVector %[[#float_64]] 4 | ||
|
||
define noundef float @rsqrt_float(float noundef %a) { | ||
entry: | ||
; CHECK: %[[#float_32_arg:]] = OpFunctionParameter %[[#float_32]] | ||
; CHECK: %[[#]] = OpExtInst %[[#float_32]] %[[#op_ext_glsl]] InverseSqrt %[[#float_32_arg]] | ||
%elt.rsqrt = call float @llvm.spv.rsqrt.f32(float %a) | ||
ret float %elt.rsqrt | ||
} | ||
|
||
define noundef half @rsqrt_half(half noundef %a) { | ||
entry: | ||
; CHECK: %[[#float_16_arg:]] = OpFunctionParameter %[[#float_16]] | ||
; CHECK: %[[#]] = OpExtInst %[[#float_16]] %[[#op_ext_glsl]] InverseSqrt %[[#float_16_arg]] | ||
%elt.rsqrt = call half @llvm.spv.rsqrt.f16(half %a) | ||
ret half %elt.rsqrt | ||
} | ||
|
||
define noundef double @rsqrt_double(double noundef %a) { | ||
entry: | ||
; CHECK: %[[#float_64_arg:]] = OpFunctionParameter %[[#float_64]] | ||
; CHECK: %[[#]] = OpExtInst %[[#float_64]] %[[#op_ext_glsl]] InverseSqrt %[[#float_64_arg]] | ||
%elt.rsqrt = call double @llvm.spv.rsqrt.f64(double %a) | ||
ret double %elt.rsqrt | ||
} | ||
|
||
define noundef <4 x float> @rsqrt_float_vector(<4 x float> noundef %a) { | ||
entry: | ||
; CHECK: %[[#vec4_float_32_arg:]] = OpFunctionParameter %[[#vec4_float_32]] | ||
; CHECK: %[[#]] = OpExtInst %[[#vec4_float_32]] %[[#op_ext_glsl]] InverseSqrt %[[#vec4_float_32_arg]] | ||
%elt.rsqrt = call <4 x float> @llvm.spv.rsqrt.v4f32(<4 x float> %a) | ||
ret <4 x float> %elt.rsqrt | ||
} | ||
|
||
define noundef <4 x half> @rsqrt_half_vector(<4 x half> noundef %a) { | ||
entry: | ||
; CHECK: %[[#vec4_float_16_arg:]] = OpFunctionParameter %[[#vec4_float_16]] | ||
; CHECK: %[[#]] = OpExtInst %[[#vec4_float_16]] %[[#op_ext_glsl]] InverseSqrt %[[#vec4_float_16_arg]] | ||
%elt.rsqrt = call <4 x half> @llvm.spv.rsqrt.v4f16(<4 x half> %a) | ||
ret <4 x half> %elt.rsqrt | ||
} | ||
|
||
define noundef <4 x double> @rsqrt_double_vector(<4 x double> noundef %a) { | ||
entry: | ||
; CHECK: %[[#vec4_float_64_arg:]] = OpFunctionParameter %[[#vec4_float_64]] | ||
; CHECK: %[[#]] = OpExtInst %[[#vec4_float_64]] %[[#op_ext_glsl]] InverseSqrt %[[#vec4_float_64_arg]] | ||
%elt.rsqrt = call <4 x double> @llvm.spv.rsqrt.v4f64(<4 x double> %a) | ||
ret <4 x double> %elt.rsqrt | ||
} | ||
|
||
declare half @llvm.spv.rsqrt.f16(half) | ||
declare float @llvm.spv.rsqrt.f32(float) | ||
declare double @llvm.spv.rsqrt.f64(double) | ||
|
||
declare <4 x float> @llvm.spv.rsqrt.v4f32(<4 x float>) | ||
declare <4 x half> @llvm.spv.rsqrt.v4f16(<4 x half>) | ||
declare <4 x double> @llvm.spv.rsqrt.v4f64(<4 x double>) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.