Skip to content

Commit

Permalink
Merge pull request pytorch#87 from jma127/master
Browse files Browse the repository at this point in the history
Get rid of unused verbose comm
  • Loading branch information
jma127 authored Aug 14, 2018
2 parents b92efc7 + 193b236 commit c3d6197
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src_py/elf/context_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ def get_option_spec(cls):
'T',
'number of timesteps',
6)
spec.addBoolOption(
'verbose_comm',
'enables verbose comm',
False)
spec.addIntOption(
'mcts_threads',
'number of MCTS threads',
Expand Down Expand Up @@ -97,7 +93,6 @@ def initialize(self, co):
co.num_games = options.num_games
co.batchsize = options.batchsize
co.T = options.T
co.verbose_comm = options.verbose_comm

mcts.num_threads = options.mcts_threads
mcts.num_rollouts_per_thread = options.mcts_rollout_per_thread
Expand Down

0 comments on commit c3d6197

Please sign in to comment.