[feature][refactor] Better Metrics and Trackers #39
Workflow file for this run
This file contains 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: CLI ROCm OnnxRuntime Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, reopened, synchronize] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_image_and_run_cli_rocm_onnxruntime_tests: | |
runs-on: amd-gpu | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Check if image exists | |
id: check_image | |
run: | | |
if [[ "$(docker images -q opt-bench-rocm-ort:latest 2> /dev/null)" == "" ]]; then | |
echo "::set-output name=exists::false" | |
else | |
echo "::set-output name=exists::true" | |
fi | |
- name: Build image if image does not exist | |
if: steps.check_image.outputs.exists == 'false' | |
run: docker build | |
--file docker/rocm-ort.dockerfile | |
--build-arg USER_ID=$(id -u) | |
--build-arg GROUP_ID=$(id -g) | |
--tag opt-bench-rocm-ort:latest | |
. | |
- name: Run tests | |
run: docker run | |
--rm | |
--pid host | |
--shm-size 64G | |
--env USE_ROCM="1" | |
--volume $(pwd):/workspace/optimum-benchmark | |
--workdir /workspace/optimum-benchmark | |
--device /dev/kfd | |
--device /dev/dri/renderD128 | |
--device /dev/dri/renderD129 | |
--entrypoint /bin/bash | |
opt-bench-rocm-ort:latest | |
-c "pip install -e .[testing,timm,diffusers] && pytest -k 'cli and rocm and onnxruntime' -x" |