-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing information in README / getting this to run following instructions #3
Comments
Ah, that could be from the fortran compiler not working:
I installed |
I had to install |
Now I'm running into:
The file seems to be there...
And I can confirm I compiled with |
I am not very familiar with blis, but in general, I will use LD_LIBRARY_PATH to guide the searching of .so, especially when developing applications. export LD_LIBRARY_PATH=/opt/MyBlisDir/lib/altramax;$LD_LIBRARY_PATH |
I have not used Fortran since I was in college, and have not tried compiling HPL. Maybe @kokrysa knows more about the MPL stuff, as it related to AI? |
@geerlingguy . Thanks for the recommendations. As for the problem with blis, try :
One way to check if all the libraries that the binary needs are loaded is to do a ldd. For eg.
As seen from the above snippet. It did not find "libblis.so.4" , which I believe is the issue that you are facing.
you should see something like this.
Hope this helps. |
@rbapat-ampere - Indeed that was it! I am getting 985 Gflops now at 270W power consumption. |
One thing I had to dig to find is running
sudo ldconfig
prior to the step "Ensure successful installation of openmpi by executing the following commands." in the README.Edit: I also had to run
sudo apt install -y gfortran
before compiling MPI. Maybe we could consider just throwing in instructions assuming default paths? E.g.wget [mpi download URL]
, then./configure
,make -j 4 all
, thenmake install
, thensudo ldconfig
?After that, when trying to make HPL with the provided Makefile, I got the error:
The text was updated successfully, but these errors were encountered: