Skip to content

Commit

Permalink
refactor: util routine
Browse files Browse the repository at this point in the history
  • Loading branch information
wcxve committed Jan 31, 2024
1 parent d9c5cfd commit 94a29de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/elisa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
from .data import *
from .model import *
from .infer import *
from .util import *
from .__about__ import __version__
from .model import * # noqa: F403
from .util import jax_enable_x64, set_cpu_cores

jax_enable_x64(True)
set_cpu_cores(4)
1 change: 1 addition & 0 deletions src/elisa/util/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .config import * # noqa: F403

0 comments on commit 94a29de

Please sign in to comment.