Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-codegen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Christian Heinigk
dune-codegen
Commits
c8396f76
Commit
c8396f76
authored
8 years ago
by
Dominic Kempf
Browse files
Options
Downloads
Patches
Plain Diff
Tune sbatch file
parent
90ccdcd7
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
applications/poisson_dg/CMakeLists.txt
+2
-0
2 additions, 0 deletions
applications/poisson_dg/CMakeLists.txt
applications/poisson_dg/donkey.sbatch
+14
-13
14 additions, 13 deletions
applications/poisson_dg/donkey.sbatch
with
16 additions
and
13 deletions
applications/poisson_dg/CMakeLists.txt
+
2
−
0
View file @
c8396f76
...
...
@@ -3,3 +3,5 @@ dune_add_formcompiler_system_test(UFLFILE poisson_dg.ufl
INIFILE poisson_dg.mini
NO_TESTS
)
dune_symlink_to_source_files
(
FILES donkey.sbatch
)
This diff is collapsed.
Click to expand it.
applications/poisson_dg/donkey.sbatch
+
14
−
13
View file @
c8396f76
...
...
@@ -2,37 +2,38 @@
# Load modules
ml gcc/6.2
ml intelmpi
ml openblas
ml metis
ml suitesparse
# Set a name for the job
#
sbatch
-J poisson_dg
#
SBATCH
-J poisson_dg
# Number of processes
#
sbatch
-n 16
#
SBATCH
-n 16
# Choose the SLURM partition (sinfo for overview)
#
sbatch
-p haswell16c
#
SBATCH
-p haswell16c
# Each process needs two PUs: circumvent hyperthreading
#
sbatch
-c 2
#
SBATCH
-c 2
# Pin processes to cores
# (Possible values: socket, core)
#sbatch
--cpu_bind=
core,
verbose
SRUNOPT
=
"
--cpu_bind=verbose
,core"
# Run the opcount executables
srun ./app_poisson_dg_deg2_opcount app_poisson_dg_deg2_opcount.ini
srun ./app_poisson_dg_deg3_opcount app_poisson_dg_deg3_opcount.ini
srun ./app_poisson_dg_deg4_opcount app_poisson_dg_deg4_opcount.ini
srun ./app_poisson_dg_deg5_opcount app_poisson_dg_deg5_opcount.ini
srun
$SRUNOPT
./app_poisson_dg_deg2_opcount app_poisson_dg_deg2_opcount.ini
srun
$SRUNOPT
./app_poisson_dg_deg3_opcount app_poisson_dg_deg3_opcount.ini
srun
$SRUNOPT
./app_poisson_dg_deg4_opcount app_poisson_dg_deg4_opcount.ini
srun
$SRUNOPT
./app_poisson_dg_deg5_opcount app_poisson_dg_deg5_opcount.ini
# Run the timing executables
COUNT
=
0
while
[
$COUNT
-lt
5
]
;
do
srun ./app_poisson_dg_deg2_nonopcount app_poisson_dg_deg2_nonopcount.ini
srun ./app_poisson_dg_deg3_nonopcount app_poisson_dg_deg3_nonopcount.ini
srun ./app_poisson_dg_deg4_nonopcount app_poisson_dg_deg4_nonopcount.ini
srun ./app_poisson_dg_deg5_nonopcount app_poisson_dg_deg5_nonopcount.ini
srun
$SRUNOPT
./app_poisson_dg_deg2_nonopcount app_poisson_dg_deg2_nonopcount.ini
srun
$SRUNOPT
./app_poisson_dg_deg3_nonopcount app_poisson_dg_deg3_nonopcount.ini
srun
$SRUNOPT
./app_poisson_dg_deg4_nonopcount app_poisson_dg_deg4_nonopcount.ini
srun
$SRUNOPT
./app_poisson_dg_deg5_nonopcount app_poisson_dg_deg5_nonopcount.ini
done
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment