aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
diff options
context:
space:
mode:
authorGravatar Eugene Zhulenev <ezhulenev@google.com>2019-04-02 15:04:26 -0700
committerGravatar Eugene Zhulenev <ezhulenev@google.com>2019-04-02 15:04:26 -0700
commit629ddebd153c0c51c363a6d389aacb135719f8ed (patch)
tree2e9f8b689c658c3fd40a7d18fa834c70a3e4a9e1 /unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
parent4e2f6de1a8fd9a659dc40ed54fedff9abdef3b1f (diff)
Add missing semicolon
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h b/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
index 6a213096d..3b8ec14f0 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
@@ -166,7 +166,7 @@ struct TensorContractionBlockMemAllocator {
std::vector<LhsScalar*>* lhs_blocks,
std::vector<RhsScalar*>* rhs_blocks) {
eigen_assert(num_slices > 0);
- eigen_assert(num_lhs >= 0 && num_rhs >= 0)
+ eigen_assert(num_lhs >= 0 && num_rhs >= 0);
eigen_assert(num_lhs == 0 || lhs_blocks);
eigen_assert(num_rhs == 0 || rhs_blocks);
BlockSizes sz = ComputeLhsRhsBlockSizes(bm, bk, bn);