Skip to content

Commit

Permalink
feat: add numpy.linalg functions (#77)
Browse files Browse the repository at this point in the history
Signed-off-by: nstarman <nstarman@users.noreply.github.com>
  • Loading branch information
nstarman authored Sep 15, 2024
1 parent d289c6f commit 4ffe7f2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/quaxed/numpy/linalg.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,31 @@
"""Quaxed :mod:`jax.numpy.linalg`."""

__all__ = [ # noqa: F822
"cholesky",
"cross",
"det",
"diagonal",
"eig",
"eigh",
"eigvalsh",
"inv",
"matmul",
"matrix_norm",
"matrix_power",
"matrix_rank",
"matrix_transpose",
"outer",
"pinv",
"qr",
"slogdet",
"solve",
"svd",
"svdvals",
"tensordot",
"trace",
"vecdot",
"vector_norm",
"norm",
]

import sys
Expand Down

0 comments on commit 4ffe7f2

Please sign in to comment.