Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 661136198
  • Loading branch information
tensorflower-gardener committed Aug 9, 2024
1 parent df6b581 commit 52b41bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tensorflow/dtensor/mlir/utils/update_tpu_metadata.cc
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Status UpdateMetadataProtoXlaSpmd(const Mesh& mesh_config,
mesh_name = "";
}
const std::vector<int>& tpu_core_ids = Mesh::tpu_core_ids()[mesh_name];
VLOG(1) << "tpu_core_ids: " << str_util::Join(tpu_core_ids, ", ");
VLOG(1) << "tpu_core_ids: " << absl::StrJoin(tpu_core_ids, ", ");

xla::DeviceAssignmentProto device_assignment;
device_assignment.set_replica_count(1);
Expand Down Expand Up @@ -223,7 +223,7 @@ Status UpdateMetadataProtoDtensorSpmd(const Mesh& mesh_config,
mesh_name = "";
}
const std::vector<int>& tpu_core_ids = Mesh::tpu_core_ids()[mesh_name];
VLOG(1) << "tpu_core_ids: " << str_util::Join(tpu_core_ids, ", ");
VLOG(1) << "tpu_core_ids: " << absl::StrJoin(tpu_core_ids, ", ");

xla::DeviceAssignmentProto device_assignment;
device_assignment.set_replica_count(num_replicas);
Expand Down

0 comments on commit 52b41bd

Please sign in to comment.