aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/eigen3/BUILD
Commit message (Collapse)AuthorAge
* Add //tensorflow:install_headers targetGravatar Jason Zaman2018-09-05
| | | | | | | Used to prepare all the header files so they can easily be installed into /usr/include when packaging TF. Signed-off-by: Jason Zaman <jason@perfinion.com>
* Merge changes from github.Gravatar Yifei Feng2018-07-02
| | | | PiperOrigin-RevId: 203037623
* Buildifier cleanup.Gravatar Yifei Feng2018-01-22
| | | | PiperOrigin-RevId: 182829120
* Added CPU matrix exponential op to TensorFlow.Gravatar A. Unique TensorFlower2017-11-07
| | | | | | Uses Eigen's unsupported implementation. PiperOrigin-RevId: 174858966
* Add a BUILD file for makefile build.Gravatar Gunhan Gulsoy2017-10-20
| | | | PiperOrigin-RevId: 172933558
* Merge changes from github.Gravatar Vijay Vasudevan2017-02-17
| | | | Change: 147897309
* Internal change.Gravatar A. Unique TensorFlower2017-02-09
| | | | Change: 147051664
* Deleted references to non existent //third_party/mkl libraryGravatar Benoit Steiner2017-02-08
| | | | Change: 146970526
* Merge changes from github.Gravatar Benoit Steiner2017-02-08
| | | | Change: 146918929
* Sync the github and local versions of the ThreadPool headerGravatar Benoit Steiner2016-12-15
| | | | Change: 142169284
* Add licenses.Gravatar A. Unique TensorFlower2016-11-28
| | | | Change: 140396287
* Merge changes from github.Gravatar Benoit Steiner2016-11-09
| | | | Change: 138675832
* Optimize Bazel external dependenciesGravatar Justine Tunney2016-09-21
| | | | | | | | | | | | | | | | | | | | | | This change does the following: - Always use {,new_}http_archive rather than git_repository - Make liberal use of strip_prefix - Clarify licenses() in BUILD files - On POSIX include headers like a normal C/C++ program This change accomplishes the following: - Reduce download size >100MB: The biggest culprit is grpc which has tens of thousands of commits in its GitHub repository. - Reduce disk size >200MB: On disk, grpc takes up 250MB when cloned even though the tarball of the git repo is 3.2MB. By never using git externals, we save on network. - Consume less cpu: Cloning git repositories is much slower than downloading and extracting a tarball. Change: 133895791
* Add an op for singular value decomposition (SVD) of a dense matrix or ↵Gravatar A. Unique TensorFlower2016-08-01
| | | | | | | | | | | | | batches of dense matrices. This calls Eigen::JacobiSVD<Matrix, Eigen::HouseholderQRPreconditioner> which is known to be rather slow. This change is primarily intended to get the TensorFlow interfaces and functionality in place. We intend to swap out the "backend" with a higher performance algorithm implementation in the future. This CL also contains a small refactoring of the LinearAlgebraOp base class: 1. I moved the initial processing of inputs and outputs into separate helper functions so Compute() is not so long. 2. The derived classes are now allowed to return fewer output matrix shapes (n) than the number of op outputs (m) in which case empty (shape[0]) tensors are returned for the last m-n outputs. Fixed a few Python linter errors that were blocking presubmit. Change: 128990912
* Merge changes from github.Gravatar Martin Wicke2016-07-25
| | | | Change: 128401884
* Switched to the latest version of Eigen that provides significant performanceGravatar Benoit Steiner2016-07-12
| | | | | | improvements for fp16 Added SpecialFunctions to the list of eigen headers TensorFlow depends on Change: 127264575
* Move the NeuralNetwork code out of third_party/eigen3 and intoGravatar Benoit Steiner2016-03-23
| | | | | tensorflow/core/kernel. Change: 117941211
* Re-rollback of "TensorFlow: move eigen some NN code from our ↵Gravatar Vijay Vasudevan2016-03-18
| | | | | | | third_party/eigen3 copy to being part of TF, add tests." Change: 117608627
* Rollforward of "TensorFlow: move eigen some NN code from our ↵Gravatar Vijay Vasudevan2016-03-18
| | | | | | | third_party/eigen3 copy to being part of TF, add tests." Change: 117587217
* Rollback of "TensorFlow: move eigen some NN code from our third_party/eigen3 ↵Gravatar Vijay Vasudevan2016-03-18
| | | | | | | copy to being part of TF, add tests." Change: 117519243
* TensorFlow: move eigen some NN code from our third_party/eigen3 copyGravatar Vijay Vasudevan2016-03-18
| | | | | to being part of TF, add tests. Change: 117509710
* Rollback of "Add new matrix_solve_ls op for solving linear least-squares ↵Gravatar A. Unique TensorFlower2016-01-26
| | | | | | | problems." Doesn't work in OSS Change: 113103348
* Change: 110415111Gravatar Vijay Vasudevan2015-12-16
|
* Change: 110413131Gravatar Vijay Vasudevan2015-12-16
|
* Switched to the open source version of EigenGravatar A. Unique TensorFlower2015-12-16
| | | | Change: 110406666
* TensorFlow: upstream changes to gitGravatar Manjunath Kudlur2015-12-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change 109195845 Fix TensorFlow for build against Bazel 0.1.2rc2 Two things are currently broken with TensorFlow and Bazel 0.1.2: - Bazel now use sandboxing by default on Linux and have fixed it for cc_* rules. Undeclared headers are not mounted in the sandbox which make several cc_* rules fails. - Bazel now enforce strict header checking and some target were missing headers even though the headers were mounted in the sandbox. This change adds a "strict_headers" target that globs every headers of the core library and add it to the `tf_cc_tests` targets. Change 109162708 Fix various website issues - Fix headline in os_setup.md - Fix #anchor links Change 109162129 Fix numbers in mnist tutorial, fixes #362 Change 109158967 Fix typo in word2vec tutorial, fixes #347 Change 109151855 Fix tile and its gradient for scalars on GPUs Eigen doesn't handle scalars on GPUs in all cases. Fortunately, both tile and its gradient are the identity for scalars, so we can just copy the input to the output. Fixes https://github.com/tensorflow/tensorflow/issues/391. Change 109140763 Support int32 and int64 in tf.random_uniform This requires a new RandomUniformInt op on the C++ side since the op needs to know minval and maxval. Fixes https://github.com/tensorflow/tensorflow/issues/364. Change 109140738 Fix spacing in docs. Change 109140030 Fix content nav to not hide the bottom 100 or so px. Change 109139967 Add license files to TensorBoard files, fix mnist_with_summaries test Change 109138333 Fix typos in docstring Change 109138098 Fix some missing resources in the website. Fixes #366. Change 109123771 Make sparse_to_dense's default_value default to 0 Nearly all uses of sparse_to_dense use 0 as the default. The same goes for sparse_tensor_to_dense. Base CL: 109198336
* 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