Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Cliff Hodel committed Dec 20, 2023
1 parent 4f5ed32 commit 1991648
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions dace/sdfg/performance_evaluation/operational_intensity.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
from copy import deepcopy
from dace.symbolic import pystr_to_symbolic, SymExpr

from dace.sdfg.work_depth_analysis.helpers import get_uuid
from dace.sdfg.performance_evaluation.helpers import get_uuid
from dace.transformation.passes.symbol_ssa import StrictSymbolSSA
from dace.transformation.pass_pipeline import FixedPointPipeline

from dace.data import Array
from dace.sdfg.work_depth_analysis.op_in_helpers import CacheLineTracker, AccessStack, fit_curve, plot, compute_mape
from dace.sdfg.work_depth_analysis.work_depth import analyze_sdfg, get_tasklet_work
from dace.sdfg.performance_evaluation.op_in_helpers import CacheLineTracker, AccessStack, fit_curve, plot, compute_mape
from dace.sdfg.performance_evaluation.work_depth import analyze_sdfg, get_tasklet_work


class SymbolRange():
Expand Down
4 changes: 2 additions & 2 deletions dace/sdfg/performance_evaluation/work_depth.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
import astunparse
import warnings

from dace.sdfg.work_depth_analysis.helpers import get_uuid, find_loop_guards_tails_exits
from dace.sdfg.work_depth_analysis.assumptions import parse_assumptions
from dace.sdfg.performance_evaluation.helpers import get_uuid, find_loop_guards_tails_exits
from dace.sdfg.performance_evaluation.assumptions import parse_assumptions
from dace.transformation.passes.symbol_ssa import StrictSymbolSSA
from dace.transformation.pass_pipeline import FixedPointPipeline

Expand Down
4 changes: 2 additions & 2 deletions tests/sdfg/operational_intensity_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import dace as dc
import sympy as sp
import numpy as np
from dace.sdfg.work_depth_analysis.operational_intensity import analyze_sdfg_op_in
from dace.sdfg.work_depth_analysis.helpers import get_uuid
from dace.sdfg.performance_evaluation.operational_intensity import analyze_sdfg_op_in
from dace.sdfg.performance_evaluation.helpers import get_uuid

from math import isclose

Expand Down
6 changes: 3 additions & 3 deletions tests/sdfg/work_depth_test.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Copyright 2019-2023 ETH Zurich and the DaCe authors. All rights reserved.
""" Contains test cases for the work depth analysis. """
import dace as dc
from dace.sdfg.work_depth_analysis.work_depth import analyze_sdfg, get_tasklet_work_depth, get_tasklet_avg_par, parse_assumptions
from dace.sdfg.work_depth_analysis.helpers import get_uuid
from dace.sdfg.work_depth_analysis.assumptions import ContradictingAssumptions
from dace.sdfg.performance_evaluation.work_depth import analyze_sdfg, get_tasklet_work_depth, get_tasklet_avg_par, parse_assumptions
from dace.sdfg.performance_evaluation.helpers import get_uuid
from dace.sdfg.performance_evaluation.assumptions import ContradictingAssumptions
import sympy as sp
import numpy as np

Expand Down

0 comments on commit 1991648

Please sign in to comment.