Skip to content
Snippets Groups Projects
Commit 3f0cf543 authored by Yifan Zhao's avatar Yifan Zhao
Browse files

Use relative import for all except main

parent 240c7695
No related branches found
No related tags found
No related merge requests found
......@@ -4,8 +4,8 @@ from typing import Dict, List, Tuple, Union
import jinja2
from graph_builder import DFG
from graph_ir import DFGNode, TensorNode, WeightTensor
from .graph_builder import DFG
from .graph_ir import DFGNode, TensorNode, WeightTensor
TEMPLATE_FILE = "template_hpvm.cpp"
loader = jinja2.FileSystemLoader(searchpath=Path(__file__).parent)
......
......@@ -3,8 +3,8 @@ from typing import Dict, List
import jinja2
from codegen_hpvm import CodeGen
from graph_ir import DFGNode, TensorNode
from .codegen_hpvm import CodeGen
from .graph_ir import DFGNode, TensorNode
TEMPLATE_FILE = "template_tensor.cpp"
loader = jinja2.FileSystemLoader(searchpath=Path(__file__).parent)
......
......@@ -6,8 +6,8 @@ from typing import Dict, Iterable, List, Optional, Tuple, Union
import networkx as nx
import onnx
import graph_ir as g
from onnx_attr import node_attr_to_dict
from . import graph_ir as g
from .onnx_attr import node_attr_to_dict
GraphT = onnx.GraphProto
NodeT = onnx.NodeProto
......
......@@ -4,7 +4,7 @@ from typing import List, Tuple
import onnx
from onnx_attr import node_attr_to_dict
from .onnx_attr import node_attr_to_dict
class DFGNode(abc.ABC):
......
......@@ -32,9 +32,9 @@ def compile(
opset: Optional[int],
hpvmc: bool,
):
from graph_builder import DFG
from codegen_tensor import TensorCodeGen
from codegen_hpvm import HpvmCodeGen
from frontend.graph_builder import DFG
from frontend.codegen_tensor import TensorCodeGen
from frontend.codegen_hpvm import HpvmCodeGen
model = onnx.load(onnx_file)
if opset is not None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment