Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | added Eigen::FFT and | Mark Borgerding | 2009-10-20 |
|\ | | | | | | | Eigen::Complex | ||
* | | Added Windows support to the BenchTimer. | Hauke Heibel | 2009-10-20 |
| | | |||
| * | merged eigen2_for_fft into eigen2 mainline | Mark Borgerding | 2009-10-20 |
|/| | |||
* | | * add a Make* expression type builder to allow the | Gael Guennebaud | 2009-10-16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | construction of generic expressions working for both dense and sparse matrix. A nicer solution would be to use CwiseBinaryOp for any kind of matrix. To this end we either need to change the overall design so that the base class(es) depends on the kind of matrix, or we could add a template parameter to each expression type (e.g., int Kind = ei_traits<MatrixType>::Kind) allowing to specialize each expression for each kind of matrix. * Extend AutoDiffScalar to work with sparse vector expression for the derivatives. | ||
* | | add operator+ scalar to AutoDiffScalar | Gael Guennebaud | 2009-10-16 |
| | | |||
* | | Inlining fixes + fixed typo. | Hauke Heibel | 2009-10-15 |
| | | | | | | | | Removed ei_assert in presence of static assert. | ||
* | | autodiff: | Gael Guennebaud | 2009-10-15 |
| | | | | | | | | | | | | * fix namespace issue * simplify Jacobian code * fix issue with "Dynamic derivatives" | ||
* | | More warning fixes. | Hauke Heibel | 2009-10-14 |
| | | |||
* | | Fixed more W4 warnings. | Hauke Heibel | 2009-10-14 |
| | | |||
* | | Resize is only defined in Matrix and not in MatrixBase. | Hauke Heibel | 2009-10-14 |
| | | | | | | | | I am not sure whether the better fix is to move the resize functions to MatrixBase. | ||
* | | Added prod() reduction to the AsciiQuickReference. | Hauke Heibel | 2009-10-14 |
| | | |||
* | | add missing PartialReduxExpr::coeff(index) function | Gael Guennebaud | 2009-10-13 |
| | | |||
* | | compilation fix: make the generic template ctor explicit | Gael Guennebaud | 2009-10-13 |
| | | |||
* | | trivial compilation fix | Gael Guennebaud | 2009-10-13 |
| | | |||
* | | also test that the matrix Q is unitary | Benoit Jacob | 2009-10-12 |
| | | |||
* | | Fixed nmake parameter. | Hauke Heibel | 2009-10-09 |
| | | | | | | | | | | Disabled debug_* targets for MSVC_IDE (they already exist). Removed the make usage message for MSVC_IDE. | ||
* | | merge | Gael Guennebaud | 2009-10-07 |
|\ \ | |||
* | | | extend the sparse matrix assembly benchmark | Gael Guennebaud | 2009-10-07 |
| | | | |||
* | | | really fix stable norm compilation for older gcc | Gael Guennebaud | 2009-10-07 |
| | | | |||
* | | | - remove the debug_test_* targets from "all" | Gael Guennebaud | 2009-10-07 |
| | | | | | | | | | | | | | | | | | | (otherwise they are compiled when you simply run make in test/ or when enforcing "test" to be part of "all") - add linking libraries to the debug_test_* targets | ||
| * | | the answer to the ultimate question in life is: 664 | Benoit Jacob | 2009-10-06 |
| | | | |||
| * | | merge | Benoit Jacob | 2009-10-06 |
| |\ \ | |/ / |/| | | |||
| * | | allow arbitrary resulttype, fixes Xuewen's issue, and this stuff is going to ↵ | Benoit Jacob | 2009-10-06 |
| | | | | | | | | | | | | get deeply refactored soon anyway. | ||
* | | | fix compilation in stable norm, move a platform check to the unit tests | Gael Guennebaud | 2009-10-06 |
| | | | |||
* | | | discard vectorization in matrix-vector product when data is not even | Gael Guennebaud | 2009-10-05 |
|/ / | | | | | | | aligned on the scalar type size (e.g., for double on 32 bits system without -malign-double) | ||
* | | after all we're not aligning to 8byte boundary | Benoit Jacob | 2009-10-05 |
| | | | | | | | | keep most of the changes though as they make the code more extensible | ||
* | | merge | Benoit Jacob | 2009-10-05 |
|\ \ | |||
* | | | we were already aligning to 16 byte boundary fixed-size objects that are ↵ | Benoit Jacob | 2009-10-05 |
| | | | | | | | | | | | | | | | | | | | | | | | | multiple of 16 bytes; now we also align to 8byte boundary fixed-size objects that are multiple of 8 bytes. That's only useful for now for double, not e.g. for Vector2f, but that didn't seem to hurt. Am I missing something? Do you prefer that we don't align Vector2f at all? Also, improvements in test_unalignedassert. | ||
| * | | added cygwin specific stuff | Hauke Heibel | 2009-10-05 |
|/ / | |||
* | | remove unneeded stuff | Benoit Jacob | 2009-10-05 |
| | | |||
* | | next attempt ... introduce EIGEN_CMAKE_RUN_FROM_CTEST, in that case don't ↵ | Benoit Jacob | 2009-10-05 |
| | | | | | | | | EXCLUDE_FROM_ALL | ||
* | | finally, the right fix: set CTEST_BUILD_TARGET. | Benoit Jacob | 2009-10-04 |
| | | | | | | | | So this is the come-back of btest target, and the default target is empty again. | ||
* | | dd first-time tip, to warn against doing "make". | Benoit Jacob | 2009-10-03 |
| | | | | | | | | now i think we're reasonably safe. | ||
* | | use provided $USER if available, let the caller do the update (safer) | Thomas Capricelli | 2009-10-04 |
| | | |||
* | | add INSTALL and message about no need to do "make" | Benoit Jacob | 2009-10-03 |
| | | |||
* | | add debug targets like debug_qr to build a specific test with debug info | Benoit Jacob | 2009-10-03 |
| | | | | | | | | remove the btest target, instead just do "make" since anyway we have to let "make" build the tests | ||
* | | fix #59, can't EXCLUDE_FROM_ALL the test directory | Benoit Jacob | 2009-10-03 |
| | | |||
* | | Added cmake project definitions. | Hauke Heibel | 2009-10-02 |
| | | |||
* | | forgot to hg add this file | Benoit Jacob | 2009-10-02 |
| | | |||
* | | fix permissions 666->660 | Benoit Jacob | 2009-10-02 |
| | | |||
* | | finally, actually purge the Main Page | Benoit Jacob | 2009-10-02 |
| | | |||
* | | merge | Gael Guennebaud | 2009-10-01 |
|\ \ | |||
* | | | better fix for (v * v') * v, we still have to find a way to reorder it | Gael Guennebaud | 2009-10-01 |
| | | | |||
| * | | merge | Benoit Jacob | 2009-10-01 |
|/| | | |||
* | | | Fixed wrong line endings. | Hauke Heibel | 2009-10-01 |
| | | | |||
| * | | make Replicate ctor require the exact expected type | Benoit Jacob | 2009-09-30 |
|/ / | |||
* | | bugfix in the eigenvalue solvers (forgot to resize the eigen vectors) | Gael Guennebaud | 2009-09-30 |
| | | |||
* | | *add test to prevent future regression | Benoit Jacob | 2009-09-29 |
| | | |||
* | | add outerproduct coeff(int,int) method. | Benoit Jacob | 2009-09-29 |
| | | | | | | | | | | | | This is needed to make this expression work: (vec1*vec2.transpose())*vec3 Gael, no objection? Seems to make sense as that's fast. | ||
* | | more message improvements, tell the user about building a specific test | Benoit Jacob | 2009-09-28 |
| | |