Skip to content

Commit bfb3b07

Browse files
committed
feat: update ROCM and use smaller image
Signed-off-by: Chris Jowett <[email protected]>
1 parent e38610e commit bfb3b07

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.github/workflows/image-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
tag-suffix: '-hipblas'
6262
ffmpeg: 'false'
6363
image-type: 'extras'
64-
base-image: "rocm/dev-ubuntu-22.04:6.0-complete"
64+
base-image: "rocm/dev-ubuntu-22.04:6.1"
6565
grpc-base-image: "ubuntu:22.04"
6666
runs-on: 'arc-runner-set'
6767
makeflags: "--jobs=3 --output-sync=target"

.github/workflows/image.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
ffmpeg: 'true'
130130
image-type: 'extras'
131131
aio: "-aio-gpu-hipblas"
132-
base-image: "rocm/dev-ubuntu-22.04:6.0-complete"
132+
base-image: "rocm/dev-ubuntu-22.04:6.1"
133133
grpc-base-image: "ubuntu:22.04"
134134
latest-image: 'latest-gpu-hipblas'
135135
latest-image-aio: 'latest-aio-gpu-hipblas'
@@ -141,7 +141,7 @@ jobs:
141141
tag-suffix: '-hipblas'
142142
ffmpeg: 'false'
143143
image-type: 'extras'
144-
base-image: "rocm/dev-ubuntu-22.04:6.0-complete"
144+
base-image: "rocm/dev-ubuntu-22.04:6.1"
145145
grpc-base-image: "ubuntu:22.04"
146146
runs-on: 'arc-runner-set'
147147
makeflags: "--jobs=3 --output-sync=target"
@@ -218,7 +218,7 @@ jobs:
218218
tag-suffix: '-hipblas-ffmpeg-core'
219219
ffmpeg: 'true'
220220
image-type: 'core'
221-
base-image: "rocm/dev-ubuntu-22.04:6.0-complete"
221+
base-image: "rocm/dev-ubuntu-22.04:6.1"
222222
grpc-base-image: "ubuntu:22.04"
223223
runs-on: 'arc-runner-set'
224224
makeflags: "--jobs=3 --output-sync=target"
@@ -228,7 +228,7 @@ jobs:
228228
tag-suffix: '-hipblas-core'
229229
ffmpeg: 'false'
230230
image-type: 'core'
231-
base-image: "rocm/dev-ubuntu-22.04:6.0-complete"
231+
base-image: "rocm/dev-ubuntu-22.04:6.1"
232232
grpc-base-image: "ubuntu:22.04"
233233
runs-on: 'arc-runner-set'
234234
makeflags: "--jobs=3 --output-sync=target"

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,15 @@ RUN if [ "${BUILD_TYPE}" = "clblas" ]; then \
140140
rm -rf /var/lib/apt/lists/* \
141141
; fi
142142

143+
RUN if [ "${BUILD_TYPE}" = "hipblas" ]; then \
144+
apt-get update && \
145+
apt-get install -y --no-install-recommends \
146+
hipblas-dev \
147+
rocblas-dev && \
148+
apt-get clean && \
149+
rm -rf /var/lib/apt/lists/* \
150+
; fi
151+
143152
###################################
144153
###################################
145154

0 commit comments

Comments
 (0)