File tree 1 file changed +23
-8
lines changed
1 file changed +23
-8
lines changed Original file line number Diff line number Diff line change @@ -647,18 +647,33 @@ You will now install and run HPL on your **head node**.
647
647
```
648
648
649
649
You need to carefully edit your ` Make.<TEAM_NAME> ` file, ensuring that you make the following changes:
650
- ``` conf
651
- ARCH = <TEAM_NAME>
650
+ * RHEL, Rocky, Alma, CentOS Stream based systems
651
+ ``` conf
652
+ ARCH = <TEAM_NAME>
652
653
653
- MPdir = /usr/lib64/openmpi
654
+ MPdir = /usr/lib64/openmpi
654
655
655
- LAdir = /usr/lib64/atlas
656
- LAlib = $(LAdir)/libtatlas.so $(LAdir)/libsatlas.so
656
+ LAdir = /usr/lib64/atlas
657
+ LAlib = $(LAdir)/libtatlas.so $(LAdir)/libsatlas.so
657
658
658
- CC = mpicc
659
+ CC = mpicc
660
+
661
+ LINKER = mpicc
662
+ ```
663
+ * Ubuntu based systems
664
+ ```conf
665
+ ARCH = <TEAM_NAME>
666
+
667
+ MPdir = /usr/lib/x86_64-linux-gnu/openmpi
668
+
669
+ LAdir = /usr/lib/x86_64-linux-gnu/atlas/
670
+ LAlib = $(LAdir)/libblas.so $(LAdir)/liblapack.so
671
+
672
+ CC = mpicc
673
+
674
+ LINKER = mpicc
675
+ ```
659
676
660
- LINKER = mpicc
661
- ```
662
677
1. Temporarily edit your `PATH` variable
663
678
664
679
You are almost ready to compile HPL, you will need to modify your path variable in order for your MPI C Compiler `mpicc` to be a recognized binary.
You can’t perform that action at this time.
0 commit comments