Releases: mmottl/lacaml
11.0.2
11.0.1
11.0.0
11.0.0 (2018-02-28)
WARNINIG WARNING WARNING
-
User code changes in existing code required! User code may still compile,
but can behave differently!The following functions are affected:
potrf
potri
potrs
The above functions now do not support the
jitter
argument anymore.
Users should remove the flag from calls to the above functions and
call the newMat.add_const_diag
function if they need to add jitter.
This call should happen right before the (now required) call topotrf
.More importantly,
potri
andpotrs
now do not support thefactorize
flag anymore, which would callpotrf
automatically beforehand. This was
the (ill-conceived) default, which makes it harder to port LAPACK code
to Lacaml. In order to upgrade your code, please do the following:-
If
potri
orpotrs
were passed~factorize:false
, just remove
the flag. -
If
potri
orpotrs
were passed~factorize:true
or were called
without thefactorize
flag, remove the flag if necessary and call
potrf
with the exactly corresponding arguments before.
Luckily, these functions are typically used rarely, and the changes
are trivial. Apologies anyway for the churn! -
New functions
Mat.add_const_diag
for adding a constant to the diagonal of a
(sub-)matrix.
-
orgqr
now detects ifm < n
and raises an exception instead of printing
a Fortran error message and continuing. -
Eigenvalue offsets should now work correctly.
-
Improved documentation.
10.0.2
10.0.1
10.0.0
10.0.0 (2017-10-20)
-
Switched to jbuilder and topkg
-
API changes
-
trmm
andtrsm
now do not label argumenta
anymore -
Many matrix functions now support an optional
patt
argument,
which can be used to specify rectangular, triagonal, trapezoidal, and
pentagonal patterns on which to perform an operation. -
New functions
Mat.sum_prod
computes the sum of elemenet-wise products of
two matrices. Some use cases are already covered byMat.gemm_trace
,
but the latter does not support patterns.
-
-
Improved C-code to better support SIMD compiler optimizations
-
Many internal improvements, including untagged and unboxed passing of
parameters to and from external functions. -
Compilation now uses
-march=native -O3 -ffast-math
by default, which
should be safe and exploit SIMD on platforms that support it to greatly
improve performance of some operations. -
Improved documentation
-
Improved configuration and build process
Release version 9.3.2
v9.3.2 Release version 9.3.2
Release version 9.3.1
v9.3.1 Release version 9.3.1
Release version 9.2.3
v9.2.3 Release version 9.2.3
Release version 9.2.2
v9.2.2 Release version 9.2.2