Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
Doc-comments for new run-all params
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Kats authored and msdmkats committed Nov 1, 2019
1 parent 174933a commit 68c5f04
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions ADBench/run-all.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -74,21 +74,29 @@ param(# Which build to test.
# GMM K values to run. As above.
[int[]]$gmm_k_vals_param,

# can be "1k", "10k", and "2.5M"
# GMM sizes to try. Must be a subset of @("1k", "10k", "2.5M")
# 2.5M currently is not supported
[string[]]$gmm_sizes = @("1k", "10k"),
# "small", "big"

# Hand problem sizes to try. Must be a subset of @("small", "big")
[string[]]$hand_sizes = @("small", "big"),
# >= 1

# Number of the first BA problem to try. Must be between 1 and ba_max_n
[int]$ba_min_n = 1,
# <= 20

# Number of the last BA problem to try. Must be between ba_min_n and 20
[int]$ba_max_n = 5,
# >= 1

# Number of the first Hand problem to try. Must be between 1 and hand_max_n
[int]$hand_min_n = 1,
# <=12

# Number of the last Hand problem to try. Must be between hand_min_n and 12
[int]$hand_max_n = 5,
# subset of @(2, 4)

# Numbers of layers in LSTM to try. Must be a subset of @(2, 4)
[int[]]$lstm_l_vals = @(2, 4),
# subset of @(1024, 4096)

# Sequence lengths in LSTM to try. Must be a subset of @(1024, 4096)
[int[]]$lstm_c_vals = @(1024, 4096)
)

Expand Down

0 comments on commit 68c5f04

Please sign in to comment.