-1

When Distributed workers use shared_queue in distributed tensorflow, Is the shared_queue works to mutex exclusively?

김영환
  • 3
  • 3

1 Answers1

1

TensorFlow queue objects, such as tf.FIFOQueue, are thread-safe. This applies both to multiple users in a single process, and multiple jobs sharing the queue via shared_name in a distributed setting.

mrry
  • 125,488
  • 26
  • 399
  • 400
  • I'm pleased to concern about my question and thanks for replying my question very kindly. It's very helpful to do my project for me. – 김영환 Nov 13 '17 at 18:03