aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/ops/linalg_ops.py
Commit message (Expand)AuthorAge
* Updating function and class tf_export decorators for endpoints according toGravatar Anna R2018-10-01
* Fix tf.svd example codeGravatar A. Unique TensorFlower2018-07-12
* fix non-whitelited pylint errorsGravatar wenhao.hu2018-04-17
* move eye to linalg_ops_implGravatar Wenhao Hu2018-04-15
* Merge branch 'master' into support-matrix-2-normGravatar Wenhao Hu2018-04-07
|\
* | use abs instead of castGravatar Wenhao Hu2018-03-31
* | cast svd output to float32 and use keepdims in test casesGravatar Wenhao Hu2018-03-31
* | clean the pollution of axisGravatar wenhao.hu2018-03-28
| * Fix tf.svd docs issue (#17960)Gravatar Yong Tang2018-03-24
* | remove test codeGravatar Wenhao Hu2018-03-18
* | use tf function instead of npGravatar Wenhao Hu2018-03-18
| * Add doc on the order of eigenvalues returned by tf.self_adjoint_eig (#16909)Gravatar Jiongyan Zhang (张炯衍)2018-03-16
* | remove unnecessary lambdaGravatar Wenhao Hu2018-03-16
* | follow python coding styleGravatar Wenhao Hu2018-03-16
* | implement matrix 2-normGravatar Wenhao Hu2018-03-16
|/
* Removing underscore prefixes from hidden generated Python functions.Gravatar Anna R2018-02-28
* Adding tf_export decorators/calls to TensorFlow functions and constants.Gravatar Anna R2018-01-22
* Merge changes from github.Gravatar Yifei Feng2017-11-22
* Automated g4 rollback of changelist 176615107Gravatar Yifei Feng2017-11-22
* Automated g4 rollback of changelist 176615737Gravatar Yifei Feng2017-11-22
* Merged commit includes the following changes:Gravatar A. Unique TensorFlower2017-11-22
* Merge changes from github.Gravatar Yifei Feng2017-11-21
* Update documentation for SVD to make the differences with numpy.linalg.svd cl...Gravatar A. Unique TensorFlower2017-10-25
* Fix description of tf.norm as it doesn't actually accept `ord=0`.Gravatar A. Unique TensorFlower2017-09-13
* * Add GPU support for matrix_solve_ls by implement the default fast path a co...Gravatar A. Unique TensorFlower2017-08-30
* Add unit tests and fix broken gradient calculation for tf.self_adjoint_eigvals.Gravatar A. Unique TensorFlower2017-08-21
* Make tf.eye accept Python integer shapes and avoid generating unnecessary sha...Gravatar A. Unique TensorFlower2017-08-18
* Remove ```prettyprint code blocks, they don't render properly.Gravatar Martin Wicke2017-05-26
* Fixes tf.norm for complex valued inputs.Gravatar A. Unique TensorFlower2017-05-22
* Clarifies the singular value ordering.Gravatar Alexandre Passos2017-04-28
* Merge changes from github.Gravatar A. Unique TensorFlower2017-04-04
* Add backtic in docstring for tf.norm.Gravatar A. Unique TensorFlower2017-03-13
* "the the" -> "the"Gravatar A. Unique TensorFlower2017-02-21
* Update docstring for SVD to emphasize that output argument order differs from...Gravatar A. Unique TensorFlower2017-01-12
* Switch tf.concat_v2 references in third_party/tensorflow to tf.concat.Gravatar A. Unique TensorFlower2017-01-10
* Change parameter 'order' to tf.norm to 'ord' for numpy compatibility.Gravatar A. Unique TensorFlower2016-12-20
* Add an op for matrix norm, implementing a subset of numpy.linalg.norm.Gravatar A. Unique TensorFlower2016-12-15
* Switch all tf.concat(concat_dim, value, name) calls in third_party/tensorflow...Gravatar A. Unique TensorFlower2016-12-06
* Automated rollback of change 139400135Gravatar Jonathan Hseu2016-11-18
* Rename `Tensor` to `Output` in all Python docsGravatar Jonathan Hseu2016-11-16
* Make the python default for shape fn be call_cpp_shape_fn.Gravatar A. Unique TensorFlower2016-11-14
* changing the order of tf.svd's arguments to be the same as numpy'sGravatar Olivia Nordquist2016-11-02
* Identity matrix constructor added to linalg_ops.Gravatar Ian Langmore2016-10-13
* Add gradient for self_adjoint_eig op. Make the unit test sharded.Gravatar A. Unique TensorFlower2016-09-13
* Replace most linear algebra ops with their batch versions and deprecateGravatar A. Unique TensorFlower2016-09-09
* Add support for complex SVD. This is a cleaned up version of PR #3976.Gravatar A. Unique TensorFlower2016-09-02
* Delegate to C++ shape functions for linalg ops and several nn_ops.Gravatar A. Unique TensorFlower2016-08-31
* Deprecate op_scope by extending name_scope and move all callers to the new na...Gravatar Lukasz Kaiser2016-08-09
* Changes {batch_}self_adjoint_eig ops to return eigenvalues and eigenvectors a...Gravatar A. Unique TensorFlower2016-08-04
* Add an op for singular value decomposition (SVD) of a dense matrix or batches...Gravatar A. Unique TensorFlower2016-08-01