閱讀https://github.com/tensorflow/models/blob/master/tutorials/image/cifar10/cifar10_multi_gpu_train.py的功能average_gradients
以下注釋提供:Note that this function provides a synchronization point across all towers.
是功能average_gradients
阻塞調用,並是什麼意思synchronization point
?Tensorflow CIFAR同步點
我認爲這是一個阻塞呼叫,因爲爲了計算梯度的平均值,每個梯度都必須單獨計算?但是,等待所有單個漸變計算的阻止代碼在哪裏?