forked from koesie10/gpjson
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path2x-batching.sh
executable file
·30 lines (26 loc) · 1.22 KB
/
2x-batching.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
#!/bin/bash
SUITE=2x-batching
DATASETS="/home/ubuntu/datasets-ext/"
source common.sh
# gpjson
if [ "$noGPU" = false ]
then
OPTIONS="--gpjson.PartitionSize=1073741824"
gpjsonWithOptions $GRAAL_PATH "$OPTIONS" $WARMUP $REPEAT $DATASETS
OPTIONS="--gpjson.PartitionSize=536870912"
gpjsonWithOptions $GRAAL_PATH "$OPTIONS" $WARMUP $REPEAT $DATASETS
OPTIONS="--gpjson.PartitionSize=268435456"
gpjsonWithOptions $GRAAL_PATH "$OPTIONS" $WARMUP $REPEAT $DATASETS
OPTIONS="--gpjson.PartitionSize=134217728"
gpjsonWithOptions $GRAAL_PATH "$OPTIONS" $WARMUP $REPEAT $DATASETS
###
OPTIONS="--gpjson.PartitionSize=1073741824 --gpjson.IndexBuilderGridSize=16384"
gpjsonWithOptions $GRAAL_PATH "$OPTIONS" $WARMUP $REPEAT $DATASETS
OPTIONS="--gpjson.PartitionSize=536870912 --gpjson.IndexBuilderGridSize=8192"
gpjsonWithOptions $GRAAL_PATH "$OPTIONS" $WARMUP $REPEAT $DATASETS
OPTIONS="--gpjson.PartitionSize=268435456 --gpjson.IndexBuilderGridSize=4096"
gpjsonWithOptions $GRAAL_PATH "$OPTIONS" $WARMUP $REPEAT $DATASETS
OPTIONS="--gpjson.PartitionSize=134217728 --gpjson.IndexBuilderGridSize=2048"
gpjsonWithOptions $GRAAL_PATH "$OPTIONS" $WARMUP $REPEAT $DATASETS
fi
echo "Benchmarks done"