Parallel pytato PyOpenCL array context #2067
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| schedule: | |
| - cron: '17 3 * * 0' | |
| concurrency: | |
| group: ${{ github.head_ref || github.ref_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| crash_reproducer_intel_cl: | |
| name: Crash Reproducer Conda Py3 Intel | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: "Main Script" | |
| run: | | |
| curl -L -O https://raw.githubusercontent.com/illinois-scicomp/machine-shop-maintenance/main/install-intel-icd.sh | |
| sed -i \ | |
| -e '0,/^VERSION=/s|^VERSION=.*|VERSION=oclcpuexp-2025.21.10.0.10_160000_rel|' \ | |
| -e '0,/^RELEASE=/s|^RELEASE=.*|RELEASE="2025-WW45"|' \ | |
| -e '0,/^TBB_VERSION=/s|^TBB_VERSION=.*|TBB_VERSION=2022.2.0|' \ | |
| install-intel-icd.sh | |
| sudo bash ./install-intel-icd.sh | |
| CONDA_ENVIRONMENT=.test-conda-env-py3.yml | |
| echo "- ocl-icd-system" >> "$CONDA_ENVIRONMENT" | |
| sed -i "/pocl/ d" "$CONDA_ENVIRONMENT" | |
| export PYOPENCL_TEST=intel | |
| source /opt/enable-intel-cl.sh | |
| EXTRA_INSTALL="scipy" | |
| curl -L -O https://tiker.net/ci-support-v0 | |
| . ./ci-support-v0 | |
| build_py_project_in_conda_env | |
| export NO_COLOR=1 | |
| python intel_crash_reproducer.py | |
| # vim: sw=4 |