Skip to content

Commit

Permalink
Fixing module imports
Browse files Browse the repository at this point in the history
  • Loading branch information
balancap committed Nov 8, 2023
1 parent 404a2f6 commit 3f9d5ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions jax_scaled_arithmetics/lax/scaled_ops.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from core import ScaledArray
import core
from jax_scaled_arithmetics import core
from jax_scaled_arithmetics.core import ScaledArray

from jax import lax
from functools import partial

Expand Down
2 changes: 1 addition & 1 deletion tests/interpreters/test_interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import jax.numpy as jnp

from jax_scaled_arithmetics.core import ScaledArray, autoscale

import jax_scaled_arithmetics.lax

class AutoScaleInterpreterTests(chex.TestCase):
def test__identity(self):
Expand Down

0 comments on commit 3f9d5ae

Please sign in to comment.