Skip to content

[Fix] Zero-init Ascend chunk_scaled_dot_kkt output and add solve_tril… #3

[Fix] Zero-init Ascend chunk_scaled_dot_kkt output and add solve_tril…

[Fix] Zero-init Ascend chunk_scaled_dot_kkt output and add solve_tril… #3

Workflow file for this run

name: lint
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']
steps:
- name: Check out repo
uses: actions/checkout@v7.0.0
- name: Setup python
uses: actions/setup-python@v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: python -m pip install -U pip
- name: Install lint utilities
run: |
python -m pip install pre-commit
pre-commit install-hooks
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v47.0.6
- name: Lint modified files
run: pre-commit run --files ${{ steps.changed-files.outputs.all_changed_files }}