Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed the imported modules. #2633

Merged
merged 2 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion benchmarks/benchmark_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@
from tardis.io.configuration.config_reader import Configuration
from tardis.io.util import yaml_load_file, YAMLLoader, HDFWriterMixin
from tardis.model import SimulationState
from tardis.transport.montecarlo import NumbaModel, opacity_state_initialize
from tardis.transport.montecarlo import RPacket
from tardis.transport.montecarlo.numba_interface import (
NumbaModel,
opacity_state_initialize,
)
from tardis.transport.montecarlo.packet_collections import (
VPacketCollection,
)
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/transport_montecarlo_packet.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import tardis.transport.r_packet_transport as r_packet_transport
from benchmarks.benchmark_base import BenchmarkBase
from tardis.model.geometry.radial1d import NumbaRadial1DGeometry
from tardis.transport.montecarlo.estimators.radfield_mc_estimators import (
from tardis.transport.montecarlo.estimators.radfield_estimator_calcs import (
update_line_estimators,
)

Expand Down
Loading