Skip to content

Commit

Permalink
Nit: Fix a copy-and-paste mistake
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 633077237
  • Loading branch information
junwhanahn authored and tensorflower-gardener committed May 13, 2024
1 parent 1776423 commit 6c172a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions third_party/xla/xla/pjrt/pjrt_stream_executor_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1327,9 +1327,9 @@ void PjRtStreamExecutorDevice::AttachMemorySpace(
PjRtMemorySpace* memory_space) {
CHECK(memory_space != nullptr);
CHECK(client_ == memory_space->client()) << absl::StrFormat(
"Could not attach a TfrtTpuDevice to a PjRtMemorySpace owned by a "
"different client, the device's client: %s, the memory space's client: "
"%s.",
"Could not attach a PjRtStreamExecutorDevice to a PjRtMemorySpace owned "
"by a different client, the device's client: %s, the memory space's "
"client: %s.",
client_->platform_name(), memory_space->client()->platform_name());

memory_spaces_.push_back(memory_space);
Expand Down

0 comments on commit 6c172a9

Please sign in to comment.