Christoph Hertzberg
54930b6b55
Remove unused variable
2020-11-25 17:59:18 +01:00
Martin Vonheim Larsen
4e5385c905
Enable MathJax in Doxygen.in
...
Note that HTTPS must be used against the MathJax CDN when hosted on `eigen.tuxfamily.org` (which uses HTTPS) in order to avoid `Mixed Content`-errors from browsers. Using HTTPS for MathJax also works if the Eigen docs are hosted on plain HTTP.
(cherry picked from commit 280f4f2407ffdf93488de7e95ca6e31fff770f21)
2020-11-17 15:39:44 +01:00
Christoph Hertzberg
ac632f663e
bug #1746 : Removed implementation of standard copy-constructor and standard copy-assign-operator from PermutationMatrix and Transpositions to allow malloc-less std::move. Added unit-test to rvalue_types
...
(cherry picked from commit efd9867ff0e8df23016ac6c9828d0d7bf8bec1b1)
2020-11-12 11:54:51 +01:00
Christoph Hertzberg
3620371c5c
Bug #2036 make sure find_standard_math_library_test_program actually compiles (and is guaranteed to call math functions)
...
(cherry picked from commit ecb7bc9514b12051d050299234b2a74ac76b5a8e)
2020-11-04 13:38:17 +01:00
David Tellenbach
5dda502f84
Rename test/array.cpp to test/array_cwise.cpp
...
Having a test named "array" can clash with the standard library header
"array".
Fixes issue #2046
2020-11-04 13:01:17 +01:00
Gael Guennebaud
590aec8fab
check two ctors
...
(cherry picked from commit 572d62697dd33acbf97e4a14e8aea06e82d6095d)
2020-10-28 09:53:23 +01:00
David Tellenbach
75f8b06e50
Mention problems when using potentially throwing scalars and OpenMP
...
(cherry picked from commit 9022f5aa8aaf76cbe656050b78b74643fe95e9a5)
2020-10-09 17:41:41 +02:00
Karl Ljungkvist
e91e5d8c87
Fix typo in Tutorial_BlockOperations_block_assignment.cpp
...
(cherry picked from commit d199c17b14d976b4144b653d4811827efc1eb149)
2020-10-09 14:19:23 +02:00
Luke Peterson
ef3cc72cb6
Remove error counting in OpenMP parallelize_gemm
...
This resolves a compilation error associated with
Eigen::eigen_assert_exception. It also eliminates the counting of
exceptions that may occur in the OpenMP parallel section. If an
unhandled exception occurs in this section, the behavior is non-conforming
according to the OpenMP specification.
2020-10-08 18:50:33 -07:00
David Tellenbach
7a0a2a5001
Define coeff-wise binary array operators for base class
...
This fixes #2012 .
2020-10-09 00:53:34 +02:00
szczepaniak bartek
bfdd4a9903
Fix Paradiso.
...
EIGEN_USING_STD -> EIGEN_USING_STD_MATH
2020-10-08 19:38:35 +00:00
David Tellenbach
dc252fbf00
Bump to 3.3.8
3.3.8
2020-10-05 13:24:15 +02:00
David Tellenbach
9f202c6f1e
Fix undefined behaviour caused by uncaught exceptions in OMP section
...
An OpenMP parallel section must have a single entry and a single point
of exit. Leaving such a section by throwing an exception is undefined.
This patch fixes this by catching possible exceptions on the parallel
section and throwing right we left it.
2020-10-02 00:41:01 +02:00
David Tellenbach
b933946d63
Fix failure in GEBP kernel when compiling with OpenMP and FMA
...
Fixes #1995
(cherry picked from commit 30960d485ec7e45b095d3ad206b2dbcc8bc835ba)
2020-09-30 16:17:33 +02:00
Alexander Grund
1b080fdcb9
Make relative path variables of type STRING
...
When the type is PATH an absolute path is expected and user-defined
values are converted into absolute paths relative to the current directory.
Fixes #1990
(cherry picked from commit a967fadb21c17622c6cdec13ad9c827054624eb4)
2020-09-30 00:55:39 +02:00
Gael Guennebaud
a796be81a4
relax number of iterations checks to avoid false negatives
...
(cherry picked from commit d835a0bf539e2827502f3d7ddcb1033baf05ecd4)
2020-09-17 18:21:35 +02:00
David Tellenbach
76f0650563
Bump to 3.3.8-rc1
3.3.8-rc1
2020-09-14 13:43:55 +02:00
nluehr
4707c3aa86
Fix incorrect integer cast in predux<half2>().
...
Bug corrupts results on Maxwell and earlier GPU architectures.
(cherry picked from commit dd6de618c3fda4275aff3a57c590f82b6e628ac1)
2020-09-04 19:12:05 +02:00
Gael Guennebaud
89a86ed422
fix #1901 : warning in Mode==(Upper|Lower)
2020-09-02 15:44:51 +02:00
Tobias Bosch
f55a6d051b
Include <sstream> explicitly, and don't rely on the implicit include via <complex>.
...
This implicit dependency does no longer exist in a recent llbm release (sha 78be61871704).
2020-09-02 11:02:18 +02:00
Gael Guennebaud
b343baceb4
Relaxed fastmath unit test: if std::foo fails, then let's only trigger a warning is numext::foo fails too.
...
A true error will triggered only if std::foo works but our numext::foo fails.
(cherry picked from commit 2ef1b39674716038f7310ce925122f058e2e62ab)
2020-09-01 18:39:56 +02:00
David Tellenbach
abb5d04c3a
Fix StlDeque for GCC 10
...
StlDeque extends std::deque by accessing some of its internal members.
Since GCC 10 these are not accessible anymore.
(cherry picked from commit 5e484fa11de4e90fc042a29e6cab04667bb2ef6c)
2020-08-31 00:20:10 +02:00
Gael Guennebaud
94f66fc32e
Fix #1974 : assertion when reserving an empty sparse matrix
2020-08-26 12:35:42 +02:00
Gael Guennebaud
efd72cddcd
Backport AVX512 implementation from devel branch to 3.3 (the 3.3 version had many issues)
2020-08-26 12:34:20 +02:00
Gael Guennebaud
def70b2e37
Fix compilation with AVX512 and AVX/SSE packet-math functions
2020-08-25 17:05:17 +02:00
Gael Guennebaud
e5b35d64f7
Fix compilation with AVX512
2020-08-25 12:25:58 +02:00
Rasmus Munk Larsen
02ef38020b
Fix incorrect use of std::abs reported in #1823 .
2020-08-11 17:54:22 -07:00
Gael Guennebaud
16ed93cf61
add a banner to advertise the survey
2020-07-29 19:03:54 +02:00
Gael Guennebaud
86306a5cab
remove piwik tracker
...
(cherry picked from commit 2ce2f5198929caab4b41a6ad1b9c93f67d8b9a69)
2020-07-24 13:38:49 +02:00
Gael Guennebaud
1595ee4067
Add missing footer declaration
2020-07-24 10:37:48 +02:00
Simon Pfreundschuh
e22d0947c7
Replaced call to deprecated 'load' function with appropriate call to 'on'.
2020-07-24 10:37:34 +02:00
Janek Kozicki
0dd9643ad5
Fix Yade high precision Real compilation
2020-03-23 18:24:49 +00:00
Christoph Hertzberg
14db78c53b
Fix some maybe-uninitialized warnings
...
Cherry-picked from 72166d0e6e and 6965f6de7f
2020-02-28 19:32:10 +01:00
Christoph Hertzberg
84364ad11d
Bug #1788 : Fix rule-of-three violations inside the stable modules.
...
This fixes deprecated-copy warnings when compiling with GCC>=9
Also protect some additional Base-constructors from getting called by user code code (#1587 )
Cherry-picked from 870e53c0
2020-02-28 19:04:33 +01:00
Eugene Zhulenev
160c0a3404
Change typedefs from private to protected to fix MSVC compilation
2020-02-18 10:55:02 +01:00
Christoph Hertzberg
89449a0821
Remove .hgignore and copy .gitignore from master branch
2019-12-20 18:25:47 +01:00
Christoph Hertzberg
e1e35a2246
Bug #1796 : Make matrix squareroot usable for Map and Ref types
...
Cherry-picked from 1e9664b14737d016fabbdb72327aeda6a06bf623
2019-12-20 18:15:35 +01:00
Gael Guennebaud
5f1082d0b1
Fix QuaternionBase::cast for quaternion map and wrapper.
...
(grafted from 6358599ecbe23a8ba1829dea21e532aa85aab932
)
2019-12-03 14:51:14 +01:00
Gael Guennebaud
1039348f12
backport is_valid_index_type fix from default branch and c++03
2019-11-22 13:49:17 +01:00
Gael Guennebaud
a8d516b04e
bug #1281 : fix AutoDiffScalar's make_coherent for nested expression of constant ADs.
...
(grafted from b9837ca9aeccb933e410102125fcd475e6cbcada
)
2019-11-14 14:58:08 +01:00
Gael Guennebaud
f1b1f13d3c
silent cmake warnings
2019-11-14 14:22:35 +01:00
Gael Guennebaud
a153dbae9b
Fix case issue with Lapack unit tests
...
(grafted from 0fb6e244081bb5acf7d14b26001459c6df1a6c58
)
2019-11-14 14:16:05 +01:00
Gael Guennebaud
3d7e2a1f3d
Fix possible conflict with an externally defined "real" type.
...
This issue was detected by gcc5 only.
2019-11-14 13:31:26 +01:00
Gael Guennebaud
e1e9b3f9f6
Swicth the 3.3 branch to my.cdash.org and add the "-v3.3" suffix to build name so that cdash can filter them to the proper groups.
2019-11-14 10:46:02 +01:00
Greg Coombe
3d18879fc4
Initialize isometric transforms like affine transforms.
...
The isometric transform, like the affine transform, has an implicit last
row of [0, 0, 0, 1]. This was not being properly initialized, as verified
by a new test function.
(grafted from 9d988a1e1a83c51422d96030fdad7267e4e946ee
)
2019-01-11 23:14:35 -08:00
Christoph Hertzberg
cd12bf6317
bug #1761 : Manually grafted changes in Meta.h
...
5937c4ae32feec178d56282694f06ed16cfe7352
Fall back is_integral to std::is_integral in c++11
f0862b062fcb613ee6c60745631d90a43d54a6d4
Fix internal::is_integral<size_t/ptrdiff_t> with MSVC 2013 and older.
2019-10-24 13:29:35 +02:00
Christoph Hertzberg
1760432f6e
Provide numext::[u]int{32,64}_t. Manually grafted from 4356a55a61c99faec681b20c5477b7e7012ca128
2019-10-11 16:51:08 +02:00
Gael Guennebaud
a7d6a65d49
Implement c++03 compatible fix for changeset 7a43af1a335da2c0489b4119a33ee1cbff0c15d6
...
(grafted from f0a4642baba70a64128964d96c4ede012614925e
)
2019-10-09 16:00:57 +02:00
Christoph Hertzberg
74d474e7df
Resolve merge conflict
2019-10-09 15:52:12 +02:00
Gael Guennebaud
47e2f8a42c
PR 719: fix real/imag namespace conflict
...
(grafted from 87427d2eaa90bbc1c12eedecca95554d93c3c212
)
2019-10-08 09:15:17 +02:00