Skip to content

Commit

Permalink
fix config files
Browse files Browse the repository at this point in the history
  • Loading branch information
Yu-Zhewen committed Mar 5, 2024
1 parent 4f75bdf commit 9e53340
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 9 deletions.
2 changes: 2 additions & 0 deletions examples/optimisers/greedy_partition_throughput.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ allowed_partitions = [
["EltWise", "*"]
]
vertical = false
allowed_single_layer_merge_pre = []
allowed_single_layer_merge_post = []

[annealing]
T = 10.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ allowed_partitions = [
["*", "Gemm"]
]
vertical = false
allowed_single_layer_merge_pre = []
allowed_single_layer_merge_post = []

[annealing]
T = 10.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ allowed_partitions = [
["*", "Gemm"]
]
vertical = false
allowed_single_layer_merge_pre = []
allowed_single_layer_merge_post = []

[annealing]
T = 10.0
Expand Down
2 changes: 2 additions & 0 deletions examples/optimisers/greedy_partition_throughput_resnet.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ allowed_partitions = [
["*", "Gemm"]
]
vertical = false
allowed_single_layer_merge_pre = []
allowed_single_layer_merge_post = []

[annealing]
T = 10.0
Expand Down
2 changes: 2 additions & 0 deletions examples/optimisers/greedy_partition_throughput_yolov3.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ allowed_partitions = [
["Concat", "*"]
]
vertical = true
allowed_single_layer_merge_pre = []
allowed_single_layer_merge_post = []

[annealing]
T = 10.0
Expand Down
18 changes: 9 additions & 9 deletions examples/optimisers/single_partition_throughput.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,27 @@ balance_bram_uram = true

[transforms.fine]
apply_transform = true
probability = 0.25
probability = 0.5
start_complete = false

[transforms.coarse]
apply_transform = true
probability = 0.25
probability = 0.5

[transforms.weights_reloading]
apply_transform = false
probability = 0.25
probability = 0.0
start_max = false

[transforms.partition]
apply_transform = false
probability = 0.25
probability = 0.0
start_complete = false
allowed_type = ["merge"]
allowed_partitions = [
["*", "Conv"],
["*", "Gemm"]
]
allowed_type = []
allowed_partitions = []
vertical = false
allowed_single_layer_merge_pre = []
allowed_single_layer_merge_post = []

[annealing]
T = 10.0
Expand Down

0 comments on commit 9e53340

Please sign in to comment.