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.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/tensorflow/core/kernels/matrix_inverse_op.cc b/tensorflow/core/kernels/matrix_inverse_op.cc
index d7c8149ceb..345d2ec250 100644
--- a/tensorflow/core/kernels/matrix_inverse_op.cc
+++ b/tensorflow/core/kernels/matrix_inverse_op.cc
@@ -51,11 +51,10 @@ class MatrixInverseOp
}
}
- using typename UnaryLinearAlgebraOp<Scalar, SupportsBatchOperationT>::Matrix;
- using
- typename UnaryLinearAlgebraOp<Scalar, SupportsBatchOperationT>::MatrixMap;
- using typename UnaryLinearAlgebraOp<Scalar,
- SupportsBatchOperationT>::ConstMatrixMap;
+ typedef UnaryLinearAlgebraOp<Scalar, SupportsBatchOperationT> Base;
+ using Matrix = typename Base::Matrix;
+ using MatrixMap = typename Base::MatrixMap;
+ using ConstMatrixMap = typename Base::ConstMatrixMap;
void ComputeMatrix(OpKernelContext* context, const ConstMatrixMap& input,
MatrixMap* output) override {