aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported
Commit message (Collapse)AuthorAge
* Enable and fix -Wdouble-conversion warningsGravatar Christoph Hertzberg2016-05-05
|
* Reduced the memory footprint of the cxx11_tensor_image_patch testGravatar Benoit Steiner2016-05-04
|
* Removed extraneous 'explicit' keywordsGravatar Benoit Steiner2016-05-04
|
* Use numext::isfinite instead of std::isfiniteGravatar Benoit Steiner2016-05-03
|
* Added a test to validate the computation of exp and log on 16bit floatsGravatar Benoit Steiner2016-05-03
|
* Deleted superfluous explicit keyword.Gravatar Benoit Steiner2016-05-03
|
* Fixed compilation errorGravatar Benoit Steiner2016-05-01
|
* Added missing accessors to fixed sized tensorsGravatar Benoit Steiner2016-04-29
|
* Deleted trailing commasGravatar Benoit Steiner2016-04-29
|
* Deleted useless trailing commasGravatar Benoit Steiner2016-04-29
|
* Deleted unnecessary trailing commas.Gravatar Benoit Steiner2016-04-29
|
* Fixed compilation errors generated by clangGravatar Benoit Steiner2016-04-29
|
* Added a few tests to ensure that the dimensions of rank 0 tensors are ↵Gravatar Benoit Steiner2016-04-29
| | | | correctly computed
* Return the proper size (ie 1) for tensors of rank 0Gravatar Benoit Steiner2016-04-29
|
* Made several tensor tests compatible with cxx03Gravatar Benoit Steiner2016-04-29
|
* Moved a number of tensor tests that don't require cxx11 to work properly ↵Gravatar Benoit Steiner2016-04-29
| | | | outside the EIGEN_TEST_CXX11 test section
* Fixed teh cxx11_tensor_empty test to compile without requiring cxx11 supportGravatar Benoit Steiner2016-04-29
|
* Deleted unused default values for template parametersGravatar Benoit Steiner2016-04-29
|
* Made a coupe of tensor tests compile without requiring c++11 support.Gravatar Benoit Steiner2016-04-29
|
* Made the cxx11_tensor_forced_eval compile without c++11.Gravatar Benoit Steiner2016-04-29
|
* Restore Tensor support for non c++11 compilersGravatar Benoit Steiner2016-04-29
|
* Fixed include pathGravatar Benoit Steiner2016-04-29
|
* Fixed a few memory leaksGravatar Benoit Steiner2016-04-28
|
* Fix missing inclusion of Eigen/CoreGravatar Gael Guennebaud2016-04-27
|
* Use computeProductBlockingSizes to compute blocking for both ShardByCol and ↵Gravatar Rasmus Munk Larsen2016-04-27
| | | | ShardByRow cases.
* Refactor the unsupported CXX11/Core module to internal headers only.Gravatar Gael Guennebaud2016-04-26
|
* Fixed the partial evaluation of non vectorizable tensor subexpressionsGravatar Benoit Steiner2016-04-25
|
* Refined the cost of the striding operation.Gravatar Benoit Steiner2016-04-25
|
* Provide access to the base threadpool classesGravatar Benoit Steiner2016-04-21
|
* Added the ability to switch to the new thread pool with a #defineGravatar Benoit Steiner2016-04-21
|
* Fixed several compilation warningsGravatar Benoit Steiner2016-04-21
|
* Use EIGEN_THREAD_YIELD instead of std::this_thread::yield to make the code ↵Gravatar Benoit Steiner2016-04-21
| | | | more portable.
* Don't crash when attempting to reduce empty tensors.Gravatar Benoit Steiner2016-04-20
|
* Added more testsGravatar Benoit Steiner2016-04-20
|
* Started to implement a portable way to yield.Gravatar Benoit Steiner2016-04-19
|
* Implemented a more portable version of thread local variablesGravatar Benoit Steiner2016-04-19
|
* Fixed a few typosGravatar Benoit Steiner2016-04-19
|
* Fixed a compilation error with nvcc 7.Gravatar Benoit Steiner2016-04-19
|
* Simplified the code that launches cuda kernels.Gravatar Benoit Steiner2016-04-19
|
* Don't take the address of a kernel on CUDA devices that don't support this ↵Gravatar Benoit Steiner2016-04-19
| | | | feature.
* Use numext::ceil instead of std::ceilGravatar Benoit Steiner2016-04-19
|
* Avoid an unnecessary copy of the evaluator.Gravatar Benoit Steiner2016-04-19
|
* Fixed 2 recent regression testsGravatar Benoit Steiner2016-04-19
|
* Use DenseIndex in the MeanReducer to avoid overflows when processing very ↵Gravatar Benoit Steiner2016-04-19
| | | | large tensors.
* Worked around the lack of a rand_r function on windows systemsGravatar Benoit Steiner2016-04-17
|
* Worked around the lack of a rand_r function on windows systemsGravatar Benoit Steiner2016-04-17
|
* Move the evalGemm method into the TensorContractionEvaluatorBase class to ↵Gravatar Benoit Steiner2016-04-15
| | | | make it accessible from both the single and multithreaded contraction evaluators.
* Deleted unnecessary variableGravatar Benoit Steiner2016-04-15
|
* Fixed a few compilation warningsGravatar Benoit Steiner2016-04-15
|
* Merged in rmlarsen/eigen (pull request PR-178)Gravatar Benoit Steiner2016-04-15
|\ | | | | | | Eigen Tensor cost model part 2: Thread scheduling for standard evaluators and reductions.