[PATCH] D48493: [HIP] Support flush denorms bitcode
Aaron Enye Shi via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jun 27 10:54:51 PDT 2018
ashi1 updated this revision to Diff 153127.
ashi1 added a comment.
Added diff with full context.
https://reviews.llvm.org/D48493
Files:
lib/Driver/ToolChains/HIP.cpp
test/Driver/Inputs/hip_multiple_inputs/dev_lib/irif.amdgcn.bc
test/Driver/Inputs/hip_multiple_inputs/dev_lib/ockl.amdgcn.bc
test/Driver/Inputs/hip_multiple_inputs/dev_lib/oclc_correctly_rounded_sqrt_on.amdgcn.bc
test/Driver/Inputs/hip_multiple_inputs/dev_lib/oclc_daz_opt_off.amdgcn.bc
test/Driver/Inputs/hip_multiple_inputs/dev_lib/oclc_daz_opt_on.amdgcn.bc
test/Driver/Inputs/hip_multiple_inputs/dev_lib/oclc_finite_only_off.amdgcn.bc
test/Driver/Inputs/hip_multiple_inputs/dev_lib/oclc_isa_version_803.amdgcn.bc
test/Driver/Inputs/hip_multiple_inputs/dev_lib/oclc_isa_version_900.amdgcn.bc
test/Driver/Inputs/hip_multiple_inputs/dev_lib/oclc_unsafe_math_off.amdgcn.bc
test/Driver/Inputs/hip_multiple_inputs/dev_lib/ocml.amdgcn.bc
test/Driver/Inputs/hip_multiple_inputs/dev_lib/opencl.amdgcn.bc
test/Driver/hip-toolchain-flush-denorms.hip
Index: test/Driver/hip-toolchain-flush-denorms.hip
===================================================================
--- test/Driver/hip-toolchain-flush-denorms.hip
+++ test/Driver/hip-toolchain-flush-denorms.hip
@@ -0,0 +1,20 @@
+// REQUIRES: clang-driver
+// REQUIRES: x86-registered-target
+// REQUIRES: amdgpu-registered-target
+
+// RUN: %clang -### -target x86_64-linux-gnu \
+// RUN: -x hip --cuda-gpu-arch=gfx803 --cuda-gpu-arch=gfx900 \
+// RUN: --hip-device-lib-path=%S/Inputs/hip_multiple_inputs/dev_lib \
+// RUN: -fcuda-flush-denormals-to-zero \
+// RUN: %S/Inputs/hip_multiple_inputs/b.hip \
+// RUN: 2>&1 | FileCheck %s
+
+
+// CHECK: [[LLVM_LINK:"*.llvm-link"]]
+// CHECK-SAME: {{.*}} "{{.*}}oclc_daz_opt_on.amdgcn.bc"
+// CHECK-SAME: {{.*}} "-o" "{{.*}}-gfx803-linked-{{.*}}bc"
+
+
+// CHECK: [[LLVM_LINK]]
+// CHECK-SAME: {{.*}} "{{.*}}oclc_daz_opt_on.amdgcn.bc"
+// CHECK-SAME: {{.*}} "-o" "{{.*}}-gfx900-linked-{{.*bc}}"
Index: lib/Driver/ToolChains/HIP.cpp
===================================================================
--- lib/Driver/ToolChains/HIP.cpp
+++ lib/Driver/ToolChains/HIP.cpp
@@ -75,16 +75,22 @@
std::string ISAVerBC =
"oclc_isa_version_" + SubArchName.drop_front(3).str() + ".amdgcn.bc";
+ llvm::StringRef FlushDenormalControlBC;
+ if (Args.hasArg(options::OPT_fcuda_flush_denormals_to_zero))
+ FlushDenormalControlBC = "oclc_daz_opt_on.amdgcn.bc";
+ else
+ FlushDenormalControlBC = "oclc_daz_opt_off.amdgcn.bc";
+
BCLibs.append({"opencl.amdgcn.bc",
"ockl.amdgcn.bc", "irif.amdgcn.bc", "ocml.amdgcn.bc",
"oclc_finite_only_off.amdgcn.bc",
- "oclc_daz_opt_off.amdgcn.bc",
+ FlushDenormalControlBC,
"oclc_correctly_rounded_sqrt_on.amdgcn.bc",
"oclc_unsafe_math_off.amdgcn.bc", ISAVerBC});
}
for (auto Lib : BCLibs)
addBCLib(C, Args, CmdArgs, LibraryPaths, Lib);
// Add an intermediate output file.
CmdArgs.push_back("-o");
std::string TmpName =
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D48493.153127.patch
Type: text/x-patch
Size: 2110 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180627/218fbb4b/attachment-0001.bin>
More information about the cfe-commits
mailing list