Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SWIFTsim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Show more breadcrumbs
SWIFT
SWIFTsim
Commits
af271cdd
Commit
af271cdd
authored
9 years ago
by
Matthieu Schaller
Browse files
Options
Downloads
Patches
Plain Diff
Updated default run scripts with the new policy and parameters
parent
8190b0e1
No related branches found
No related tags found
2 merge requests
!136
Master
,
!79
First version of the multiple time-stepping
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/runs.sh
+3
-3
3 additions, 3 deletions
examples/runs.sh
examples/runs_mpi_cv.sh
+9
-9
9 additions, 9 deletions
examples/runs_mpi_cv.sh
with
12 additions
and
12 deletions
examples/runs.sh
+
3
−
3
View file @
af271cdd
...
...
@@ -34,19 +34,19 @@ do
# Sod-Shock runs
if
[
!
-e
SodShock_
${
cpu
}
.dump
]
then
./swift
-r
1000
-t
$cpu
-f
SodShock/sodShock.hdf5
-m
0.01
-w
5000
-
d
1e-4
>
SodShock_fixed_
${
cpu
}
.dump
./swift
-t
$cpu
-f
SodShock/sodShock.hdf5
-m
0.01
-w
5000
-
c
1.
-d
1e-7
-e
0.01
>
SodShock_fixed_
${
cpu
}
.dump
fi
# Sedov blast
if
[
!
-e
SedovBlast_
${
cpu
}
.dump
]
then
./swift
-r
4096
-t
$cpu
-f
SedovBlast/sedov.hdf5
-m
0.02
-w
5000
-d
5
e-
5
>
SedovBlast_fixed_
${
cpu
}
.dump
./swift
-t
$cpu
-f
SedovBlast/sedov.hdf5
-m
0.02
-w
5000
-c
1.
-d
1
e-
7
-e
0.01
>
SedovBlast_fixed_
${
cpu
}
.dump
fi
# Cosmological volume
if
[
!
-e
CosmoVolume_
${
cpu
}
.dump
]
then
./swift
-r
256
-t
$cpu
-f
CosmoVolume/cosmoVolume.hdf5
-m
0.6
-w
5000
-
d
1e-8
>
CosmoVolume_fixed_
${
cpu
}
.dump
./swift
-t
$cpu
-f
CosmoVolume/cosmoVolume.hdf5
-m
0.6
-w
5000
-
c
1.
-d
1e-7
-e
0.01
>
CosmoVolume_fixed_
${
cpu
}
.dump
fi
done
...
...
This diff is collapsed.
Click to expand it.
examples/runs_mpi_cv.sh
+
9
−
9
View file @
af271cdd
#!/bin/bash
# Set the number of runs
RUNS
=
100
FINALTIME
=
1.
# Cores per node
CPN
=
12
...
...
@@ -23,43 +23,43 @@ for cpu in $(seq 1 $CPN)
do
if
[
!
-e
${
PREFIX
}
_
${
QUEUE
}
_1x
${
cpu
}
.dump
]
then
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_1x
${
cpu
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-n
1
-R
"span[ptile=1]"
./swift
_fixdt
-
r
$
RUNS
-t
$cpu
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
8
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_1x
${
cpu
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-n
1
-R
"span[ptile=1]"
./swift
-
c
$
FINALTIME
-t
$cpu
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
7
-e
0.01
fi
done
# Multi-node runs
if
[
!
-e
${
PREFIX
}
_
${
QUEUE
}
_2x
${
cpu
}
.dump
]
then
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_2x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
2
-R
"span[ptile=1]"
mpirun
-np
2 ./swift_
fixdt_
mpi
-
r
$
RUNS
-t
$CPN
-g
"2 1 1"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
8
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_2x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
2
-R
"span[ptile=1]"
mpirun
-np
2 ./swift_mpi
-
c
$
FINALTIME
-t
$CPN
-g
"2 1 1"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
7
-e
0.01
fi
if
[
!
-e
${
PREFIX
}
_
${
QUEUE
}
_4x
${
cpu
}
.dump
]
then
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_4x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
4
-R
"span[ptile=1]"
mpirun
-np
4 ./swift_
fixdt_
mpi
-
r
$
RUNS
-t
$CPN
-g
"2 2 1"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
8
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_4x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
4
-R
"span[ptile=1]"
mpirun
-np
4 ./swift_mpi
-
c
$
FINALTIME
-t
$CPN
-g
"2 2 1"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
7
-e
0.01
fi
if
[
!
-e
${
PREFIX
}
_
${
QUEUE
}
_8x
${
cpu
}
.dump
]
then
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_8x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
8
-R
"span[ptile=1]"
mpirun
-np
8 ./swift_
fixdt_
mpi
-
r
$
RUNS
-t
$CPN
-g
"2 2 2"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
8
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_8x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
8
-R
"span[ptile=1]"
mpirun
-np
8 ./swift_mpi
-
c
$
FINALTIME
-t
$CPN
-g
"2 2 2"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
7
-e
0.01
fi
if
[
!
-e
${
PREFIX
}
_
${
QUEUE
}
_16x
${
cpu
}
.dump
]
then
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_16x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
16
-R
"span[ptile=1]"
mpirun
-np
16 ./swift_
fixdt_
mpi
-
r
$
RUNS
-t
$CPN
-g
"4 2 2"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
8
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_16x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
16
-R
"span[ptile=1]"
mpirun
-np
16 ./swift_mpi
-
c
$
FINALTIME
-t
$CPN
-g
"4 2 2"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
7
-e
0.01
fi
if
[
!
-e
${
PREFIX
}
_
${
QUEUE
}
_32x
${
cpu
}
.dump
]
then
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_32x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
32
-R
"span[ptile=1]"
mpirun
-np
32 ./swift_
fixdt_
mpi
-
r
$
RUNS
-t
$CPN
-g
"4 4 2"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
8
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_32x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
32
-R
"span[ptile=1]"
mpirun
-np
32 ./swift_mpi
-
c
$
FINALTIME
-t
$CPN
-g
"4 4 2"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
7
-e
0.01
fi
if
[
!
-e
${
PREFIX
}
_
${
QUEUE
}
_64x
${
cpu
}
.dump
]
then
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_64x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
64
-R
"span[ptile=1]"
mpirun
-np
64 ./swift_
fixdt_
mpi
-
r
$
RUNS
-t
$CPN
-g
"4 4 4"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
8
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_64x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
64
-R
"span[ptile=1]"
mpirun
-np
64 ./swift_mpi
-
c
$
FINALTIME
-t
$CPN
-g
"4 4 4"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
7
-e
0.01
fi
if
[
!
-e
${
PREFIX
}
_
${
QUEUE
}
_128x
${
cpu
}
.dump
]
then
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_128x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
128
-R
"span[ptile=1]"
mpirun
-np
128 ./swift_
fixdt_
mpi
-
r
$
RUNS
-t
$CPN
-g
"8 4 4"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
8
bsub
-oo
${
PREFIX
}
_
${
QUEUE
}
_128x
${
CPN
}
.dump
-q
${
QUEUE
}
-P
${
PROJECT
}
-x
-W
02:00
-n
128
-R
"span[ptile=1]"
mpirun
-np
128 ./swift_mpi
-
c
$
FINALTIME
-t
$CPN
-g
"8 4 4"
-f
${
INPUT
}
-m
0.705
-w
6000
-z
300
-d
1e-
7
-e
0.01
fi
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