aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/buffer_assignment_test.cc
diff options
context:
space:
mode:
authorGravatar Justin Lebar <jlebar@google.com>2017-10-26 14:16:10 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-10-26 14:21:44 -0700
commit2cbe1ffd23a0214492d182935212fc7c613e4a05 (patch)
tree92050d033e273132527ca6cb789dce4e564e3ff3 /tensorflow/compiler/xla/service/buffer_assignment_test.cc
parent68b00b0be7e356ee30bf86a8a4a7807fa736dd6b (diff)
[XLA] Comment fixes (spelling, grammar, and a bit of correctness).
PiperOrigin-RevId: 173589267
Diffstat (limited to 'tensorflow/compiler/xla/service/buffer_assignment_test.cc')
-rw-r--r--tensorflow/compiler/xla/service/buffer_assignment_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/compiler/xla/service/buffer_assignment_test.cc b/tensorflow/compiler/xla/service/buffer_assignment_test.cc
index e3378a756b..89410f42bd 100644
--- a/tensorflow/compiler/xla/service/buffer_assignment_test.cc
+++ b/tensorflow/compiler/xla/service/buffer_assignment_test.cc
@@ -1179,7 +1179,7 @@ TEST_F(BufferAssignmentTest, TupleCallAsOutput) {
auto assignment = RunBufferAssignment(module.get());
EXPECT_EQ(3, assignment->Allocations().size());
- // Buffers for call are co-located with the sub-computation.
+ // Buffers for call are colocated with the sub-computation.
EXPECT_EQ(GetAllocation(*assignment, call, /*index=*/{}),
GetAllocation(*assignment, sub_tuple, /*index=*/{}));
EXPECT_EQ(GetAllocation(*assignment, call, /*index=*/{0}),
@@ -1238,7 +1238,7 @@ TEST_F(BufferAssignmentTest, TupleChainedCallAsOutput) {
auto assignment = RunBufferAssignment(module.get());
- // Buffers for call are co-located with the sub-computations.
+ // Buffers for call are colocated with the sub-computations.
EXPECT_EQ(GetAllocation(*assignment, a_call, /*index=*/{}),
GetAllocation(*assignment, b_call, /*index=*/{}));
EXPECT_EQ(GetAllocation(*assignment, b_call, /*index=*/{}),