Skip to content

Commit f4f655a

Browse files
committed
try getting more information from 'clinfo'
1 parent 193fd23 commit f4f655a

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.ci/ci-images/manylinux_2_28_aarch64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ cmake \
5858
-DENABLE_EXAMPLES=OFF \
5959
-DENABLE_HOST_CPU_DEVICES=ON \
6060
-DENABLE_HWLOC=ON \
61-
-DENABLE_POCLCC=OFF \
62-
-DENABLE_SPIRV=OFF \
61+
-DENABLE_POCLCC=ON \
62+
-DENABLE_SPIRV=ON \
6363
-DENABLE_TESTS=OFF \
6464
-DENABLE_VALGRIND=OFF \
6565
-DINSTALL_OPENCL_HEADERS=OFF \

.ci/ci-images/manylinux_2_28_x86_64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ cmake \
5858
-DENABLE_EXAMPLES=OFF \
5959
-DENABLE_HOST_CPU_DEVICES=ON \
6060
-DENABLE_HWLOC=ON \
61-
-DENABLE_POCLCC=OFF \
62-
-DENABLE_SPIRV=OFF \
61+
-DENABLE_POCLCC=ON \
62+
-DENABLE_SPIRV=ON \
6363
-DENABLE_TESTS=OFF \
6464
-DENABLE_VALGRIND=OFF \
6565
-DINSTALL_OPENCL_HEADERS=OFF \

.ci/setup.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,16 @@ else # Linux
125125
sudo apt-get update
126126
sudo apt-get install --no-install-recommends -y \
127127
pocl-opencl-icd
128-
elif [[ $(uname -m) == "x86_64" ]]; then
128+
else # in manylinux image
129129
sudo yum update -y
130130
sudo yum install -y \
131+
clinfo \
131132
ocl-icd-devel \
132133
opencl-headers \
133134
|| exit 1
134135
fi
136+
echo "--- clinfo: ---"
137+
clinfo || true
135138
fi
136139
if [[ $TASK == "cuda" ]]; then
137140
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections

0 commit comments

Comments
 (0)