eigen/test
David Tellenbach c1ffe452fc Fix bfloat16 casts
If we have explicit conversion operators available (C++11) we define
explicit casts from bfloat16 to other types. If not (C++03), we don't
define conversion operators but rely on implicit conversion chains from
bfloat16 over float to other types.
2020-07-23 20:55:06 +00:00
..
adjoint.cpp Add conjugateIf<bool> members to DesneBase, TriangularView, SelfadjointView, and make PartialPivLU use it. 2019-01-17 11:33:43 +01:00
AnnoyingScalar.h Disable an expected warning in unit test 2019-10-08 16:28:14 +02:00
array_cwise.cpp Change the sign operator in Eigen to return NaN for NaN arguments, not zero. 2020-07-07 01:54:04 +00:00
array_for_matrix.cpp
array_of_string.cpp
array_replicate.cpp
array_reverse.cpp revert debug stuff 2019-03-14 10:08:12 +01:00
bandmatrix.cpp
basicstuff.cpp Fix test basic stuff 2020-07-09 17:24:00 +00:00
bdcsvd.cpp Fix unit-test which I broke in previous fix 2019-12-19 13:42:14 +01:00
bfloat16_float.cpp Fix bfloat16 casts 2020-07-23 20:55:06 +00:00
bicgstab.cpp Avoid I as an identifier, since it may clash with the C-header complex.h 2019-01-25 14:54:39 +01:00
blasutil.cpp - Vectorizing MMA packing. 2020-05-19 19:24:11 +00:00
block.cpp Fix detection of vector-at-time: use Rows/Cols instead of MaxRow/MaxCols. 2019-01-15 15:09:49 +01:00
boostmultiprec.cpp Avoid I as an identifier, since it may clash with the C-header complex.h 2019-01-25 14:54:39 +01:00
bug1213_main.cpp
bug1213.cpp
bug1213.h
cholesky.cpp PR 567: makes all dense solvers inherit SoverBase (LU,Cholesky,QR,SVD). 2019-01-17 01:17:39 +01:00
cholmod_support.cpp
CMakeLists.txt Report custom C++ flags in CMake testing summary 2020-06-30 17:18:54 +00:00
commainitializer.cpp CommaInitializer wrongfully asserted for 0-sized blocks 2020-04-13 16:41:20 +02:00
conjugate_gradient.cpp Avoid I as an identifier, since it may clash with the C-header complex.h 2019-01-25 14:54:39 +01:00
conservative_resize.cpp
constructor.cpp fix unit test in c++03: c++03 does not allow passing local or anonymous enum as template param 2019-03-18 11:38:36 +01:00
corners.cpp
ctorleak.cpp
dense_storage.cpp bug #1046: add unit tests for correct propagation of alignment through std::alignment_of 2019-02-19 10:31:56 +01:00
denseLM.cpp
determinant.cpp
diagonal_matrix_variadic_ctor.cpp PR 593: Add variadtic ctor for DiagonalMatrix with unit tests 2019-03-14 10:18:24 +01:00
diagonal.cpp
diagonalmatrices.cpp
dontalign.cpp
dynalloc.cpp bug #1409: make EIGEN_MAKE_ALIGNED_OPERATOR_NEW* macros empty in c++17 mode: 2019-02-20 13:52:11 +01:00
eigen2support.cpp
eigensolver_complex.cpp
eigensolver_generalized_real.cpp
eigensolver_generic.cpp After fixing bug #1557, boostmultiprec_7 failed with NumericalIssue instead of NoConvergence (all that matters here is no Success) 2019-01-17 19:14:07 +01:00
eigensolver_selfadjoint.cpp
evaluator_common.h
evaluators.cpp
exceptions.cpp
fastmath.cpp
first_aligned.cpp
geo_alignedbox.cpp
geo_eulerangles.cpp
geo_homogeneous.cpp
geo_hyperplane.cpp Fix #1757: remove the word 'suicide' 2020-06-11 00:56:54 +00:00
geo_orthomethods.cpp
geo_parametrizedline.cpp
geo_quaternion.cpp Guard operator<< test by EIGEN_NO_IO. 2020-07-09 19:54:48 +00:00
geo_transformations.cpp Removing executable bit from file mode 2020-01-11 15:02:29 +01:00
gpu_basic.cu
gpu_common.h Clean up CUDA/NVCC version macros and their use in Eigen, and a few other CUDA build failures. 2019-05-31 15:26:06 -07:00
half_float.cpp Clean up float16 a.k.a. Eigen::half support in Eigen. Move the definition of half to Core/arch/Default and move arch-specific packet ops to their respective sub-directories. 2019-08-27 11:30:31 -07:00
hessenberg.cpp
householder.cpp
incomplete_cholesky.cpp Avoid I as an identifier, since it may clash with the C-header complex.h 2019-01-25 14:54:39 +01:00
indexed_view.cpp Guard usage of decltype since it's a C++11 feature 2020-05-20 16:04:16 +02:00
initializer_list_construction.cpp Make file formatting comply with POSIX and Unix standards 2020-03-23 18:09:02 +00:00
inplace_decomposition.cpp
integer_types.cpp Protecting integer_types's long long test with a check to see if we have CXX11 support. 2020-01-07 14:35:35 +00:00
inverse.cpp bug #1669: fix PartialPivLU/inverse with zero-sized matrices. 2019-01-29 10:27:13 +01:00
io.cpp Added io test 2019-12-11 18:22:57 +00:00
is_same_dense.cpp
jacobi.cpp
jacobisvd.cpp PR 567: makes all dense solvers inherit SoverBase (LU,Cholesky,QR,SVD). 2019-01-17 01:17:39 +01:00
klu_support.cpp
linearstructure.cpp
lscg.cpp
lu.cpp Enable unit tests of PartialPivLU on fixed size matrices, and increase tested matrix size (blocking was not tested!) 2019-02-11 17:56:20 +01:00
main.h Support BFloat16 in Eigen 2020-06-20 19:16:24 +00:00
mapped_matrix.cpp
mapstaticmethods.cpp
mapstride.cpp
meta.cpp bug #1752: make is_convertible equivalent to the std c++11 equivalent and fallback to std::is_convertible when c++11 is enabled. 2019-10-10 17:41:47 +02:00
metis_support.cpp
miscmatrices.cpp
mixingtypes.cpp
MovableScalar.h Fix #1911: add benchmark for move semantics with fixed-size matrix 2020-06-11 23:43:25 +00:00
mpl2only.cpp Guard against repeated definition of EIGEN_MPL2_ONLY 2019-08-07 14:19:00 -07:00
nestbyvalue.cpp Make nestByValue works again (broken since 3.3) and add unit tests. 2019-01-17 18:27:25 +01:00
nesting_ops.cpp
nomalloc.cpp
nullary.cpp Add unit test for LinSpaced and complex numbers. 2019-02-18 22:03:47 +01:00
num_dimensions.cpp
numext.cpp Support BFloat16 in Eigen 2020-06-20 19:16:24 +00:00
packetmath_test_shared.h Support BFloat16 in Eigen 2020-06-20 19:16:24 +00:00
packetmath.cpp Make test packetmath C++98 compliant 2020-07-01 20:41:59 +02:00
pardiso_support.cpp
pastix_support.cpp
permutationmatrices.cpp Enable CompleteOrthogonalDecomposition::pseudoInverse with non-square fixed-size matrices. 2019-11-13 21:16:53 +01:00
prec_inverse_4x4.cpp
product_extra.cpp
product_large.cpp
product_mmtr.cpp bug #1741: fix SelfAdjointView::rankUpdate and product to triangular part for destination with non-trivial inner stride 2019-09-10 23:29:52 +02:00
product_notemporary.cpp Fix regression: .conjugate() was popped out but not re-introduced. 2019-02-18 14:45:55 +01:00
product_selfadjoint.cpp
product_small.cpp Extend support for Packet16b: 2020-04-28 16:12:47 +00:00
product_symm.cpp bug #1741: fix self-adjoint*matrix, triangular*matrix, and triangular^1*matrix with a destination having a non-trivial inner-stride 2019-09-11 15:04:25 +02:00
product_syrk.cpp bug #1741: fix SelfAdjointView::rankUpdate and product to triangular part for destination with non-trivial inner stride 2019-09-10 23:29:52 +02:00
product_trmm.cpp bug #1741: fix self-adjoint*matrix, triangular*matrix, and triangular^1*matrix with a destination having a non-trivial inner-stride 2019-09-11 15:04:25 +02:00
product_trmv.cpp
product_trsolve.cpp bug #1741: fix self-adjoint*matrix, triangular*matrix, and triangular^1*matrix with a destination having a non-trivial inner-stride 2019-09-11 15:04:25 +02:00
product.h bug #1741: fix C.noalias() = A*C; with C.innerStride()!=1 2019-09-10 16:25:24 +02:00
qr_colpivoting.cpp Enable CompleteOrthogonalDecomposition::pseudoInverse with non-square fixed-size matrices. 2019-11-13 21:16:53 +01:00
qr_fullpivoting.cpp PR 567: makes all dense solvers inherit SoverBase (LU,Cholesky,QR,SVD). 2019-01-17 01:17:39 +01:00
qr.cpp PR 567: makes all dense solvers inherit SoverBase (LU,Cholesky,QR,SVD). 2019-01-17 01:17:39 +01:00
qtvector.cpp
rand.cpp
random_without_cast_overflow.h Fix tensor casts for large packets and casts to/from std::complex 2020-06-30 18:53:55 +00:00
real_qz.cpp
redux.cpp
ref.cpp Enable construction of Ref<VectorType> from a runtime vector. 2019-03-03 15:25:25 +01:00
reshape.cpp Extend reshaped unit tests and remove useless const_cast 2019-01-17 17:35:32 +01:00
resize.cpp
rvalue_types.cpp Fix #1911: add benchmark for move semantics with fixed-size matrix 2020-06-11 23:43:25 +00:00
schur_complex.cpp
schur_real.cpp
selfadjoint.cpp
simplicial_cholesky.cpp Avoid I as an identifier, since it may clash with the C-header complex.h 2019-01-25 14:54:39 +01:00
sizeof.cpp
sizeoverflow.cpp
smallvectors.cpp
solverbase.h PR 567: makes all dense solvers inherit SoverBase (LU,Cholesky,QR,SVD). 2019-01-17 01:17:39 +01:00
sparse_basic.cpp bug #1574: implement "sparse_matrix =,+=,-= diagonal_matrix" with smart insertion strategies of missing diagonal coeffs. 2019-01-28 17:29:50 +01:00
sparse_block.cpp
sparse_permutations.cpp
sparse_product.cpp Save one extra temporary when assigning a sparse product to a row-major sparse matrix 2020-05-30 23:15:12 +02:00
sparse_ref.cpp
sparse_solver.h
sparse_solvers.cpp bug #1617: add unit tests for empty triangular solve. 2019-01-16 15:24:59 +01:00
sparse_vector.cpp
sparse.h Fix compilation with gcc and remove TR1 stuff. 2019-02-20 13:59:34 +01:00
sparseLM.cpp
sparselu.cpp
sparseqr.cpp bug #899: make sparseqr unit test more stable by 1) trying with larger threshold and 2) relax rank computation for rank-deficient problems. 2019-02-19 22:57:51 +01:00
special_numbers.cpp
split_test_helper.h
spqr_support.cpp
stable_norm.cpp
stddeque_overload.cpp
stddeque.cpp
stdlist_overload.cpp
stdlist.cpp
stdvector_overload.cpp
stdvector.cpp
stl_iterators.cpp Added support for reverse iterators for Vectorwise operations. 2020-05-14 22:38:20 +00:00
superlu_support.cpp
svd_common.h PR 567: makes all dense solvers inherit SoverBase (LU,Cholesky,QR,SVD). 2019-01-17 01:17:39 +01:00
svd_fill.h
swap.cpp
symbolic_index.cpp
triangular.cpp bug #1707: Fix deprecation warnings, or disable warnings when testing deprecated functions 2019-05-10 14:57:05 +02:00
type_alias.cpp Add fully generic Vector<Type,Size> and RowVector<Type,Size> type aliases. 2019-02-20 15:23:23 +01:00
umeyama.cpp
umfpack_support.cpp
unalignedassert.cpp
unalignedcount.cpp
upperbidiagonalization.cpp
vectorization_logic.cpp Delete duplicate test cases in vectorization_logic.cpp 2020-07-01 00:51:15 +00:00
vectorwiseop.cpp Cleanup useless const_cast and add missing broadcast assignment tests 2019-01-17 16:55:42 +01:00
visitor.cpp
zerosized.cpp Enable visitor on empty matrices (the visitor is left unchanged), and protect min/maxCoeff(Index*,Index*) on empty matrices by an assertion (+ doc & unit tests) 2019-01-15 15:21:14 +01:00