Skip to content

Commit

Permalink
feat: arctan2 (#37)
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 Mar 27, 2024
1 parent ea8be18 commit 8636018
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/quaxed/numpy/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"allclose",
"array_equal",
"asarray",
"arctan2",
"cbrt",
"copy",
"cross",
Expand Down Expand Up @@ -60,6 +61,7 @@ def transfer_doc(func: T) -> T:
allclose = quaxify(jnp.allclose)
array_equal = quaxify(jnp.array_equal)
asarray = quaxify(jnp.asarray)
arctan2 = quaxify(jnp.arctan2)
cbrt = quaxify(jnp.cbrt)
copy = quaxify(jnp.copy)
cross = quaxify(jnp.cross)
Expand Down

0 comments on commit 8636018

Please sign in to comment.