Skip to content

fix mlp flops calc #100

fix mlp flops calc

fix mlp flops calc #100

Workflow file for this run

# .github/workflows/tests.yml
name: tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install
- name: Test with pytest
run: poetry run pytest