Skip to content

Commit d6274ea

Browse files
authored
chore(build): Rename sycl to intel (#5964)
Signed-off-by: Richard Palethorpe <[email protected]>
1 parent 4d90971 commit d6274ea

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
skip-drivers: 'false'
110110
makeflags: "--jobs=4 --output-sync=target"
111111
aio: "-aio-gpu-vulkan"
112-
- build-type: 'sycl'
112+
- build-type: 'intel'
113113
platforms: 'linux/amd64'
114114
tag-latest: 'auto'
115115
base-image: "quay.io/go-skynet/intel-oneapi-base:latest"

Dockerfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,7 @@ RUN if [ "${BUILD_TYPE}" = "hipblas" ] && [ "${SKIP_DRIVERS}" = "false" ]; then
100100
ldconfig \
101101
; fi
102102

103-
RUN expr "${BUILD_TYPE}" : sycl && \
104-
echo "intel" > /run/localai/capability || \
105-
echo "Not Intel"
106-
103+
RUN expr "${BUILD_TYPE}" = intel && echo "intel" > /run/localai/capability || echo "not intel"
107104

108105
# Cuda
109106
ENV PATH=/usr/local/cuda/bin:${PATH}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ docker-image-intel:
342342
--build-arg IMAGE_TYPE=$(IMAGE_TYPE) \
343343
--build-arg GO_TAGS="$(GO_TAGS)" \
344344
--build-arg MAKEFLAGS="$(DOCKER_MAKEFLAGS)" \
345-
--build-arg BUILD_TYPE=sycl -t $(DOCKER_IMAGE) .
345+
--build-arg BUILD_TYPE=intel -t $(DOCKER_IMAGE) .
346346

347347
########################################################
348348
## Backends

0 commit comments

Comments
 (0)