|
- Timestamp:
-
Dec 4, 2018, 7:36:06 PM (6 years ago)
- Author:
-
gallmei
- Comment:
-
cosmetics
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v14
|
v15
|
|
7 | 7 | |
8 | 8 | You may compile your code via |
9 | | make [VAR=val | ...] |
| 9 | {{{ |
| 10 | make [VAR=val | ...] |
| 11 | }}} |
10 | 12 | with VAR = ... |
11 | 13 | |
12 | 14 | * FORT: |
13 | 15 | * FORT = ifort,gfortran,... |
14 | | * FORT = /path/to/intel/compiler/ifort |
| 16 | * FORT = /path/to/compiler/mycompiler |
15 | 17 | |
16 | 18 | * MODE: |
… |
… |
|
72 | 74 | 3) In order to get the most optimized code, you may use e.g. |
73 | 75 | {{{ |
74 | | make MODE=lto ARGS="-fopenmp -march=native" |
| 76 | make FORT=gfortran MODE=lto ARGS="-march=native" |
| 77 | }}} |
| 78 | {{{ |
| 79 | make FORT=ifort MODE=opt3 ARGS="-xHost" |
75 | 80 | }}} |
76 | 81 | |
|