aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA. Unique TensorFlower <gardener@tensorflow.org>2024-05-10 02:30:00 -0700
committerTensorFlower Gardener <gardener@tensorflow.org>2024-05-10 03:03:13 -0700
commit402fe86cb53bf1a4906b4343c00191a3a38fe9d9 (patch)
treeda919957f0074cf11b9c1fd5a231e1b87861a2b3
parent282504c1ed4e0e4953ffb54d162b97b85e0a6516 (diff)
downloadtensorflow-402fe86cb53bf1a4906b4343c00191a3a38fe9d9.tar.gz
Automated Code Change
PiperOrigin-RevId: 632428851
-rw-r--r--tensorflow/core/distributed_runtime/coordination/coordination_service_barrier_proxy.cc15
1 files changed, 8 insertions, 7 deletions
diff --git a/tensorflow/core/distributed_runtime/coordination/coordination_service_barrier_proxy.cc b/tensorflow/core/distributed_runtime/coordination/coordination_service_barrier_proxy.cc
index 5f1fed1004b..b18d7136c05 100644
--- a/tensorflow/core/distributed_runtime/coordination/coordination_service_barrier_proxy.cc
+++ b/tensorflow/core/distributed_runtime/coordination/coordination_service_barrier_proxy.cc
@@ -58,7 +58,7 @@ std::pair<Status, bool> BarrierProxy::Wait() {
if (num_entered_ == num_local_threads_) {
// Now that all threads are waiting, starts waiting at the global barrier.
if (tasks_.size() != 1) {
- profiler::TraceMe traceme("BarrierProxy::Wait::WaitAtBarrier");
+ tsl::profiler::TraceMe traceme("BarrierProxy::Wait::WaitAtBarrier");
// TODO(b/198475014) the barrier status will be stored in memory forever.
// We should have a mechanism to remove it after it has been passed.
status_ = agent_->WaitAtBarrier(key_, timeout_, tasks_);
@@ -103,12 +103,13 @@ Status BarrierProxyManager::Wait(tsl::CoordinationServiceAgent* agent,
// Only one device, no need to wait.
if (tasks.size() == 1 && num_local_threads <= 1) return absl::OkStatus();
- profiler::TraceMe traceme([&] {
- return profiler::TraceMeEncode("BarrierProxyManager::Wait",
- {
- {"num_tasks", tasks.size()},
- {"num_local_threads", num_local_threads},
- });
+ tsl::profiler::TraceMe traceme([&] {
+ return tsl::profiler::TraceMeEncode(
+ "BarrierProxyManager::Wait",
+ {
+ {"num_tasks", tasks.size()},
+ {"num_local_threads", num_local_threads},
+ });
});
std::shared_ptr<BarrierProxy> barrier;