diff options
author | Artem Belevich <tra@google.com> | 2021-07-19 19:55:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-19 21:55:23 -0500 |
commit | 115cbf381712d4eed05295e2be077ac13b83dc25 (patch) | |
tree | b4f7a0221db718e84a5a59722e02f0b243523787 /lib/compilers/_all.js | |
parent | f3acbc972a267b75647acb4c11e612b7e5d7aee8 (diff) | |
download | compiler-explorer-115cbf381712d4eed05295e2be077ac13b83dc25.tar.gz compiler-explorer-115cbf381712d4eed05295e2be077ac13b83dc25.zip |
Add support for HIP compilation for AMD GPUs. (#2759)
* Added support for HIP compilation for AMD GPUs.
At the moment it only supports stand-alone compilation w/o ROCm SDK.
* Enable barebones HIP compilation.
Clang by itself is good enough to compile simple kernels that do not need ROCm
SDK headers and bitcode libraries.
Closes #2760
Diffstat (limited to 'lib/compilers/_all.js')
-rw-r--r-- | lib/compilers/_all.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compilers/_all.js b/lib/compilers/_all.js index 6fae03367..43b02a121 100644 --- a/lib/compilers/_all.js +++ b/lib/compilers/_all.js @@ -29,6 +29,7 @@ export { NasmCompiler } from './nasm'; export { Cc65Compiler } from './cc65'; export { ClangCompiler } from './clang'; export { ClangCudaCompiler } from './clang'; +export { ClangHipCompiler } from './clang'; export { CleanCompiler } from './clean'; export { CrystalCompiler } from './crystal'; export { DefaultCompiler } from './default'; |