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 #27

Workflow file for this run

name: Run tests on multiple platforms
on:
workflow_dispatch:
jobs:
mlp_test:
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
uses: ./.github/workflows/mlp-test.yml
with:
conda_env: ${{ matrix.type }}
jit: ${{ matrix.jit }}
engine: ${{ matrix.engine }}