Feature distance metrics #241
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: Compile and run tests on AMD GPUs | |
| on: pull_request | |
| jobs: | |
| run-tests: | |
| strategy: | |
| matrix: | |
| runner: | |
| - cms-patatrack-mi300x | |
| - cms-patatrack-w7900 | |
| runs-on: ${{ matrix.runner }} | |
| container: registry.cern.ch/ngt/lxplus-like:9 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Compile and run benchmark | |
| working-directory: ${{ github.workspace }}/tests | |
| run: | | |
| cmake -B build -DCMAKE_BUILD_TYPE=Release | |
| cmake --build build --parallel | |
| ctest --test-dir build/hip --output-on-failure |