From 0c76b4dde92f1298b30e8cc58d7fe12d0bced846 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Sun, 25 Jun 2023 21:33:54 -0500 Subject: [PATCH] Gitlab CI: switch 'pthread' pocl device to 'cpu' --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 42ffcd2..23e3a02 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ Python 3 POCL: script: | - export PYOPENCL_TEST=portable:pthread + export PYOPENCL_TEST=portable:cpu export EXTRA_INSTALL="jax[cpu]" curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh . ./build-and-test-py-project.sh @@ -52,7 +52,7 @@ Python 3 POCL Nvidia Titan V: Python 3 POCL Examples: script: - test -n "$SKIP_EXAMPLES" && exit - - export PYOPENCL_TEST=portable:pthread + - export PYOPENCL_TEST=portable:cpu - curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-py-project-and-run-examples.sh - ". ./build-py-project-and-run-examples.sh" tags: -- GitLab