aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/shape_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/xla/shape_util.h')
-rw-r--r--tensorflow/compiler/xla/shape_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/compiler/xla/shape_util.h b/tensorflow/compiler/xla/shape_util.h
index 51cedce7f0..73f541d505 100644
--- a/tensorflow/compiler/xla/shape_util.h
+++ b/tensorflow/compiler/xla/shape_util.h
@@ -72,7 +72,7 @@ class ShapeIndex {
void push_back(int64 value) { indices_.push_back(value); }
void pop_back() { indices_.pop_back(); }
- // push_front is O(n), but shapes don't usually have a ton of dimensions.
+ // push_front is O(n^2), but shapes don't usually have a ton of dimensions.
void push_front(int64 value) { indices_.insert(indices_.begin(), value); }
using container_type = absl::InlinedVector<int64, 2>;