Merge pull request #844 from emankov/master

[HIPIFY][tests] CUDA 7.0 is also supported

[ROCm/clr commit: 9145eb9e95]
이 커밋은 다음에 포함됨:
Evgeny Mankov
2019-01-04 01:34:14 +03:00
커밋한 사람 GitHub
3개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
+1 -1
파일 보기
@@ -34,7 +34,7 @@
`hipify-clang` requires:
1. LLVM+CLANG of at least version 3.8.0, latest stable and recommended release: 6.0.1 (linux and windows).
2. CUDA at least version 7.5, latest supported release is 9.0.
2. CUDA at least version 7.0, latest supported version is 9.0.
| **LLVM release version** | **CUDA latest supported version** | **Comments** |
|:------------------------:|:---------------------------------:|:------------:|
+2
파일 보기
@@ -15,6 +15,8 @@ print("CUDA " + config.cuda_version + " will be used for testing.")
config.excludes = ['cmdparser.hpp']
if config.cuda_version_major == 7 and config.cuda_version_minor == 0:
config.excludes.append('headers_test_09.cu')
if config.cuda_version_major < 8:
config.excludes.append('cuSPARSE_02.cu')
if config.cuda_version_major < 9:
+1
파일 보기
@@ -6,6 +6,7 @@ config.obj_root = "@CMAKE_CURRENT_BINARY_DIR@"
config.cuda_root = "@CUDA_TOOLKIT_ROOT_DIR@"
config.cuda_dnn_root = "@CUDA_DNN_ROOT_DIR@"
config.cuda_version_major = int("@CUDA_VERSION_MAJOR@")
config.cuda_version_minor = int("@CUDA_VERSION_MINOR@")
config.cuda_version = "@CUDA_VERSION@"
if sys.platform in ['win32']:
config.cuda_sdk_root = "@CUDA_SDK_ROOT_DIR@"