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
21 changes: 21 additions & 0 deletions .github/workflows/pytorchsim_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -662,3 +662,24 @@ jobs:
-e TORCHSIM_VECTOR_LANE="${{ inputs.vector_lane }}" \
-e TORCHSIM_SPAD_SIZE="${{ inputs.spad_size }}" \
${{ inputs.image_name }} python3 PyTorchSim/tests/test_scheduler.py

test_accuracy:
name: Run test_accuracy
runs-on: self-hosted
steps:
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Run run_cycle.sh
run: |
echo "Running run_cycle.sh"
docker run --rm \
-v /tmp/torchsim-ci/${GITHUB_SHA}:/dump \
-e TORCHSIM_DUMP_PATH=/dump \
-e TORCHSIM_VECTOR_LANE="${{ inputs.vector_lane }}" \
-e TORCHSIM_SPAD_SIZE="${{ inputs.spad_size }}" \
${{ inputs.image_name }} PyTorchSim/experiments/artifact/cycle_validation/run_cycle.sh