-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from mathias77515/Mathias-dev
Mathias dev
- Loading branch information
Showing
4 changed files
with
31 additions
and
11 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 |
---|---|---|
@@ -1,2 +1 @@ | ||
from .pipeline import * | ||
print('importing pipeline fmm') | ||
from .pipeline import * |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
from .FMM import * | ||
from .CMM import * | ||
from .lib import * | ||
from .running_scripts import * | ||
from .lib import * |
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,20 @@ | ||
#!/bin/bash | ||
|
||
#SBATCH --job-name=FMM | ||
|
||
# we ask for n MPI tasks with N cores each on c nodes | ||
|
||
#SBATCH --partition=htc | ||
#SBATCH --nodes=1 # c | ||
#SBATCH --ntasks-per-node=1 # n | ||
#SBATCH --cpus-per-task=4 # N | ||
#SBATCH --mem=60G | ||
#SBATCH --time=3-00:00:00 | ||
#SBATCH --output=mulitple_jobs_%j.log | ||
#SBATCH --array=1-500 | ||
|
||
export OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK} | ||
|
||
module load mpich | ||
|
||
mpirun -np $SLURM_NTASKS python src/run_fmm.py |