[HIPIFY] Get rid of setting '--cuda-gpu-arch='

[Reasons]
+ We don't compile kernel code at least for now as HIP kernel syntax is almost equal CUDA's;
+ clang always includes PTX in its binaries, so e.g. a binary compiled with --cuda-gpu-arch= would be forwards-compatible with e.g. sm_35 GPUs.
This commit is contained in:
emankov
2018-12-29 19:48:28 +03:00
parent d70bc5b6c3
commit dec459efca
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ if obj_root is not None:
config.environment['PATH'] = path
hipify_path = obj_root
clang_args = "-v --cuda-gpu-arch=sm_30 --cuda-path='%s'"
clang_args = "-v --cuda-path='%s'"
if sys.platform in ['win32']:
run_test_ext = ".bat"