mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 03:39:01 +08:00
Add missing semicolon
This commit is contained in:
parent
4e2f6de1a8
commit
629ddebd15
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user