aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/matrix_inverse_op.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/kernels/matrix_inverse_op.cc')
-rw-r--r--tensorflow/core/kernels/matrix_inverse_op.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/kernels/matrix_inverse_op.cc b/tensorflow/core/kernels/matrix_inverse_op.cc
index c61a091c7b..52afdd15ba 100644
--- a/tensorflow/core/kernels/matrix_inverse_op.cc
+++ b/tensorflow/core/kernels/matrix_inverse_op.cc
@@ -210,7 +210,7 @@ class MatrixInverseOpGpu : public AsyncOpKernel {
done);
}
} else {
- // For large matrices, we wompute the inverse of each matrix in the batch
+ // For large matrices, we compute the inverse of each matrix in the batch
// sequentially. Here we use the cuSolver methods GETRF/GETRS because they
// are MUCH faster than their batched cuBlas equivalents for large
// matrices.