Skip to content

Commit

Permalink
Revert "Fixing copyright dates"
Browse files Browse the repository at this point in the history
This reverts commit 299b24c.
  • Loading branch information
nv-braf committed Jul 15, 2024
1 parent 299b24c commit 3d1dc75
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
5 changes: 2 additions & 3 deletions qa/L0_optuna_bls_model/check_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,8 @@ def check_profile_logs(self):
# Minimum number of trials: 14 (5% of search space)
# Maximum number of trials: 28 (10% of search space)
#
# Then you have 4 configs (top-3 + default) x (0-9) concurrencies
# 0 because all concurrencies could have been profiled during the optuna run
# 9 because all but one of the concurrencies from 1..1024 still need profiling
# Then you have 4 x (0-9) for the concurrency sweep on Top 3 + default
# 0 because all concurrencies could have been tested during the optuna run
expected_min_num_measurements = 14 + 0
expected_max_num_measurements = 28 + 36

Expand Down
7 changes: 2 additions & 5 deletions qa/L0_optuna_ensemble_model/check_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,8 @@ def check_profile_logs(self):
# Minimum number of trials: 13 (5% of search space)
# Maximum number of trials: 27 (10% of search space)
#
#
# Then you have 4 configs (top-3 + default) x (0-9) concurrencies
# 0 because all concurrencies could have been profiled during the optuna run
# 9 because all but one of the concurrencies from 1..1024 still need profiling

# Then you have 4 x (0-9) for the concurrency sweep on Top 3 + default
# 0 because all concurrencies could have been tested during the optuna run
expected_min_num_measurements = 13 + 0
expected_max_num_measurements = 27 + 36

Expand Down
5 changes: 2 additions & 3 deletions qa/L0_optuna_multi_model/check_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,8 @@ def check_profile_logs(self):
# Minimum number of trials: 32 (2% of search space)
# Maximum number of trials: 64 (4% of search space)
#
# Then you have 4 configs (top-3 + default) x (0-9) concurrencies
# 0 because all concurrencies could have been profiled during the optuna run
# 9 because all but one of the concurrencies from 1..1024 still need profiling
# Then you have 4 x (0-9) for the concurrency sweep on Top 3 + default
# 0 because all concurrencies could have been tested during the optuna run

expected_min_num_measurements = 32 + 0
expected_max_num_measurements = 64 + 36
Expand Down
6 changes: 2 additions & 4 deletions qa/L0_optuna_search/check_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,8 @@ def check_profile_logs(self):
# Minimum number of trials: 22 (5% of search space)
# Maximum number of trials: 44 (10% of search space)
#
# Then you have 4 configs (top-3 + default) x (0-9) concurrencies
# 0 because all concurrencies could have been profiled during the optuna run
# 9 because all but one of the concurrencies from 1..1024 still need profiling

# Then you have 4 x (0-9) for the concurrency sweep on Top 3 + default
# 0 because all concurrencies could have been tested during the optuna run
expected_min_num_measurements = 22
expected_max_num_measurements = 44 + 36
for model in self._models:
Expand Down

0 comments on commit 3d1dc75

Please sign in to comment.