PyTorch convenience features #332
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: "Unit Tests (CUDA)" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| jobs: | |
| UnitTest: | |
| runs-on: [ self-hosted ] | |
| defaults: | |
| run: | |
| shell: bash | |
| timeout-minutes: 60 | |
| strategy: | |
| matrix: | |
| include: | |
| - cuda: cuda12.8 | |
| container: nvcr.io/nvidia/pytorch:25.01-py3 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.cuda }} | |
| cancel-in-progress: true | |
| container: | |
| image: ${{ matrix.container }} | |
| options: --privileged --ipc=host --gpus=all --ulimit memlock=-1:-1 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Dubious ownership exception | |
| run: | | |
| git config --global --add safe.directory /__w/ark/ark | |
| - name: Build | |
| run: | | |
| apt-get update && apt-get install -y lcov | |
| mkdir build && cd build | |
| cmake -DCMAKE_BUILD_TYPE=Debug .. | |
| make -j ut ark_py | |
| - name: Run C++ UT | |
| run: | | |
| cd build | |
| ARK_ROOT=$PWD ctest --stop-on-failure --verbose --schedule-random | |
| lcov --capture --directory . --output-file cpp_coverage.info | |
| lcov --remove cpp_coverage.info \ | |
| '/usr/*' \ | |
| '/tmp/*' \ | |
| '*/build/*' \ | |
| '*/third_party/*' \ | |
| '*/ark/*_test.*' \ | |
| '*/examples/*' \ | |
| '*/python/*' \ | |
| '*/ark/unittest/unittest_utils.cpp' \ | |
| --output-file cpp_coverage.info | |
| lcov --list cpp_coverage.info | |
| - name: Install Python Dependencies | |
| run: | | |
| python3 -m pip install -r requirements.txt | |
| - name: Run Python UT | |
| run: | | |
| cd build | |
| PYTHONPATH=$PWD/python ARK_ROOT=$PWD python3 -m pytest \ | |
| --cov=python/ark \ | |
| --cov-report lcov:py_coverage.info \ | |
| --verbose \ | |
| ../python/unittest/ | |
| - name: Report Coverage | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| run: | | |
| cd build | |
| lcov -a cpp_coverage.info -a py_coverage.info -o coverage.info | |
| bash <(curl -s https://codecov.io/bash) -f coverage.info || echo "Codecov did not collect coverage reports" | |
| - name: Install Python | |
| run: | | |
| python3 -m pip install . | |
| - name: Run Tutorials | |
| run: | | |
| python3 ./examples/tutorial/quickstart_tutorial.py |