Skip to content
Snippets Groups Projects
Commit f61e558f authored by auphelia's avatar auphelia
Browse files

[Modules] Fix bullet lists by adding blank line at the end

parent 757cbc52
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,8 @@ def execute_node(node, context, graph):
"""Executes a single node by using onnxruntime, with custom function or
if dataflow partition by using remote execution or rtlsim.
* Input/output provided via context."""
* Input/output provided via context.
"""
if node.op_type == "StreamingDataflowPartition":
sdp_node = getCustomOp(node)
......@@ -102,7 +103,8 @@ def execute_onnx(model, input_dict, return_full_exec_context=False):
* If return return_full_exec_context is True, the full set of tensors used by
the execution (including inputs, weights, activations and final outputs)
will be returned as a dict."""
will be returned as a dict.
"""
if not model.check_all_tensor_shapes_specified():
raise Exception("Found unspecified tensor shapes, try infer_shapes")
......
......@@ -329,7 +329,8 @@ compilation transformations?
* var: makes it possible to reuse the function for different c++ code generation.
I.e. if set to "ipgen" in StreamingFCLayer_Batch additional PRAGMA defines are
added."""
added.
"""
pass
@abstractmethod
......
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