-
Notifications
You must be signed in to change notification settings - Fork 0
/
_bench.bat
93 lines (86 loc) · 4.39 KB
/
_bench.bat
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@echo off
g++ src/main_gerador.cpp -o gerador.exe -std=c++11
g++ src/main_cpu.cpp -o cpu.exe -std=c++11
g++ src/main_omp.cpp -fopenmp -o omp.exe -std=c++11
nvcc src/main_cuda.cu -o cuda.exe -std=c++11
gerador.exe 2 imgs/moedas_2.pbm
gerador.exe 3 imgs/moedas_3.pbm
gerador.exe 4 imgs/moedas_4.pbm
gerador.exe 5 imgs/moedas_5.pbm
gerador.exe 6 imgs/moedas_6.pbm
gerador.exe 7 imgs/moedas_7.pbm
gerador.exe 8 imgs/moedas_8.pbm
gerador.exe 9 imgs/moedas_9.pbm
gerador.exe 10 imgs/moedas_10.pbm
gerador.exe 11 imgs/moedas_11.pbm
gerador.exe 12 imgs/moedas_12.pbm
gerador.exe 13 imgs/moedas_13.pbm
gerador.exe 14 imgs/moedas_14.pbm
gerador.exe 15 imgs/moedas_15.pbm
gerador.exe 16 imgs/moedas_16.pbm
gerador.exe 17 imgs/moedas_17.pbm
gerador.exe 18 imgs/moedas_18.pbm
gerador.exe 19 imgs/moedas_19.pbm
gerador.exe 20 imgs/moedas_20.pbm
echo CPU
cpu.exe imgs/moedas_2.pbm imgs/moedas_2_saida_cpu.pbm -bench
cpu.exe imgs/moedas_3.pbm imgs/moedas_3_saida_cpu.pbm -bench
cpu.exe imgs/moedas_4.pbm imgs/moedas_4_saida_cpu.pbm -bench
cpu.exe imgs/moedas_5.pbm imgs/moedas_5_saida_cpu.pbm -bench
cpu.exe imgs/moedas_6.pbm imgs/moedas_6_saida_cpu.pbm -bench
cpu.exe imgs/moedas_7.pbm imgs/moedas_7_saida_cpu.pbm -bench
cpu.exe imgs/moedas_8.pbm imgs/moedas_8_saida_cpu.pbm -bench
cpu.exe imgs/moedas_9.pbm imgs/moedas_9_saida_cpu.pbm -bench
cpu.exe imgs/moedas_10.pbm imgs/moedas_10_saida_cpu.pbm -bench
cpu.exe imgs/moedas_11.pbm imgs/moedas_11_saida_cpu.pbm -bench
cpu.exe imgs/moedas_12.pbm imgs/moedas_12_saida_cpu.pbm -bench
cpu.exe imgs/moedas_13.pbm imgs/moedas_13_saida_cpu.pbm -bench
cpu.exe imgs/moedas_14.pbm imgs/moedas_14_saida_cpu.pbm -bench
cpu.exe imgs/moedas_15.pbm imgs/moedas_15_saida_cpu.pbm -bench
cpu.exe imgs/moedas_16.pbm imgs/moedas_16_saida_cpu.pbm -bench
cpu.exe imgs/moedas_17.pbm imgs/moedas_17_saida_cpu.pbm -bench
cpu.exe imgs/moedas_18.pbm imgs/moedas_18_saida_cpu.pbm -bench
cpu.exe imgs/moedas_19.pbm imgs/moedas_19_saida_cpu.pbm -bench
cpu.exe imgs/moedas_20.pbm imgs/moedas_20_saida_cpu.pbm -bench
echo.
echo OMP
omp.exe imgs/moedas_2.pbm imgs/moedas_2_saida_omp.pbm -bench
omp.exe imgs/moedas_3.pbm imgs/moedas_3_saida_omp.pbm -bench
omp.exe imgs/moedas_4.pbm imgs/moedas_4_saida_omp.pbm -bench
omp.exe imgs/moedas_5.pbm imgs/moedas_5_saida_omp.pbm -bench
omp.exe imgs/moedas_6.pbm imgs/moedas_6_saida_omp.pbm -bench
omp.exe imgs/moedas_7.pbm imgs/moedas_7_saida_omp.pbm -bench
omp.exe imgs/moedas_8.pbm imgs/moedas_8_saida_omp.pbm -bench
omp.exe imgs/moedas_9.pbm imgs/moedas_9_saida_omp.pbm -bench
omp.exe imgs/moedas_10.pbm imgs/moedas_10_saida_omp.pbm -bench
omp.exe imgs/moedas_11.pbm imgs/moedas_11_saida_omp.pbm -bench
omp.exe imgs/moedas_12.pbm imgs/moedas_12_saida_omp.pbm -bench
omp.exe imgs/moedas_13.pbm imgs/moedas_13_saida_omp.pbm -bench
omp.exe imgs/moedas_14.pbm imgs/moedas_14_saida_omp.pbm -bench
omp.exe imgs/moedas_15.pbm imgs/moedas_15_saida_omp.pbm -bench
omp.exe imgs/moedas_16.pbm imgs/moedas_16_saida_omp.pbm -bench
omp.exe imgs/moedas_17.pbm imgs/moedas_17_saida_omp.pbm -bench
omp.exe imgs/moedas_18.pbm imgs/moedas_18_saida_omp.pbm -bench
omp.exe imgs/moedas_19.pbm imgs/moedas_19_saida_omp.pbm -bench
omp.exe imgs/moedas_20.pbm imgs/moedas_20_saida_omp.pbm -bench
echo.
echo CUDA
./cuda.exe imgs/moedas_2.pbm imgs/moedas_2_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_3.pbm imgs/moedas_3_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_4.pbm imgs/moedas_4_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_5.pbm imgs/moedas_5_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_6.pbm imgs/moedas_6_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_7.pbm imgs/moedas_7_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_8.pbm imgs/moedas_8_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_9.pbm imgs/moedas_9_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_10.pbm imgs/moedas_10_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_11.pbm imgs/moedas_11_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_12.pbm imgs/moedas_12_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_13.pbm imgs/moedas_13_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_14.pbm imgs/moedas_14_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_15.pbm imgs/moedas_15_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_16.pbm imgs/moedas_16_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_17.pbm imgs/moedas_17_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_18.pbm imgs/moedas_18_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_19.pbm imgs/moedas_19_saida_cuda.pbm -bench
./cuda.exe imgs/moedas_20.pbm imgs/moedas_20_saida_cuda.pbm -bench