Benchmark (Object Tracking) #15
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: Benchmark (Object Tracking) | |
| on: [workflow_dispatch] | |
| jobs: | |
| benchmark_p37: | |
| name: "${{ matrix.os }} + python ${{ matrix.python-version }}" | |
| runs-on: "${{ matrix.os }}" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # os: ["windows-latest", "ubuntu-22.04", "ubuntu-24.04-arm", "macos-13"] | |
| os: ["windows-latest", "ubuntu-22.04", "macos-13"] | |
| python-version: ["3.7"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install lapx & scipy from PyPI | |
| run: | | |
| pip install "lapx>=0.6.0" | |
| pip install scipy | |
| - name: 📊 Run benchmark_tracking.py | |
| run: | | |
| cd benchmarks | |
| python benchmark_tracking.py | |
| benchmark_p38_p314: | |
| name: "${{ matrix.os }} + python ${{ matrix.python-version }}" | |
| runs-on: "${{ matrix.os }}" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["windows-latest", "ubuntu-latest", "ubuntu-24.04-arm", "macos-13", "macos-latest"] | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install lapx & scipy from PyPI | |
| run: | | |
| pip install "lapx>=0.6.0" | |
| pip install scipy | |
| - name: 📊 Run benchmark_tracking.py | |
| run: | | |
| cd benchmarks | |
| python benchmark_tracking.py |