Skip to content

Commit

Permalink
Fix QR solver bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseefeld committed Aug 16, 2020
1 parent 924a194 commit 9629af6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vsip/impl/solver/qr.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class qrd<T, by_value>
}

Matrix<T> x(x_rows, x_cols);
backend_.prodq<tr, ps>(b, x);
backend_.template prodq<tr, ps>(b, x);
return x;
}

Expand All @@ -148,7 +148,7 @@ class qrd<T, by_value>
rsol(const_Matrix<T, Block0> b, T const alpha) VSIP_NOTHROW
{
Matrix<T> x(b.size(0), b.size(1));
backend_.rsol<tr>(b, alpha, x);
backend_.template rsol<tr>(b, alpha, x);
return x;
}

Expand Down

0 comments on commit 9629af6

Please sign in to comment.