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

Rename frontend templates so the formatter don't format them

parent 2d2aa85e
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ import jinja2 ...@@ -7,7 +7,7 @@ import jinja2
from .graph_builder import DFG from .graph_builder import DFG
from .graph_ir import DFGNode, TensorNode, WeightTensor from .graph_ir import DFGNode, TensorNode, WeightTensor
TEMPLATE_FILE = "template_hpvm.cpp" TEMPLATE_FILE = "template_hpvm.cpp.in"
loader = jinja2.FileSystemLoader(searchpath=Path(__file__).parent) loader = jinja2.FileSystemLoader(searchpath=Path(__file__).parent)
template_env = jinja2.Environment(loader=loader, trim_blocks=True) template_env = jinja2.Environment(loader=loader, trim_blocks=True)
template = template_env.get_template(TEMPLATE_FILE) template = template_env.get_template(TEMPLATE_FILE)
......
...@@ -6,7 +6,7 @@ import jinja2 ...@@ -6,7 +6,7 @@ import jinja2
from .codegen_hpvm import CodeGen from .codegen_hpvm import CodeGen
from .graph_ir import DFGNode, TensorNode from .graph_ir import DFGNode, TensorNode
TEMPLATE_FILE = "template_tensor.cpp" TEMPLATE_FILE = "template_tensor.cpp.in"
loader = jinja2.FileSystemLoader(searchpath=Path(__file__).parent) loader = jinja2.FileSystemLoader(searchpath=Path(__file__).parent)
template_env = jinja2.Environment(loader=loader, trim_blocks=True) template_env = jinja2.Environment(loader=loader, trim_blocks=True)
template = template_env.get_template(TEMPLATE_FILE) template = template_env.get_template(TEMPLATE_FILE)
......
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