Skip to content

Commit 8d7c49d

Browse files
author
Ruairi Moran
committed
how did that happen
1 parent 3bdc7cb commit 8d7c49d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/tensor.cuh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ inline void CholeskyBatchFactoriser<double>::solve(DTensor<double> &b) {
13581358
if (!m_factorisationDone) throw std::logic_error("[CholeskyBatchSolve] no factor to solve with");
13591359
if (m_numRows != b.numRows() || m_numMats != b.numMats()) {
13601360
throw std::invalid_argument("[CholeskyBatchSolve] A and b incompatible");
1361-
1361+
}
13621362
if (b.numCols() != 1) throw std::invalid_argument("[CholeskyBatchSolve] only supports `b` with one column");
13631363
DTensor<double *> ptrA = m_matrix->pointersToMatrices();
13641364
DTensor<double *> ptrB = b.pointersToMatrices();

0 commit comments

Comments
 (0)