aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Block.h
Commit message (Collapse)AuthorAge
* Merge Index-refactoring branch with default, fix PastixSupport, remove some ↵Gravatar Gael Guennebaud2015-02-13
|\ | | | | | | useless typedefs
| * Make Block<SparseMatrix> inherit SparseCompressedBase in the case of an ↵Gravatar Gael Guennebaud2015-02-09
| | | | | | | | inner-panels and fix valuePtr() innerIndexPtr()
* | bug #877, bug #572: Introduce a global Index typedef. Rename Sparse*::Index ↵Gravatar Christoph Hertzberg2014-12-04
|/ | | | to StorageIndex, make Dense*::StorageIndex an alias to DenseIndex. Overall this commit gets rid of all Index conversion warnings.
* Make cuda_basic test compile again by adding lots of EIGEN_DEVICE_FUNC.Gravatar Christoph Hertzberg2014-10-13
| | | | Although the test passes now, there might still be some missing.
* Remove deprecated code not used by evaluatorsGravatar Gael Guennebaud2014-09-18
|
* Fix compilation of coeff(Index) on sub-inner-panelsGravatar Gael Guennebaud2014-09-08
|
* Implement evaluators for sparse Block.Gravatar Gael Guennebaud2014-06-25
|
* merge with default branchGravatar Gael Guennebaud2014-06-20
|\
* | 1- Introduce sub-evaluator types for unary, binary, product, and map ↵Gravatar Gael Guennebaud2014-06-20
| | | | | | | | | | | | expressions to ease specializing them. 2- Remove a lot of code which should not be there with evaluators, in particular coeff/packet methods implemented in the expressions.
| * Enable LinearAccessBit in Block expression for inner-panelsGravatar Gael Guennebaud2014-06-06
| |
* | Fix regressions in redux_evaluator flags and evaluator<Block> flagsGravatar Gael Guennebaud2014-03-12
| |
* | Move evaluation related flags from traits to evaluator and fix evaluators of ↵Gravatar Gael Guennebaud2014-03-12
| | | | | | | | MapBase and Replicate
| * Reverted the definition of the EIGEN_ALIGN to its former meaning (i.e. a ↵Gravatar Benoit Steiner2014-02-18
|/ | | | | | | | boolean) Created a new EIGEN_ALIGN_BYTES define to encode how the data should be aligned Fixed a few remaining alignment issues exposed when the Eigen code is compiled with avx enabled. Created a new EIGEN_ALIGN_DEFAULT define, which is set to the minimum alignment value required for the chosen instruction set. Use this value instead of EIGEN_ALIGN32 to preserve the existing alignment on SSE/Altivec/Neon.
* merge with default branchGravatar Gael Guennebaud2013-11-05
|\
* | Fixed InnerPanel definition in the Transformation class.Gravatar Hauke Heibel2013-08-27
| | | | | | | | Added some inital documentation on InnerPanel.
| * merge with default branchGravatar Gael Guennebaud2013-04-19
| |\ | |/ |/|
* | Workaround the following warning: "assuming signed overflow does not occur ↵Gravatar Gael Guennebaud2013-02-15
| | | | | | | | when assuming that (X + c) < X is always false"
| * Add support for NVCC5: most of the Core and part of LU are callable from ↵Gravatar Gael Guennebaud2013-02-07
|/ | | | | | CUDA code. Still a lot to do.
* Fix compilation of Block/SparseBlock with MSVCGravatar Gael Guennebaud2012-12-16
|
* Generalize Block<> to support various implementation wrt StorageKind (just ↵Gravatar Gael Guennebaud2012-11-16
| | | | like other expression)
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* fix most of the shadow warnings in Core/*.hGravatar Gael Guennebaud2012-06-22
|
* Get rid of include directives inside namespace blocks (bug #339).Gravatar Jitse Niesen2012-04-15
|
* declare Block::m_outerStride as Index (instead of int)Gravatar Gael Guennebaud2012-03-09
|
* fix several const qualifier issues: double ones, meaningless ones, some ↵Gravatar Gael Guennebaud2012-02-03
| | | | | | missing ones, etc. (note that const qualifiers are set by internall::nested)
* Fix MSVC integer overflow warningGravatar Sebastian Lipponer2011-12-09
|
* fix alignment computation in Block and MapBase such that aligned means ↵Gravatar Gael Guennebaud2011-11-28
| | | | | | | aligned on 16 bytes and nothing else (transplanted from dcb36e3d49f25566a1733846cd4d6592bf8be0c4 )
* Do some of the actual work in evaluator for Block.Gravatar Jitse Niesen2011-04-04
| | | | Also, add simple accessor methods to Block expression class.
* Removed internal::as_argument. This fixes the alignment issues of bug #165.Gravatar Hauke Heibel2011-02-06
|
* third pass of const-correctness fixes (bug #54), hopefully the last one...Gravatar Benoit Jacob2011-01-07
|
* Fixed #148 where a const-accessor for coefficients was missing in the ↵Gravatar Hauke Heibel2011-01-04
| | | | MatrixWrapper.
* bug #54 - really fix const correctness except in SparseGravatar Benoit Jacob2010-12-22
|
* Initial fixes for bug #85.Gravatar Hauke Heibel2010-10-25
| | | | | | | Renamed meta_{true|false} to {true|false}_type, meta_if to conditional, is_same_type to is_same, un{ref|pointer|const} to remove_{reference|pointer|const} and makeconst to add_const. Changed boolean type 'ret' member to 'value'. Changed 'ret' members refering to types to 'type'. Adapted all code occurences.
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* Fix Sun CC parsing of Eigen/Core. In particular,Gravatar Gael Guennebaud2010-08-25
| | | | | I moved all the block related methods to a plugin file. This also significantly reduce code verbosity.
* allow vectorization of mat44.col() by adding a InnerPanel booleanGravatar Gael Guennebaud2010-07-23
| | | | template parameter to Block
* merge the backoutGravatar Benoit Jacob2010-08-11
|\
| * Backed out changeset 40f6e26a247976ba1868520a4747e49e0739a42aGravatar Benoit Jacob2010-08-11
| | | | | | | | See thread on mailing list: "InnerPanel change mis-detects alignment?"
* | Add examples for API documentation of block methods in DenseBase.Gravatar Jitse Niesen2010-07-23
|/
* allow vectorization of mat44.col() by adding a InnerPanel booleanGravatar Gael Guennebaud2010-07-23
| | | | template parameter to Block
* Renamed DenseBase::{row,col}Range() to DenseBase::middle{Rows,Cols}()Gravatar Manoj Rajagopalan2010-06-29
|
* Included definitions for rowRange() and colRange() member functions of DenseBaseGravatar Manoj Rajagopalan2010-06-26
|
* introduce a new LvalueBit flag and split DenseCoeffBase into three level of ↵Gravatar Gael Guennebaud2010-07-21
| | | | accessors
* Various documentation improvements.Gravatar Jitse Niesen2010-07-06
| | | | | | | * Add short documentation for Array class * Put all classes explicitly in Core module (where applicable) * Section on Modules in Quick Reference Guide * Put Page 7 after Page 6 in Contents :)
* email changeGravatar Gael Guennebaud2010-06-24
|
* Fixes #104.Gravatar Hauke Heibel2010-06-02
|
* the Index types change.Gravatar Benoit Jacob2010-05-30
| | | | As discussed on the list (too long to explain here).
* bug fix, since the last storage order changes, this InnerSize calculation ↵Gravatar Benoit Jacob2010-05-18
| | | | was wrong
* cache outer size in Block => x1.5 speed up for a.block() = b.block()Gravatar Gael Guennebaud2010-05-17
|
* remove MakeBase, use ei_dense_xpr_base insteadGravatar Benoit Jacob2010-04-23
| | | | (yes, it was only used in dense xprs anyway)