mirror of
https://github.com/ROCm/jax.git
synced 2025-04-15 19:36:06 +00:00
DOC: add missing linalg functionality to docs
This commit is contained in:
parent
98ad016794
commit
c66f5dda60
@ -207,8 +207,10 @@ Linear algebra operators (jax.lax.linalg)
|
||||
lu
|
||||
qdwh
|
||||
qr
|
||||
schur
|
||||
svd
|
||||
triangular_solve
|
||||
tridiagonal_solve
|
||||
|
||||
Argument classes
|
||||
----------------
|
||||
|
@ -26,17 +26,21 @@ jax.scipy.linalg
|
||||
cholesky
|
||||
det
|
||||
eigh
|
||||
eigh_tridiagonal
|
||||
expm
|
||||
expm_frechet
|
||||
inv
|
||||
lu
|
||||
lu_factor
|
||||
lu_solve
|
||||
polar
|
||||
polar_unitary
|
||||
qr
|
||||
schur
|
||||
sqrtm
|
||||
solve
|
||||
solve_triangular
|
||||
sqrtm
|
||||
svd
|
||||
tril
|
||||
triu
|
||||
|
@ -1461,7 +1461,7 @@ xla.register_translation(tridiagonal_solve_p, xla.lower_fun(
|
||||
def tridiagonal_solve(dl, d, du, b):
|
||||
r"""Computes the solution of a tridiagonal linear system.
|
||||
|
||||
This function computes the solution of a tridiagonal linear system::
|
||||
This function computes the solution of a tridiagonal linear system:
|
||||
|
||||
.. math::
|
||||
A . X = B
|
||||
|
Loading…
x
Reference in New Issue
Block a user