-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (23 loc) · 727 Bytes
/
Makefile
File metadata and controls
28 lines (23 loc) · 727 Bytes
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
all:
gcc -fopenmp -std=c99 -O3 *.c
testall: test1m test10m test100m testweak
test1m:
./a.out -A 1000000 -B 1000000 -t 2
./a.out -A 1000000 -B 1000000 -t 4
./a.out -A 1000000 -B 1000000 -t 8
./a.out -A 1000000 -B 1000000 -t 16
test10m:
./a.out -A 10000000 -B 10000000 -t 2
./a.out -A 10000000 -B 10000000 -t 4
./a.out -A 10000000 -B 10000000 -t 8
./a.out -A 10000000 -B 10000000 -t 16
test100m:
./a.out -A 100000000 -B 100000000 -t 2
./a.out -A 100000000 -B 100000000 -t 4
./a.out -A 100000000 -B 100000000 -t 8
./a.out -A 100000000 -B 100000000 -t 16
testweak:
./a.out -A 2000000 -B 2000000 -t 2
./a.out -A 4000000 -B 4000000 -t 4
./a.out -A 8000000 -B 8000000 -t 8
./a.out -A 16000000 -B 16000000 -t 16