-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.sh
executable file
·58 lines (54 loc) · 1.37 KB
/
script.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/bash
#SBATCH --job-name=SuperImportantJob
#SBATCH --nodes=1
#SBATCH --partition=gpu
#SBATCH --gres=gpu:1
#SBATCH --time=10:00
module purge
module load gcc
module load cuda
make clean
make
ASSETS="./assets"
echo "THRUST_VERSION"
echo "___S12___"
bin/fglt $ASSETS/s12.mtx
bin/fglt $ASSETS/s12.mtx
bin/fglt $ASSETS/s12.mtx
echo "___AUTO___"
bin/fglt $ASSETS/auto.mtx
bin/fglt $ASSETS/auto.mtx
bin/fglt $ASSETS/auto.mtx
echo "___GB___"
bin/fglt $ASSETS/great-britain_osm.mtx
bin/fglt $ASSETS/great-britain_osm.mtx
bin/fglt $ASSETS/great-britain_osm.mtx
echo "___DL___"
bin/fglt $ASSETS/delaunay_n22.mtx
bin/fglt $ASSETS/delaunay_n22.mtx
bin/fglt $ASSETS/delaunay_n22.mtx
echo "___CYT___"
bin/fglt $ASSETS/com-Youtube.mtx
bin/fglt $ASSETS/com-Youtube.mtx
bin/fglt $ASSETS/com-Youtube.mtx
echo "CUDA_VERSION"
echo "___S12___"
bin/fglt_c $ASSETS/s12.mtx
bin/fglt_c $ASSETS/s12.mtx
bin/fglt_c $ASSETS/s12.mtx
echo "___AUTO___"
bin/fglt_c $ASSETS/auto.mtx
bin/fglt_c $ASSETS/auto.mtx
bin/fglt_c $ASSETS/auto.mtx
echo "___GB___"
bin/fglt_c $ASSETS/great-britain_osm.mtx
bin/fglt_c $ASSETS/great-britain_osm.mtx
bin/fglt_c $ASSETS/great-britain_osm.mtx
echo "___DL___"
bin/fglt_c $ASSETS/delaunay_n22.mtx
bin/fglt_c $ASSETS/delaunay_n22.mtx
bin/fglt_c $ASSETS/delaunay_n22.mtx
echo "___CYT___"
bin/fglt_c $ASSETS/com-Youtube.mtx
bin/fglt_c $ASSETS/com-Youtube.mtx
bin/fglt_c $ASSETS/com-Youtube.mtx