Skip to content

Commit 3e7ad67

Browse files
committed
Create "small problem size" option.
1 parent a908dfc commit 3e7ad67

15 files changed

+39
-15
lines changed

runner/conf/benchmark/savina_concurrency_banking.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: "Bank Transaction"
33
params:
44
accounts: 1000
5-
transactions: 50000
5+
transactions: "${size.banking_transactions}"
66

77
# target specific configuration
88
targets:

runner/conf/benchmark/savina_concurrency_bndbuffer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ params:
44
buffer_size: 50
55
consumers: 40
66
producers: 40
7-
items_per_producer: 1000
7+
items_per_producer: "${size.bndbuffer_items_per_producer}"
88
produce_cost: 25
99
consume_cost: 25
1010

runner/conf/benchmark/savina_concurrency_concsll.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: "Concurrent Sorted Linked List"
33
params:
44
workers: 20
5-
messages_per_worker: 8000
5+
messages_per_worker: "${size.concsll_messages_per_worker}"
66
write_percentage: 10
77
size_percentage: 1
88

runner/conf/benchmark/savina_micro_big.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# @package benchmark
22
name: "Big"
33
params:
4-
messages: 20000
4+
messages: ${size.big_messages}
55
actors: 120
66

77
# target specific configuration

runner/conf/benchmark/savina_micro_pingpong.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# @package benchmark
22
name: "Ping Pong"
33
params:
4-
pings: 1000000
4+
pings: "${size.pingpong_pings}"
55

66
# target specific configuration
77
targets:

runner/conf/benchmark/savina_parallelism_apsp.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# @package benchmark
22
name: "All-Pairs Shortest Path"
33
params:
4-
num_workers: 300
5-
block_size: 50
4+
num_workers: ${size.apsp_num_workers}
5+
block_size: ${size.apsp_block_size}
66
max_edge_weight: 100
77

88
# target specific configuration

runner/conf/benchmark/savina_parallelism_filterbank.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# @package benchmark
22
name: "Filter Bank"
33
params:
4-
columns: 16384
4+
columns: ${size.filterbank_columns}
55
simulations: 34816
66
channels: 8
77

runner/conf/benchmark/savina_parallelism_piprecise.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: "Precise Pi Computation"
33
params:
44
workers: 20
5-
precision: 5000
5+
precision: ${size.piprecise_precision}
66

77
# target specific configuration
88
targets:

runner/conf/benchmark/savina_parallelism_radixsort.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# @package benchmark
22
name: "Radix Sort"
33
params:
4-
data_size: 100000
4+
data_size: ${size.radixsort_data_size}
55
max_value: 1152921504606846976 # 2^60
66
seed: 2048
77

runner/conf/benchmark/savina_parallelism_recmatmul.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: "Recursive Matrix Multiplication"
33
params:
44
workers: 20
5-
data_length: 1024
5+
data_length: ${size.recmatmul_data_length}
66
block_threshold: 16384
77
priorities: 10
88

0 commit comments

Comments
 (0)