Commit 731205ac authored by Yuxin Wu's avatar Yuxin Wu

remove unused print

parent f246dd59
......@@ -284,7 +284,6 @@ class SyncMultiGPUTrainerReplicated(MultiGPUTrainerBase):
for idx in range(self.config.nr_tower):
with tf.device(raw_devices[idx]):
grad_and_vars = [x[idx] for x in grads]
print(grad_and_vars)
train_ops.append(opt.apply_gradients(
grad_and_vars, name='apply_grad_{}'.format(idx)))
self.train_op = tf.group(*train_ops, name='train_op')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment