Skip to content

Commit

Permalink
Reenable LLVM in CI pipleline (#22)
Browse files Browse the repository at this point in the history
* Pin BLAS++/LAPACK++ w/ OpenMP fixes

* [CI] Reenable LLVM in GH Actions pipeline
  • Loading branch information
wavefunction91 authored Jun 14, 2023
1 parent 0988eca commit c103c74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test_compiler_zoo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
image: dbwy/chemistry
strategy:
matrix:
compiler: [ {suite: gnu, version: 12} ]
compiler: [ {suite: gnu, version: 12}, {suite: llvm, version: 14} ]
openmp_flag: [ON, OFF]
mpi_flag: [ON, OFF]
exclude:
Expand Down
3 changes: 2 additions & 1 deletion src/lobpcgxx/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ if(NOT lapackpp_FOUND )
include( FetchContent )
FetchContent_Declare( blaspp
GIT_REPOSITORY https://github.com/icl-utk-edu/blaspp.git
GIT_TAG 01b5678bb764755254e907e6c56d4054b0ebabc1
GIT_TAG 13622021629f5fd27591bb7da60bae5b19561f01
)
FetchContent_Declare( lapackpp
GIT_REPOSITORY https://github.com/icl-utk-edu/lapackpp.git
GIT_TAG 5bc9c85201ace48213df5ac7d1ef026c9668dfbd
)

FetchContent_MakeAvailable( blaspp )
Expand Down

0 comments on commit c103c74

Please sign in to comment.