Skip to content

Commit

Permalink
Blis configure options addition.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Oct 29, 2024
1 parent 0ed2146 commit 831a725
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions example.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ mpich_version: "4.2.3"
linear_algebra_library: blis # 'atlas', 'openblas', or 'blis'
linear_algebra_blis_version: master # only used for blis
linear_algebra_openblas_version: develop # only used for openblas
blis_configure_options: ""

# Home directory of the user for whom SSH keys will be configured.
ssh_user: pi
Expand Down
2 changes: 1 addition & 1 deletion tasks/algebra_blis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
chdir: "{{ hpl_root }}/tmp/blis-build"
creates: "{{ hpl_root }}/tmp/COMPILE_BLIS_COMPLETE"
loop:
- ./configure --prefix=/opt/blis auto
- ./configure --prefix=/opt/blis {{ blis_configure_options | default('auto') }}
- make -j{{ ansible_processor_vcpus }}
- make install
become: true
Expand Down

0 comments on commit 831a725

Please sign in to comment.