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

Commit

Permalink
Fix nnictl multiThread option (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
chicm-ms authored Dec 11, 2018
1 parent 84cb53a commit 0425766
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/nni_cmd/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,8 @@ def set_experiment(experiment_config, mode, port, config_file_name):
request_data['description'] = experiment_config['description']
if experiment_config.get('multiPhase'):
request_data['multiPhase'] = experiment_config.get('multiPhase')
if experiment_config.get('multiThread'):
request_data['multiThread'] = experiment_config.get('multiThread')
if experiment_config.get('advisor'):
request_data['advisor'] = experiment_config['advisor']
else:
Expand Down

0 comments on commit 0425766

Please sign in to comment.