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

SPR full run

SPR full run #9

Workflow file for this run

name: Run tests on multiple platforms
on:
workflow_dispatch:
jobs:
checkout:
runs-on:
- self-hosted
- glados
steps:
- run: |
echo TEST1
pwd
ls -la
- name: Checkout
uses: actions/checkout@v3
- run: |
echo TEST2
pwd
ls -la
install_conda:
runs-on:
- self-hosted
- glados
steps:
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
channels: intel, conda-forge, defaults
use-only-tar-bz2: true
auto-update-conda: true
auto-activate-base: true
mlp_test:
uses: ./.github/workflows/mlp-test.yml
strategy:
matrix:
type: ['cpu', 'ipex', 'mlir']
include:
- types: cpu
jit: Vanilla
engine: CPU
- types: cpu
jit: Dynamo
engine: CPU
- types: cpu
jit: TorchScript
engine: CPU
- types: cpu
jit: TorchScriptOneDNN
engine: CPU
- types: ipex
jit: IPEX-CPU
engine: IPEX
- types: ipex
jit: IPEX-XPU
engine: IPEX
- types: mlir
jit: TorchMLIR
engine: CPU
with:
conda_env: ${{ matrix.type }}
jit: ${{ matrix.jit }}
engine: ${{ matrix.engine }}