[AMDGPU] New gfx940 mfma instructions
[llvm-project.git] / clang / test / CodeGenCUDA / flush-denormals.cu
blobb5abc29dea14b08c113992acdc1d6c64698011e4
1 // RUN: %clang_cc1 -fcuda-is-device \
2 // RUN:   -triple nvptx-nvidia-cuda -emit-llvm -o - %s | \
3 // RUN:   FileCheck -check-prefixes=NOFTZ,PTXNOFTZ %s
5 // RUN: %clang_cc1 -fcuda-is-device -fdenormal-fp-math-f32=ieee \
6 // RUN:   -triple nvptx-nvidia-cuda -emit-llvm -o - %s | \
7 // RUN:   FileCheck -check-prefixes=NOFTZ,PTXNOFTZ %s
9 // RUN: %clang_cc1 -fcuda-is-device -fdenormal-fp-math-f32=preserve-sign \
10 // RUN:   -triple nvptx-nvidia-cuda -emit-llvm -o - %s | \
11 // RUN:   FileCheck -check-prefixes=FTZ,PTXFTZ %s
13 // RUN: %clang_cc1 -fcuda-is-device -x hip \
14 // RUN:   -triple amdgcn-amd-amdhsa -target-cpu gfx900 -emit-llvm -o - %s | \
15 // RUN:   FileCheck -check-prefix=NOFTZ %s
17 // RUN: %clang_cc1 -fcuda-is-device -x hip \
18 // RUN:   -triple amdgcn-amd-amdhsa -target-cpu gfx900 -fdenormal-fp-math-f32=ieee -emit-llvm -o - %s | \
19 // RUN:   FileCheck -check-prefix=NOFTZ %s
21 // RUN: %clang_cc1 -fcuda-is-device -x hip -fdenormal-fp-math-f32=preserve-sign \
22 // RUN:   -triple amdgcn-amd-amdhsa -target-cpu gfx900 -emit-llvm -o - %s | \
23 // RUN:   FileCheck -check-prefix=FTZ %s
25 #include "Inputs/cuda.h"
27 // Checks that device function calls get emitted with the "denormal-fp-math-f32"
28 // attribute set when we compile CUDA device code with
29 // -fdenormal-fp-math-f32. Further, check that we reflect the presence or
30 // absence of -fgpu-flush-denormals-to-zero in a module flag.
32 // AMDGCN targets always have f64/f16 denormals enabled.
34 // AMDGCN targets without fast FMAF (e.g. gfx803) always have f32 denormal
35 // flushing by default.
37 // For AMDGCN target with fast FMAF (e.g. gfx900), it has ieee denormals by
38 // default and preserve-sign when there with the option
39 // -fgpu-flush-denormals-to-zero.
41 // CHECK-LABEL: define void @foo() #0
42 extern "C" __device__ void foo() {}
44 // FTZ: attributes #0 = {{.*}} "denormal-fp-math-f32"="preserve-sign,preserve-sign"
45 // NOFTZ-NOT: "denormal-fp-math-f32"
47 // PTXFTZ:!llvm.module.flags = !{{{.*}}[[MODFLAG:![0-9]+]]}
48 // PTXFTZ:[[MODFLAG]] = !{i32 4, !"nvvm-reflect-ftz", i32 1}
50 // PTXNOFTZ:!llvm.module.flags = !{{{.*}}[[MODFLAG:![0-9]+]]}
51 // PTXNOFTZ:[[MODFLAG]] = !{i32 4, !"nvvm-reflect-ftz", i32 0}