Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
HPC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alexandru Dura
HPC
Commits
3ea34f70
Commit
3ea34f70
authored
Feb 09, 2020
by
Kurs Kurs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add the results
parent
ae90e701
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
118 additions
and
0 deletions
+118
-0
exercise_03/triang/results_10_20.csv
exercise_03/triang/results_10_20.csv
+21
-0
exercise_03/triang/results_1_2_4.csv
exercise_03/triang/results_1_2_4.csv
+31
-0
exercise_03/triang/submit_10_20.sh
exercise_03/triang/submit_10_20.sh
+33
-0
exercise_03/triang/submit_1_2_4.sh
exercise_03/triang/submit_1_2_4.sh
+33
-0
No files found.
exercise_03/triang/results_10_20.csv
0 → 100644
View file @
3ea34f70
10, 1, dynamic, 18.642796, 3.141800
10, 1, static, 18.981099, 3.141800
20, 1, dynamic, 9.350976, 3.141800
20, 1, static, 9.436264, 3.141800
10, 10, dynamic, 18.558584, 3.141800
10, 10, static, 19.122159, 3.141800
20, 10, dynamic, 9.356983, 3.141800
20, 10, static, 9.614430, 3.141800
10, 100, dynamic, 18.526402, 3.141800
10, 100, static, 19.468754, 3.141800
20, 100, dynamic, 9.363574, 3.141800
20, 100, static, 9.807774, 3.141800
10, 1000, dynamic, 18.568154, 3.141800
10, 1000, static, 22.837756, 3.141800
20, 1000, dynamic, 9.608996, 3.141800
20, 1000, static, 13.810597, 3.141800
10, 2000, dynamic, 19.114211, 3.141800
10, 2000, static, 27.741569, 3.141800
20, 2000, dynamic, 19.206168, 3.141800
20, 2000, static, 19.636066, 3.141800
exercise_03/triang/results_1_2_4.csv
0 → 100644
View file @
3ea34f70
1, 1, dynamic, 160.077499, 3.141800
1, 1, static, 159.893218, 3.141800
2, 1, dynamic, 80.156274, 3.141800
2, 1, static, 80.245293, 3.141800
4, 1, dynamic, 41.283492, 3.141800
4, 1, static, 41.664897, 3.141800
1, 10, dynamic, 159.991280, 3.141800
1, 10, static, 159.909910, 3.141800
2, 10, dynamic, 80.173158, 3.141800
2, 10, static, 80.202523, 3.141800
4, 10, dynamic, 40.603408, 3.141800
4, 10, static, 41.447171, 3.141800
1, 100, dynamic, 159.838884, 3.141800
1, 100, static, 159.958899, 3.141800
2, 100, dynamic, 80.133707, 3.141800
2, 100, static, 80.396156, 3.141800
4, 100, dynamic, 40.790357, 3.141800
4, 100, static, 41.699996, 3.141800
1, 1000, dynamic, 160.037928, 3.141800
1, 1000, static, 160.342499, 3.141800
2, 1000, dynamic, 80.228478, 3.141800
2, 1000, static, 82.192456, 3.141800
4, 1000, dynamic, 40.761092, 3.141800
4, 1000, static, 48.158951, 3.141800
1, 2000, dynamic, 160.014725, 3.141800
1, 2000, static, 159.986392, 3.141800
2, 2000, dynamic, 80.118471, 3.141800
2, 2000, static, 84.044418, 3.141800
4, 2000, dynamic, 41.404894, 3.141800
4, 2000, static, 46.143630, 3.141800
exercise_03/triang/submit_10_20.sh
0 → 100755
View file @
3ea34f70
#!/bin/bash
#SBATCH -n 20
#SBATCH -N 1 # force all cores on one node
#SBATCH -t 00:20:00
#SBATCH -J series
#SBATCH -o series_%j.out
#SBATCH -e series_%j.err
#SBATCH -A computehpc
cat
$0
# put the script in the output file
module purge
module load GCC/8.3.0
module list
ARGS
=
$@
N_THREADS
=
"10 20"
CHUNK_SIZES
=
"1 10 100 1000 2000"
echo
""
>
results_10_20.csv
for
CS
in
$CHUNK_SIZES
do
for
NT
in
$N_THREADS
do
export
OMP_NUM_THREADS
=
$NT
./triang.dyn.run
$CS
|
tee
-a
results_10_20.csv
./triang.stat.run
$CS
|
tee
-a
results_10_20.csv
done
done
exercise_03/triang/submit_1_2_4.sh
0 → 100755
View file @
3ea34f70
#!/bin/bash
#SBATCH -n 4
#SBATCH -N 1 # force all cores on one node
#SBATCH -t 00:60:00
#SBATCH -J series
#SBATCH -o series_%j.out
#SBATCH -e series_%j.err
#SBATCH -A computehpc
cat
$0
# put the script in the output file
module purge
module load GCC/8.3.0
module list
ARGS
=
$@
N_THREADS
=
"1 2 4"
CHUNK_SIZES
=
"1 10 100 1000 2000"
echo
""
>
results_1_2_4.csv
for
CS
in
$CHUNK_SIZES
do
for
NT
in
$N_THREADS
do
export
OMP_NUM_THREADS
=
$NT
./triang.dyn.run
$CS
|
tee
-a
results_1_2_4.csv
./triang.stat.run
$CS
|
tee
-a
results_1_2_4.csv
done
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment