Weslley S. Pereira

Results 122 comments of Weslley S. Pereira

> So Github Actions are not actually using multiple CPU cores? I think it is. #71 enforces mapping by cores, and I think this information (https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources) is precise, i.e., we...

It may be caused by an older CMake. The operator `VERSION_GREATER_EQUAL` was introduced in CMake 3.7 (https://cmake.org/cmake/help/latest/command/if.html#version-greater-equal), and ScaLAPACK only asks for CMake 3.2: https://github.com/Reference-ScaLAPACK/scalapack/blob/5bad7487f496c811192334640ce4d3fc5f88144b/CMakeLists.txt#L1 One possible solution is to...

Hi @GengSS. Could you verify if #65 solves this issue. Thanks!

Hi. What is the content of `OPENBLAS_LIB` ? Could you please try the following: ``` $ export BLAS_LIB="$OPENBLAS_LIB -lpthread" $ export LAPACK_LIB="$OPENBLAS_LIB -lpthread" $ cmake . -D LAPACK_LIBRARIES=$LAPACK_LIB -D BLAS_LIBRARIES=$BLAS_LIB...

I'm sorry. We're missing the double quotes. So: ``` $ cmake . -D LAPACK_LIBRARIES="$LAPACK_LIB" -D BLAS_LIBRARIES="$BLAS_LIB" ``` If it still does not work, I would replace -lpthread by the complete...

Thanks for the attempts. I've come up with a simple solution: ```sh cmake -D USE_OPTIMIZED_LAPACK_BLAS=ON -D BLA_VENDOR=OpenBLAS .. # configure step cmake --build build # build step ```

Hi @westinhuang. I suggest you try to follow https://github.com/NIRALUser/CLAPACK for detailed instructions on how to install CLAPACK. I am closing this issue since it is unrelated to the code in...

Thanks for citing issue #96 ! I talked to Jim Demmel and other people, and they recommended removing those calls as well. Weslley On Sun, Sep 25, 2022 at 10:22...

Hi @atptour2017. Was your issue fixed? Thanks

I can write a PR with @mborgerding's proposal if this is something the Catch2 team would be willing to merge.