Skip to content

Commit

Permalink
feat: log (#39)
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 8636018 commit eb9df30
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/quaxed/numpy/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
"greater",
"hypot",
"isclose",
"log",
"log10",
"matmul",
"moveaxis",
"power",
Expand Down Expand Up @@ -71,6 +73,8 @@ def transfer_doc(func: T) -> T:
greater = quaxify(jnp.greater)
hypot = quaxify(jnp.hypot)
isclose = quaxify(jnp.isclose)
log = quaxify(jnp.log)
log10 = quaxify(jnp.log10)
matmul = quaxify(jnp.matmul)
moveaxis = quaxify(jnp.moveaxis)
power = quaxify(jnp.power)
Expand Down

0 comments on commit eb9df30

Please sign in to comment.