feat!: store precomputed tree for idt_recursive algorithm
#72
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"] | |
| tags: | |
| - v* | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| main: | |
| name: Run ADRT Tests | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| security-events: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| cache: "pip" | |
| - uses: psf/black@25.1.0 | |
| - name: requirements | |
| run: pip install numpy==1.26.4 pillow==11.2.1 | |
| - name: test | |
| run: | | |
| python -m adrtlib.demo --test | |
| python -m adrtlib.demo --test --width 75 --height 76 | |
| python -m adrtlib.demo --test --width 76 --height 75 | |
| python -m adrtlib.demo --test --width 1 --height 1 |