How to run Blis in parallel #10
Replies: 1 comment 2 replies
-
What you are doing should indeed be working, provided that MPI is successfully found and linked. It's possible that is not happening and so the build is just happening in sequential mode without failing. If you can attach |
Beta Was this translation helpful? Give feedback.
-
Hello!
I want to run the solver in parallel on Mac OS system. I have open-mpi installed. But it looks like sth goes wrong. I'm using the following command to build Blis solver:
Running
./blis pathToLp
gives only non-parallel solver. Okay, but runningmpirun -n 2 blis pathToLp
launch a non-parallel solver 2 times simultaneously and independently. I guess, that is not how Blis was developed to work and sth is wrong.I realized, that the code has an essential flag COIN_HAS_MPI which should be set to true. But I have this flag unset and I do not know how to set in correctly.
Can anybody give me an advice how to run Blis correctly in parallel?
Beta Was this translation helpful? Give feedback.
All reactions