-
I get the following output:
```
[dmeiser@ivyamd tests]$ ./qr_method-test-opencl
Reading...
Testing matrix of size 4-by-4
Calculation...
Verification...
[[OK]] [4x4] ../examples/testdata/eigen/nsm1.…
-
Hi, I've encountered several test failures with current master:
```
make test
Running tests...
...
The following tests FAILED:
34 - matrix_product_float-opencl (Failed)
35 - matrix_product_…
-
We should improve the current `isOrthogonal` method for better performance, possibly using the second implementation available in the Hessenberg decomposition algorithm.
-
Don't get me wrong: this kind of thorough testing is great. But at this point it is slowing us down a bit. We should consider dialing down some sizes or iteration counts, or splitting up the suite so …
-
The function `scipy.linalg.hessenberg` computes wrong factorizations. Minimal example:
``` python
import numpy
from scipy.linalg import hessenberg
A = numpy.eye(3)
A[-1,0] = 2
H, Q = hessenberg(A, c…
-
I've searched through the logs and can't quite find a solution to this (aside from the tidbit at the end which I pulled from a similar issue). I pulled and attempted to build starting this morning, ge…
ghost updated
10 years ago
-
Hi,
I was just trying the new installation scripts and it failed. But I don't know why? Any ideas? @malter
Regards,
Constantin
```
bergatt-macpro:Repositories bergatt$ mkdir mars_test
bergatt-macp…
-
Not really a casadi issue, but i'll put a note here for further reference.
CSparse has difficulty solving banded matrices with a wide off-diagonal element (is this called circulant?)
``` python
fro…
-
Did I fail to set something correctly or is this a real bug?
CMake invocation:
```
Jeffs-MacBook-Air:build-rma jhammond$ cmake .. -DCMAKE_CXX_COMPILER=/opt/mpich/dev/clang/debug/bin/mpicxx -DCMAKE_C…
-
I compare the gmres in this package to the one in SimpleIterativeSolvers (https://github.com/lruthotto/SimpleIterativeSolvers.jl)
```
using IterativeSolvers
using SimpleIterativeSolvers
A = sprandn…