We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bdc7cb commit 8d7c49dCopy full SHA for 8d7c49d
include/tensor.cuh
@@ -1358,7 +1358,7 @@ inline void CholeskyBatchFactoriser<double>::solve(DTensor<double> &b) {
1358
if (!m_factorisationDone) throw std::logic_error("[CholeskyBatchSolve] no factor to solve with");
1359
if (m_numRows != b.numRows() || m_numMats != b.numMats()) {
1360
throw std::invalid_argument("[CholeskyBatchSolve] A and b incompatible");
1361
-
+ }
1362
if (b.numCols() != 1) throw std::invalid_argument("[CholeskyBatchSolve] only supports `b` with one column");
1363
DTensor<double *> ptrA = m_matrix->pointersToMatrices();
1364
DTensor<double *> ptrB = b.pointersToMatrices();
0 commit comments