Revert "core: workload deprecation (#353)" #989
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: Python Testing | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test_pykokkos: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, ubuntu-22.04-arm] | |
| python-version: ["3.11", "3.12", "3.13"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install --upgrade numpy mypy==1.0.1 cmake pytest pybind11 scikit-build patchelf | |
| - name: Install pykokkos-base | |
| run: | | |
| export CMAKE_BUILD_PARALLEL_LEVEL=2 | |
| python install_base.py install -- -DENABLE_LAYOUTS=ON -DENABLE_MEMORY_TRAITS=OFF -DENABLE_VIEW_RANKS=5 | |
| - name: Install pykokkos | |
| run: | | |
| python -m pip install . | |
| - name: mypy check | |
| run: | | |
| mypy pykokkos | |
| - name: run tests | |
| run: | | |
| python runtests.py |