Skip to content

torch-loader(example): use prefetch and try to run example in linux #2449

torch-loader(example): use prefetch and try to run example in linux

torch-loader(example): use prefetch and try to run example in linux #2449

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: "1"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
examples:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
pyv: ['3.12']
group: ['get_started']
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- name: Set up Python ${{ matrix.pyv }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.pyv }}
- name: Setup uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
cache-suffix: examples-${{ matrix.pyv }}
cache-dependency-glob: pyproject.toml
- name: Run examples
run: |
uv pip install -e ".[examples]" --system
python examples/get_started/torch-loader.py