Skip to content

Commit

Permalink
Fix typo in autotuner.py (microsoft#2639)
Browse files Browse the repository at this point in the history
  • Loading branch information
eltociear authored Dec 21, 2022
1 parent 11f5dab commit 6273dff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deepspeed/autotuning/autotuner.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,11 +373,11 @@ def _generate_experiments(self, tuning_space, max_train_batch_size_per_gpu):

logger.debug(f"tuning_keys = {tuning_keys}")

logger.debug(f"before prunning total configs = {len(all_configs)}")
logger.debug(f"before pruning total configs = {len(all_configs)}")

pruned_list = prune_configs(all_configs)

logger.debug(f"after prunning total configs = {len(pruned_list)}")
logger.debug(f"after pruning total configs = {len(pruned_list)}")

for config in pruned_list:
exp_config = copy.deepcopy(template_config)
Expand Down

0 comments on commit 6273dff

Please sign in to comment.