FLENS
FLENS copied to clipboard
Flexible Library for Efficient Numerical Solutions
Which function should i use.
Fix what appears to be a typographical error in the license text.
is this just a temporary problem?
Currently, GEMM and GEMV (and related functions) call `scal` which is not totally correct. In the original BLAS implementation, first it is checked wether the scaling parameter is `0` or...
See #23. There are some more small fixed needed for FLENS to build correctly. I included them in the pull request. I only tested the build for the classes I...
When compiling the code in Visual Studio 2017 I got an error in file [densevector.h](https://github.com/michael-lehn/FLENS/blob/039022b0f59b3f62872339ceddebe08661a41027/flens/vectortypes/impl/densevector.h#L232). For some reason VS does not understand `Engine::defaultIndexBase`. This can be fixed easily by adding...
## First step : modification of type result for vector closure Before that, the result type was enforced to be DenseVector< Array >. So, neither TinyVector nor different Engine could...
Hi Michael, I would like to report a issue with the method antiDiag() defined in the FullStorage class. If I didn't misuse it, its not correctly implemented. For it to...
Hi Michael, The scalar operation "abs" defined in flens/scalaroperations/abs.tcc is not working with types other than integer and complex. Whats happening is that its "evalScalarClosure" method is calling the "abs"...
Hi Michael, I'm having a hard time trying to understand a weird behavior when using some custom Indexbase with my containers. To illustrate that, lets suppose I define two types...