@@ -174,6 +174,7 @@ jobs:
174174 run : |
175175 . $CONDA/etc/profile.d/conda.sh
176176 conda activate test_dpctl
177+ export SYCL_QUEUE_THREAD_POOL_SIZE=6
177178 python -m pytest -v --pyargs $MODULE_NAME
178179
179180 test_windows :
@@ -291,7 +292,7 @@ jobs:
291292 env :
292293 DPCTL_VERBOSITY : error
293294 run : >-
294- conda activate dpctl_test && python -m pytest -v -s --pyargs ${{ env.MODULE_NAME }}
295+ SET SYCL_QUEUE_THREAD_POOL_SIZE=6 && conda activate dpctl_test && python -m pytest -v -s --pyargs ${{ env.MODULE_NAME }}
295296
296297 upload_linux :
297298 needs : test_linux
@@ -583,6 +584,7 @@ jobs:
583584 # echo "libintelocl.so" | tee /etc/OpenCL/vendors/intel-cpu.icd
584585 python -c "import dpctl; dpctl.lsplatform()"
585586 export ARRAY_API_TESTS_MODULE=dpctl.tensor
587+ export SYCL_QUEUE_THREAD_POOL_SIZE=6
586588 cd /home/runner/work/array-api-tests
587589 pytest --ci --json-report --json-report-file=$FILE array_api_tests/ || true
588590 - name : Set Github environment variables
@@ -602,8 +604,8 @@ jobs:
602604 echo "$MESSAGE" >> $GITHUB_ENV
603605 echo "EOF" >> $GITHUB_ENV
604606 else
605- MESSAGE= "Array API standard conformance tests failed to run for dpctl=$PACKAGE_VERSION."
606- echo "MESSAGE=$MESSAGE" >> $GITHUB_ENV
607+ echo "Array API standard conformance tests failed to run for dpctl=$PACKAGE_VERSION."
608+ exit 1
607609 fi
608610 - name : Post result to PR
609611 uses : mshick/add-pr-comment@v1
0 commit comments