Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
OpenCL: Additional changes for 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
kzhuravl committed Sep 18, 2018
1 parent da74f09 commit e567d64
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions opencl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<remote name="RadeonOpenCompute" fetch="https://github.com/RadeonOpenCompute/"/>
<remote name="KhronosGroup" fetch="https://github.com/KhronosGroup/"/>

<default remote="RadeonOpenCompute" revision="master" sync-c="true" sync-j="4"/>
<default remote="RadeonOpenCompute" revision="roc-1.9.x" sync-c="true" sync-j="4"/>

<project path="opencl" name="ROCm-OpenCL-Runtime"/>
<project path="opencl/compiler/driver" name="ROCm-OpenCL-Driver"/>
<project path="opencl/compiler/llvm" name="llvm" revision="amd-common"/>
<project path="opencl/compiler/llvm/tools/clang" name="clang" revision="amd-common"/>
<project path="opencl/compiler/llvm/tools/lld" name="lld" revision="amd-common"/>
<project path="opencl/compiler/llvm" name="llvm"/>
<project path="opencl/compiler/llvm/tools/clang" name="clang"/>
<project path="opencl/compiler/llvm/tools/lld" name="lld"/>
<project path="opencl/library/amdgcn" name="ROCm-Device-Libs"/>

<project path="opencl/api/opencl/khronos/icd" name="OpenCL-ICD-Loader" remote="KhronosGroup"/>
<project path="opencl/api/opencl/khronos/icd" name="OpenCL-ICD-Loader" remote="KhronosGroup" revision="b342ff7b7f70a4b3f2cfc53215af8fa20adc3d86"/>
</manifest>
4 changes: 2 additions & 2 deletions runtime/device/rocm/rocschedcl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ namespace roc {

const char* SchedulerSourceCode = SCHEDULER_KERNEL(
\n
extern void __amd_scheduler_rocm(__global void*);
extern void __amd_scheduler(__global void*);
\n
__kernel void scheduler(__global void* params) {
__amd_scheduler_rocm(params);
__amd_scheduler(params);
}
\n);

Expand Down

0 comments on commit e567d64

Please sign in to comment.