adding 8bit dequantization kernel for asym fine-grained block quantization in zero-inference #5172
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: python | |
on: | |
pull_request: | |
branches: | |
'**' | |
paths-ignore: | |
- 'docs/**' | |
- 'blogs/**' | |
merge_group: | |
branches: [ master ] | |
schedule: | |
- cron: "0 0 * * *" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
version-check: | |
strategy: | |
matrix: | |
pyVersion: ["3.6", "3.7", "3.8", "3.9", "3.10"] | |
fail-fast: false | |
runs-on: ubuntu-20.04 | |
container: | |
image: deepspeed/gh-builder:py${{ matrix.pyVersion }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: environment | |
run: | | |
which python | |
python --version | |
- name: Install deepspeed | |
run: | | |
pip3 install . | |
- name: DS Report | |
run: | | |
ds_report |