diff --git a/armadillo-14.2.1.tar.xz b/armadillo-15.0.3.tar.xz similarity index 49% rename from armadillo-14.2.1.tar.xz rename to armadillo-15.0.3.tar.xz index 2fc73a88ede3011968a97bb93f4cc80272cca456..2a22764f9e4d7dd4aaaf29b3a48121b5d200ea22 100644 Binary files a/armadillo-14.2.1.tar.xz and b/armadillo-15.0.3.tar.xz differ diff --git a/armadillo.spec b/armadillo.spec index 6142d64bf5871f5e628e66ae156d5afdb34f3137..c4ea51c45c7ef851a0b04a588f75d71d148a1b65 100644 --- a/armadillo.spec +++ b/armadillo.spec @@ -1,5 +1,5 @@ Name: armadillo -Version: 14.2.1 +Version: 15.0.3 Release: 1 Summary: Fast C++ matrix library with syntax similar to MATLAB and Octave License: Apache-2.0 @@ -57,10 +57,33 @@ rm -rf examples/lib_win64 %files help %doc README.md index.html docs.html mex_interface -%doc examples armadillo_icon.png +%doc examples %doc armadillo_*.pdf %changelog +* Tue Sep 30 2025 xu_ping <707078654@qq.com> - 15.0.3-1 +- Update to 15.0.3: + * fix for declaration of xSYCON and xHECON functions in LAPACK + * fix for rare corner-case in reshape() + * expanded the field class with .reshape() and .resize() member functions + * fix for fft() and ifft() when using FFTW3 in multi-threaded contexts + * added support for SuperLU 7.0 + * added balance() to transform matrices so that column and row norms are + roughly the same + * added omit_nan() and omit_nonfinite() to extract elements while omitting + NaN and non-finite values + * added find_nonnan() for finding indices of non-NaN elements + * added standalone replace() function + * C++14 is now the minimum required C++ standard + * added preliminary support for matrices with half-precision fp16 element type + * added second form of cond() to allow detection of failures + * added repcube() + * added .freeze() and .unfreeze() member functions to wall_clock + * extended conv() and conv2() to accept the "valid" shape argument + * optionally use OpenMP parallelisation for fp16 matrix multiplication + * fix superfluous deprecation warning in hist() + * fix potential loss of precision when saving single-precision matrices as CSV files + * Thu Nov 28 2024 yaoxin - 14.2.1-1 - Update to 14.2.1: * faster handling of symmetric matrices by inv(), rcond(), powmat()