-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
30 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,6 @@ doc/src/*.pre | |
[Dd]ebug/ | ||
[Rr]elease/ | ||
x64/ | ||
build/ | ||
[Bb]in/ | ||
[Oo]bj/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
## Edit your .bashrc file on the mic with at least these settings | ||
|
||
export LD_LIBRARY_PATH=/lib64:${LD_LIBRARY_PATH} | ||
export I_MPI_MIC_PROXY_PATH=/lib64 | ||
export PATH=/bin:$PATH | ||
export I_MPI_MIC=enable | ||
|
||
|
||
|
||
|
||
## copy the executable and the input file to your mic home dir | ||
|
||
scp piccante.exe mic0:~/ | ||
scp inputPiccante.json mic0:~/ | ||
|
||
|
||
|
||
|
||
## run the executable from the mic | ||
|
||
[hpc-200-06-15-mic0]$ mpirun -n N ./piccante.exe | ||
|
||
(where N is the number of mic core you want to use) | ||
|
||
|
||
|
||
|