Skip to content

feat(example): Add Back2Back GEMM example. (#23) #77

feat(example): Add Back2Back GEMM example. (#23)

feat(example): Add Back2Back GEMM example. (#23) #77

Workflow file for this run

name: Run Test CI
on: [push, pull_request]
jobs:
examples:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust-toolchain: [stable]
steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust-toolchain }}
components: rust-src
override: true
- name: Check all tests
run: make test