Skip to content

Commit

Permalink
Switch build to use OpenBLAS instead of reference BLAS/LAPACK
Browse files Browse the repository at this point in the history
  • Loading branch information
hansec committed Mar 6, 2024
1 parent 334923d commit a96c221
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/cd_nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,20 @@ jobs:
$CXX --version
$FC --version
- name: Build external
- name: Build external (Linux)
if: matrix.config.os == 'ubuntu-20.04'
shell: bash
working-directory: libs
run: >
${{ matrix.config.python }} ../src/utilities/build_libs.py --no_dl_progress --nthread=2 --ref_blas
${{ matrix.config.python }} ../src/utilities/build_libs.py --no_dl_progress --nthread=2
--build_umfpack=1 --build_arpack=1 --oblas_dynamic_arch --oft_package
- name: Build external (macOS)
if: matrix.config.os != 'ubuntu-20.04'
shell: bash
working-directory: libs
run: >
${{ matrix.config.python }} ../src/utilities/build_libs.py --no_dl_progress --nthread=2
--build_umfpack=1 --build_arpack=1 --oft_package
- name: Upload library failure log
Expand Down

0 comments on commit a96c221

Please sign in to comment.