Skip to content

Commit bc177db

Browse files
author
Thomas Mulc
committed
dist setup spaces
1 parent 8edde58 commit bc177db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: Distributed-Setup/dist_setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def main():
1818
# Distributed Baggage
1919
cluster = tf.train.ClusterSpec({
2020
'ps':['localhost:2222'],
21-
'worker':['localhost:2223']
21+
'worker':['localhost:2223']
2222
}) #lets this node know about all other nodes
2323
if FLAGS.job_name == 'ps': #checks if parameter server
2424
server = tf.train.Server(cluster,

Diff for: Distributed-Setup/dist_setup_sup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def main():
1818
# Distributed Baggage
1919
cluster = tf.train.ClusterSpec({
2020
'ps':['localhost:2222'],
21-
'worker':['localhost:2223']
21+
'worker':['localhost:2223']
2222
}) #lets this node know about all other nodes
2323
if FLAGS.job_name == 'ps': #checks if parameter server
2424
server = tf.train.Server(cluster,job_name="ps",task_index=FLAGS.task_index)

0 commit comments

Comments
 (0)