aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/eigen3/unsupported
Commit message (Collapse)AuthorAge
* Move the NeuralNetwork code out of third_party/eigen3 and intoGravatar Benoit Steiner2016-03-23
| | | | | tensorflow/core/kernel. Change: 117941211
* Update Eigen NN headers in staging repo to match public contents.Gravatar Vijay Vasudevan2016-03-22
|
* TensorFlow: update eigen to latest change to fix TensorChippingGravatar Vijay Vasudevan2016-03-18
| | | | Change: 117570343
* TensorFlow: update eigen to latest release that has a fix to too large frame.Gravatar Vijay Vasudevan2016-03-18
| | | | Change: 117506296
* Added basic support for float16 on CPUs and older GPUs.Gravatar Benoit Steiner2016-03-18
| | | | | Also fixed compilation issues with cuda devices that support the compute model 5.3 Change: 117493644
* Upgraded to a newer version of Eigen that fixes a compilation error on AndroidGravatar Benoit Steiner2016-03-09
| | | | Change: 116831720
* Upgraded eigen to make it possible to compile a binary that takes advantage ofGravatar Benoit Steiner2016-03-09
| | | | | both avx instructions and cuda to run as fast as possible. Change: 116775924
* Upgraded to a new version of Eigen that adds the ability to pad using valuesGravatar Benoit Steiner2016-03-08
| | | | | other than 0 and significantly speeds up a number of computations on GPUs. Change: 116607765
* Added the ability to convert between floats and float16 on Kepler and MaxwellGravatar Benoit Steiner2016-03-05
| | | | | GPUs Change: 116409601
* Improved the performance of outer reductionsGravatar Benoit Steiner2016-03-01
| | | | Change: 116063261
* Improved the performance of narrow reductions on CUDAGravatar Benoit Steiner2016-02-29
| | | | Change: 115889721
* Upgraded Eigen to fix a compilation error triggered by xcodeGravatar Benoit Steiner2016-02-22
| | | | Change: 115280348
* Upgraded to the latest version of eigen, which adds a missing #includeGravatar Benoit Steiner2016-02-22
| | | | Change: 115268843
* Added support for half floats to eigen, which is the first step to support halfGravatar Benoit Steiner2016-02-22
| | | | | floats in TensorFlow. The code was tested on Tegra x1. Change: 115253733
* TensorFlow: update Eigen to non-broken GPU commit.Gravatar Vijay Vasudevan2016-02-12
| | | | Change: 114585944
* Switch the slow path in matrix_solve_ls to using ↵Gravatar A. Unique TensorFlower2016-02-11
| | | | | | | Eigen::CompleteOrthogonalDecomposition (COD), which I recently contributed to Eigen in https://bitbucket.org/eigen/eigen/pull-requests/163/implement-complete-orthogonal/diff The advantage of COD over column pivoted QR is that it is able to compute the minimum-norm solution when the matrix is rank-deficient, which is usually the desired behavior and makes it consistent with the fast path. Change: 114483303
* TensorFlow: change int -> size_t to silence warningGravatar Vijay Vasudevan2016-02-09
| | | | Change: 114243879
* Replay of PR #969 for eigen3Gravatar A. Unique TensorFlower2016-02-05
| | | | Change: 113963788
* Upgraded to the latest version of Eigen that brings misc performance andGravatar Benoit Steiner2016-02-04
| | | | | stability improvements Change: 113791782
* Backported several changes from the upstream version of EigenGravatar Benoit Steiner2016-01-29
| | | | Change: 113371678
* Fix OSS builds.Gravatar Vijay Vasudevan2016-01-26
| | | | Change: 113114631
* Running our linter on a lot of files.Gravatar Vijay Vasudevan2016-01-24
| | | | Change: 112920860
* Improved the performance of tensor contractions and spatial convolutions on CPU:Gravatar Benoit Steiner2016-01-22
| | | | | | * Move some checks out of inner loops * Split the mapper in 2: a base mapper, and a sub-mapper. This reduces the number of variables that are contained in the base mapper and helps reduce register spills Change: 112809881
* Upgrade to the latest version of eigen which improves the performance ofGravatar Benoit Steiner2016-01-15
| | | | | matrix-vector products and provides various fixes for CUDA. Change: 112298067
* Upgraded to the latest version of Eigen, which fixes a compilation error asGravatar Benoit Steiner2016-01-11
| | | | | well the crash reported in https://github.com/tensorflow/tensorflow/issues/713. Change: 111874622
* Rollback of "Pulled the latest version of Eigen, which offers much faster ↵Gravatar Vijay Vasudevan2016-01-08
| | | | | | reductions on GPU" Change: 111739152
* Added 'logging' import to control_flow_ops which is used in the file but not ↵Gravatar A. Unique TensorFlower2016-01-05
| | | | | | imported. Change: 110842260
* Switched to the open source version of EigenGravatar A. Unique TensorFlower2015-12-16
| | | | Change: 110406666
* TensorFlow: upstream changes from Eigen to make build workGravatar Vijay Vasudevan2015-12-08
| | | | with nvcc in debug mode.
* TensorFlow: upstream changes from eigen to fix build fromGravatar Vijay Vasudevan2015-12-02
| | | | changes in last commit.
* TensorFlow: Removal of large assets and small other fixes.Gravatar Vijay Vasudevan2015-11-18
| | | | | | | | | | | | | | | | | | | | | | | Changes: - Remove all large assets from the repoistory, incuding the other 50MiB model protobuf and a lot of images in our g3doc directory. We will maintain these assets externally for now. g3doc images may be broken for a little bit, but the website will be fine, which is the important resource. By @vrv and @petewarden. Updates READMES to reflect the external model resources. - Fix to saver's latest_checkpoint function by Zhifeng - Made protos visibility public by @vrv - Updates to docs by @mrry, Andy - Embed tensorboard resource for summary icon by Daniel - More updates to backwars compat by @josh11b Base CL: 108194981
* TensorFlow: Upstream changes from since last Thursday.Gravatar Vijay Vasudevan2015-11-16
| | | | | | | | | | | | | | | | | | | | | | Changes: - Bug fix to input.py by @dave-andersen with tests. - Some fixes to names in the whitepaper - Include cfloat for FLT_MAX by @benoitsteiner - Fix broken link in mnist tutorials by @mrry - Typos and fixes to documentation by @Sohl-Dickstein, @ebrevdo, @vrv, Yaroslav, @martinwicke - Fixed unnecessary check around a delete by @girving - More compatibility tests by @josh11b - Misc other typos and fixes by Googlers. Base CL: 107944070
* TensorFlow: Minor updates to docs, BUILD, GPU config / perf, etc.Gravatar Vijay Vasudevan2015-11-12
| | | | | | | | | | | | | | | | | | Changes: - Updates to op documentation and index by Josh - More changes to BUILD files for python 3 support by @girving - Fix to Eigen to use DenseIndex everywhere by @jiayq - Enable configuration for cuda compute capability by @zheng-xq, including updates to docs. - Route aggregation method through optimizer by schuster - Updates to install instructions for bazel 0.1.1. Base CL: 107702099
* TensorFlow: Upstream latest changes to Git.Gravatar Manjunath Kudlur2015-11-06
| | | | | | | | | Changes: - Updates to installation instructions. - Updates to documentation. - Minor modifications and tests for word2vec. Base CL: 107284192
* TensorFlow: Initial commit of TensorFlow library.Gravatar Manjunath Kudlur2015-11-06
TensorFlow is an open source software library for numerical computation using data flow graphs. Base CL: 107276108