Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,15 +263,15 @@ jobs:
run: ccache -s || true

- name: Test system tests
timeout-minutes: 15
timeout-minutes: 20
# tests/st/codegen is device-free and runs in the separate CPU
# codegen-tests job (--codegen-only). On-board execution tests
# (incl. the paged-attention pipelines) live under tests/st/runtime.
# test_torch_codegen_paged_attention is passed explicitly so it still
# runs here despite the tests/st/codegen ignore: its numeric golden
# compare is unstable on the CPU container's torch/BLAS build (see the
# codegen-tests job), so it needs this environment.
run: pytest tests/st tests/st/codegen/torch/test_torch_codegen_paged_attention.py -v --device="$DEVICE_RANGE" --precompile-workers=128 --pto-isa-commit=${{ needs.toolchain.outputs.pto_isa_commit }} --ignore=tests/st/distributed --ignore=tests/st/codegen
run: pytest tests/st tests/st/codegen/torch/test_torch_codegen_paged_attention.py -v --device="$DEVICE_RANGE" --precompile-workers=64 --pto-isa-commit=${{ needs.toolchain.outputs.pto_isa_commit }} --ignore=tests/st/distributed --ignore=tests/st/codegen

- name: Test multi-orch L2 (isolated pytest invocation)
# A ``Worker(level=2)`` device session currently leaves runtime
Expand Down
Loading