Scale normal-equation regularization by A^*A #203
Workflow file for this run
This file contains hidden or 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: ✨ | |
| on: | |
| push: | |
| branches: ["**"] | |
| pull_request: | |
| branches: [main] | |
| merge_group: | |
| jobs: | |
| style-checks: | |
| name: Rust style checks | |
| runs-on: ubuntu-latest | |
| env: | |
| OPENBLAS_NUM_THREADS: 1 | |
| strategy: | |
| matrix: | |
| feature-flags: [''] | |
| steps: | |
| - name: Set up Rust | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| components: rustfmt,clippy | |
| - name: Set up MPI | |
| uses: mpi4py/setup-mpi@v1 | |
| with: | |
| mpi: mpich | |
| - uses: actions/checkout@v4 | |
| - name: Install system libraries | |
| run: | |
| sudo apt-get install -y libopenblas-dev liblapack-dev libhdf5-dev pkg-config | |
| - name: Rust style checks | |
| run: | | |
| cargo fmt -- --check | |
| cargo clippy --all-targets --all-features --no-deps -- -D warnings |