Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | * dynamically adjust the number of threads | 2010-03-05 | |
| | | | | * disbale parallelisation if we already are in a parallel session | ||
* | fix openmp version for scalar types different than float | 2010-03-05 | |
| | |||
* | remove the 1D and 2D parallelizer, keep only the GEMM specialized one | 2010-03-05 | |
| | |||
* | minor cleaning | 2010-03-05 | |
| | |||
* | merge | 2010-03-05 | |
|\ | |||
| * | enable posix_memalign for QNX | 2010-03-05 | |
| | | |||
* | | merge | 2010-03-04 | |
|\| | |||
| * | merge | 2010-03-04 | |
| |\ | |||
| * | | make the number of registers easier to configure per architectures | 2010-03-04 | |
| | | | |||
* | | | merge with default branch | 2010-03-04 | |
|\| | | |||
| | * | Moved x()/y()/z() and w() access functions to DenseBase; they are now ↵ | 2010-03-04 | |
| | | | | | | | | | | | | available for Arrays as well. | ||
| * | | add a minor FIXME | 2010-03-04 | |
| |/ | |||
| * | integer division is vectorizable on no SIMD platform, not just SSE. | 2010-03-04 | |
| | | |||
| * | minor cleanup | 2010-03-03 | |
| | | |||
| * | factorize default performance related settings to a single file | 2010-03-03 | |
| | | | | | | | | | | included after the architecture specific files such that they can be adapted by each platform. | ||
| * | Added initial NEON support, most tests pass however we had to use some ↵ | 2010-03-03 | |
| | | | | | | | | | | | | | | | | hackish workarounds as gcc on ARM (both CodeSourcery 4.4.1 used and experimental 4.5) fail to ensure proper alignment with __attribute__((aligned(16))). This has to be fixed upstream to remove the workarounds. | ||
| * | cleanup/simplification in computation of matrix flags | 2010-03-03 | |
| | | |||
| * | merge | 2010-03-03 | |
| |\ | |||
| | * | Backed out changeset 2f3d685e0c687ae1121428dab6bc0ec868b14fe3 | 2010-03-03 | |
| | | | | | | | | | | | | This was implementing deep changes that after discussion on the mailing list seem to need further discussion/thinking. | ||
| * | | Adapted the comment and removed it from the public dox. | 2010-03-03 | |
| | | | |||
| * | | product selector: the symmetric case | 2010-03-02 | |
| | | | |||
| * | | Added a comment to prevent placing an EIGEN_STRONG_INLINE where it makes no ↵ | 2010-03-02 | |
| | | | | | | | | | | | | sense. | ||
| * | | Changed product type selector to fix perf regression. | 2010-03-02 | |
| |/ | |||
| * | a matrix (or array) does not always have the LinearAccessBit! | 2010-03-02 | |
| | | | | | | | | => fixes in outerStride and matrix flags | ||
| * | selfadjoint: do not reference the imaginary part of the diagonal | 2010-03-02 | |
| | | |||
| * | Fixes a compilation issue for MSVC. | 2010-03-01 | |
| | | |||
* | | rm useless omp shared directive | 2010-03-01 | |
| | | |||
* | | remove Qt's atomic dependency, I don't know what I was doing wrong... | 2010-03-01 | |
| | | |||
* | | GEMM: move the first packing of A' before the packing of B' | 2010-03-01 | |
| | | |||
* | | make Aron's idea work using Qt's atomic implementation for the synchronisation | 2010-03-01 | |
| | | |||
| * | remove the hack to make the static assertion on types actually show up. | 2010-02-28 | |
| | | | | | | | | indeed, now that we use the meta selector for transposing as needed, the static asserts work very well. | ||
| * | forgot defined(...) | 2010-02-28 | |
| | | |||
| * | on 64-bit systems, glibc's malloc returns 16-byte aligned ptrs, and we now ↵ | 2010-02-28 | |
| | | | | | | | | take advantage of that. | ||
| * | * fix ei_handmade_aligned_realloc (was calling realloc on wrong ptr) | 2010-02-28 | |
| | | | | | | | | | | * add missing std:: (at least for QNX compatibility) * add big comments to "structure" the file | ||
| * | Added a generic reallocation implementation based on ei_aligned_malloc/_free. | 2010-02-28 | |
| | | | | | | | | | | | | Rewrote ei_handmade_aligned_realloc such that it is now using std::realloc. Reorganized functions in Memory.h for better readability. Add missing <cerrno> include to Core (it's now required in Memory.h). | ||
| * | Hide some internal stuff from the docs. | 2010-02-28 | |
| | | |||
| * | Only include <iosfwd> unless either EIGEN_DEBUG_ASSIGN is defined or we're ↵ | 2010-02-27 | |
| | | | | | | | | in eigen2 support mode | ||
| * | add ei_posix_memalign_realloc | 2010-02-27 | |
| | | |||
| * | add missing inline keyword, thanks to Eamon. | 2010-02-27 | |
| | | |||
| * | Added support for realloc based conservative resizing. | 2010-02-27 | |
| | | |||
| * | Fixed a typo. | 2010-02-27 | |
| | | |||
| * | dot: handle the rowvector.dot(colvector) case where one needs to transpose. | 2010-02-27 | |
| | | |||
| * | Remove the dot product's separate implementation and use cwiseProduct.sum ↵ | 2010-02-27 | |
| | | | | | | | | | | | | instead. Also take special care to get nicely working static assertions. | ||
| * | merge | 2010-02-26 | |
| |\ | |||
| * | | let redux use the new ByOuterInner accessors | 2010-02-26 | |
| | | | |||
| * | | Document Map and Stride, add examples. | 2010-02-26 | |
| | | | |||
| * | | Fix Map-with-Stride and cover it by new unit tests. | 2010-02-26 | |
| | | | |||
* | | | implement Aron's idea of interleaving the packing with the first computations | 2010-02-26 | |
| | | | |||
| | * | Fixed perf problems for vector subtraction: inlining wasn't always happening ↵ | 2010-02-26 | |
| | | | | | | | | | | | | when necessary. | ||
| * | | * add VERIFY_IS_EQUAL, should compile faster and it's natural when no ↵ | 2010-02-26 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | arithmetic is involved. * rename 'submatrices' test to 'block' * add block-inside-of-block tests * remove old cruft * split diagonal() tests into separate file |