We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9a0e9a commit 83e36daCopy full SHA for 83e36da
tiralib/tiramisu/__init__.py
@@ -7,6 +7,7 @@
7
from .tiramisu_iterator_node import IteratorIdentifier, IteratorNode
8
from .tiramisu_program import TiramisuProgram
9
from .tiramisu_tree import TiramisuTree
10
+from .function_server import FunctionServer
11
12
__all__ = [
13
"CompilingService",
@@ -16,4 +17,5 @@
16
17
"IteratorNode",
18
"tiramisu_actions",
19
"IteratorIdentifier",
20
+ "FunctionServer",
21
]
tiralib/tiramisu/tiramisu_program.py
@@ -170,7 +170,7 @@ def init_server(
170
load_isl_ast=False,
171
load_tree=False,
172
reuse_server=False,
173
- ):
+ ) -> "TiramisuProgram":
174
# Initiate an instante of the TiramisuProgram class
175
tiramisu_prog = cls()
176
tiramisu_prog.cpp_code = cpp_code
0 commit comments