Skip to content

fix: restore E8M0 to BF16 dequantization #67

fix: restore E8M0 to BF16 dequantization

fix: restore E8M0 to BF16 dequantization #67

Workflow file for this run

name: Build Wheel
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install build tooling
run: python -m pip install --upgrade pip build
- name: Build sdist and wheel
run: python -m build
- name: Upload distribution artifacts
uses: actions/upload-artifact@v4
with:
name: humming-kernels-dist-${{ github.sha }}
path: dist/*
if-no-files-found: error
retention-days: 90