Accepting request 299032 from devel:libraries:c_c++
1 OBS-URL: https://build.opensuse.org/request/show/299032 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/eigen3?expand=0&rev=5
This commit is contained in:
parent
1a95754316
commit
73cc22cf92
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:929326dcf23a5b9125f898858f2b2b8e4685173c9a5963f86e593791abb621b1
|
||||
size 1142184
|
3
eigen-3.2.4.tar.bz2
Normal file
3
eigen-3.2.4.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d64332c92e31803d2c59f6646ed893965c666acfc7c284e4f5e9ffbb4d148922
|
||||
size 1147976
|
@ -1,3 +1,61 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 22 20:41:28 UTC 2015 - asterios.dramis@gmail.com
|
||||
|
||||
- Update to version 3.2.4:
|
||||
* Fix compilation regression in Rotation2D
|
||||
* Bug 920: fix compilation issue with MSVC 2015.
|
||||
* Bug 921: fix utilization of bitwise operation on enums in
|
||||
first_aligned.
|
||||
* Fix compilation with NEON on some platforms.
|
||||
From version 3.2.3:
|
||||
Core:
|
||||
* Enable Mx0 * 0xN matrix products.
|
||||
* Bug 859: fix returned values for vectorized versions of
|
||||
exp(NaN), log(NaN), sqrt(NaN) and sqrt(-1).
|
||||
* Bug 879: tri1 = mat * tri2 was compiling and running
|
||||
incorrectly if tri2 was not numerically triangular. Workaround
|
||||
the issue by evaluating mat*tri2 into a temporary.
|
||||
* Bug 854: fix numerical issue in
|
||||
SelfAdjointEigenSolver::computeDirect for 3x3 matrices.
|
||||
* Bug 884: make sure there no call to malloc for zero-sized
|
||||
matrices or for a Ref<> without temporaries.
|
||||
* Bug 890: fix aliasing detection when applying a permutation.
|
||||
* Bug 898: MSVC optimization by adding inline hint to
|
||||
const_cast_ptr.
|
||||
* Bug 853: remove enable_if<> in Ref<> ctor.
|
||||
Dense solvers:
|
||||
* Bug 894: fix the sign returned by LDLT for multiple calls to
|
||||
compute().
|
||||
* Fix JacobiSVD wrt underflow and overflow.
|
||||
* Bug 791: fix infinite loop in JacobiSVD in the presence of
|
||||
NaN.
|
||||
Sparse:
|
||||
* Fix out-of-bounds memory write when the product of two sparse
|
||||
matrices is completely dense and performed using pruning.
|
||||
* UmfPack support: fix redundant evaluation/copies when calling
|
||||
compute(), add support for generic expressions as input, and
|
||||
fix extraction of the L and U factors (Bug 911).
|
||||
* Improve SparseMatrix::block for const matrices (the generic
|
||||
path was used).
|
||||
* Fix memory pre-allocation when permuting inner vectors of a
|
||||
sparse matrix.
|
||||
* Fix SparseQR::rank for a completely empty matrix.
|
||||
* Fix SparseQR for row-major inputs.
|
||||
* Fix SparseLU::absDeterminant and add respective unit test.
|
||||
* BiCGSTAB: make sure that good initial guesses are not
|
||||
destroyed by a bad preconditioner.
|
||||
Geometry:
|
||||
* Fix Hyperplane::Through(a,b,c) when points are aligned or
|
||||
identical.
|
||||
* Fix linking issues in OpenGLSupport.
|
||||
OS, build system and doc:
|
||||
* Various compilation fixes including: bug 821, bug 822,
|
||||
bug 857, bug 871, bug 873.
|
||||
* Fix many compilation warnings produced by recent compilers
|
||||
including: bug 909.
|
||||
* Bug 861: enable posix_memalign with PGI.
|
||||
* Fix BiCGSTAB doc example.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Aug 9 21:02:38 UTC 2014 - asterios.dramis@gmail.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package eigen3
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,13 +17,13 @@
|
||||
|
||||
|
||||
Name: eigen3
|
||||
Version: 3.2.2
|
||||
Version: 3.2.4
|
||||
Release: 0
|
||||
Summary: C++ Template Library for Linear Algebra
|
||||
License: MPL-2.0 and LGPL-2.1+ and BSD-3-Clause
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: http://eigen.tuxfamily.org/
|
||||
#DL-URL: http://bitbucket.org/eigen/eigen/get/%{version}.tar.bz2
|
||||
# http://bitbucket.org/eigen/eigen/get/3.2.4.tar.bz2
|
||||
Source0: eigen-%{version}.tar.bz2
|
||||
Patch0: 0001-Disable-Altivec-for-ppc64le.patch
|
||||
Patch1: 0001-Do-stack-allignment-on-ppc.patch
|
||||
@ -82,7 +82,7 @@ Eigen is a C++ template library for linear algebra: matrices, vectors,
|
||||
numerical solvers, and related algorithms.
|
||||
|
||||
%prep
|
||||
%setup -q -n eigen-eigen-1306d75b4a21
|
||||
%setup -q -n eigen-eigen-10219c95fe65
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user