Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

NVIDIA full run

NVIDIA full run #10

Workflow file for this run

name: NVIDIA full run
on:
workflow_dispatch:
inputs:
tag:
description: tag to label this run in DB
required: true
default: "test"
shutdown_cloud_runner:
description: Shutdown aws runner at the end
default: true
type: boolean
test_scripts:
description: Test scripts to execute
required: false
default: '["./mlp.sh", "./cnn.sh", "./llm.sh"]'
type: string
jobs:
print_inputs:
runs-on: Linux
steps:
- name: Print Inputs
run: echo "${{ toJSON(github.event.inputs) }}"
mlp_test:
strategy:
matrix:
type: [
{device: 'cuda', compiler: 'torch'},
{device: 'cuda', compiler: 'dynamo'},
]
test_script: ${{ fromJson(inputs.test_scripts) }}
fail-fast: false
uses: ./.github/workflows/execute-test-script.yml

Check failure on line 36 in .github/workflows/test_nvidia.yml

View workflow run for this annotation

GitHub Actions / NVIDIA full run

Invalid workflow file

The workflow is not valid. In .github/workflows/test_nvidia.yml (Line: 36, Col: 15): Error from called workflow intel-ai/graph-compiler-playground/.github/workflows/execute-test-script.yml@a92d926211e2c686ab7d8dc3247f68241213e5b1 (Line: 143, Col: 19): Unrecognized named-value: 'runner_type'. Located at position 1 within expression: runner_type != 'spr' In .github/workflows/test_nvidia.yml (Line: 36, Col: 15): Error from called workflow intel-ai/graph-compiler-playground/.github/workflows/execute-test-script.yml@a92d926211e2c686ab7d8dc3247f68241213e5b1 (Line: 150, Col: 19): Unrecognized named-value: 'runner_type'. Located at position 1 within expression: runner_type != 'spr'
with:
compiler: ${{ matrix.type.compiler }}
device: ${{ matrix.type.device }}
tag: ${{ inputs.tag }}
runner_type: a100
test_script: ${{ matrix.test_script }}
secrets:
DB_URL: ${{ secrets.DB_URL }}
shutdown:
runs-on: a100
if: inputs.shutdown_cloud_runner
needs: mlp_test
steps:
- name: shutdown
shell: bash -el {0}
run: sudo shutdown -h +2