Skip to content

Commit 9c99f6e

Browse files
committed
check LLC_HOST_CPU values, try skipping intel driver installation
1 parent 9a58b2e commit 9c99f6e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.ci/setup.sh

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,16 @@ else # Linux
134134
|| exit 1
135135

136136
# install drives allowing the OpenCL version to target host GPUs
137-
if [[ "${ARCH}" == "x86_64" ]]; then
138-
.ci/install-opencl-intel-driver.sh
139-
fi
137+
# if [[ "${ARCH}" == "x86_64" ]]; then
138+
# .ci/install-opencl-intel-driver.sh
139+
# fi
140140
fi
141141
echo "--- clinfo: ---"
142142
clinfo || true
143+
echo "--- llc -mcpu=help ---"
144+
# this shows the possible values for -DLLC_HOST_CPU
145+
# see https://github.com/pocl/pocl/blob/013d2f19f4e8f2e0fd9aedcb70117d6dcc737aa9/doc/sphinx/source/install.rst#L171
146+
llc -mcpu=help
143147
fi
144148
if [[ $TASK == "cuda" ]]; then
145149
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections

0 commit comments

Comments
 (0)