|
| 1 | +// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \ |
| 2 | +// RUN: dxil-pc-shadermodel6.3-library %s -fnative-half-type \ |
| 3 | +// RUN: -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ |
| 4 | +// RUN: --check-prefixes=CHECK,NATIVE_HALF |
| 5 | +// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \ |
| 6 | +// RUN: spirv-unknown-vulkan-compute %s -emit-llvm -disable-llvm-passes \ |
| 7 | +// RUN: -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF |
| 8 | + |
| 9 | +// CHECK-LABEL: test_atan2_half |
| 10 | +// NATIVE_HALF: call half @llvm.atan2.f16 |
| 11 | +// NO_HALF: call float @llvm.atan2.f32 |
| 12 | +half test_atan2_half (half p0, half p1) { |
| 13 | + return atan2(p0, p1); |
| 14 | +} |
| 15 | + |
| 16 | +// CHECK-LABEL: test_atan2_half2 |
| 17 | +// NATIVE_HALF: call <2 x half> @llvm.atan2.v2f16 |
| 18 | +// NO_HALF: call <2 x float> @llvm.atan2.v2f32 |
| 19 | +half2 test_atan2_half2 (half2 p0, half2 p1) { |
| 20 | + return atan2(p0, p1); |
| 21 | +} |
| 22 | + |
| 23 | +// CHECK-LABEL: test_atan2_half3 |
| 24 | +// NATIVE_HALF: call <3 x half> @llvm.atan2.v3f16 |
| 25 | +// NO_HALF: call <3 x float> @llvm.atan2.v3f32 |
| 26 | +half3 test_atan2_half3 (half3 p0, half3 p1) { |
| 27 | + return atan2(p0, p1); |
| 28 | +} |
| 29 | + |
| 30 | +// CHECK-LABEL: test_atan2_half4 |
| 31 | +// NATIVE_HALF: call <4 x half> @llvm.atan2.v4f16 |
| 32 | +// NO_HALF: call <4 x float> @llvm.atan2.v4f32 |
| 33 | +half4 test_atan2_half4 (half4 p0, half4 p1) { |
| 34 | + return atan2(p0, p1); |
| 35 | +} |
| 36 | + |
| 37 | +// CHECK-LABEL: test_atan2_float |
| 38 | +// CHECK: call float @llvm.atan2.f32 |
| 39 | +float test_atan2_float (float p0, float p1) { |
| 40 | + return atan2(p0, p1); |
| 41 | +} |
| 42 | + |
| 43 | +// CHECK-LABEL: test_atan2_float2 |
| 44 | +// CHECK: call <2 x float> @llvm.atan2.v2f32 |
| 45 | +float2 test_atan2_float2 (float2 p0, float2 p1) { |
| 46 | + return atan2(p0, p1); |
| 47 | +} |
| 48 | + |
| 49 | +// CHECK-LABEL: test_atan2_float3 |
| 50 | +// CHECK: call <3 x float> @llvm.atan2.v3f32 |
| 51 | +float3 test_atan2_float3 (float3 p0, float3 p1) { |
| 52 | + return atan2(p0, p1); |
| 53 | +} |
| 54 | + |
| 55 | +// CHECK-LABEL: test_atan2_float4 |
| 56 | +// CHECK: call <4 x float> @llvm.atan2.v4f32 |
| 57 | +float4 test_atan2_float4 (float4 p0, float4 p1) { |
| 58 | + return atan2(p0, p1); |
| 59 | +} |
0 commit comments