Skip to content
Snippets Groups Projects
Commit 87be8851 authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[TLastMarker] fix out stream name and inst name

parent b0a2f15d
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ class TLastMarker(HLSCustomOp):
"OutDType t;",
"t.set_data(in0.read());",
"t.set_last(i==(NumIters-1));",
"output.write(t);",
"out.write(t);",
"}"
]
......@@ -76,8 +76,8 @@ class TLastMarker(HLSCustomOp):
def blackboxfunction(self):
self.code_gen_dict["$BLACKBOXFUNCTION$"] = [
"""void TLastMarker(hls::stream<ap_uint<StreamWidth> > &in0,
hls::stream<OutDType> &out)"""
"""void %s(hls::stream<ap_uint<StreamWidth> > &in0,
hls::stream<OutDType> &out)""" % self.onnx_node.name
]
def pragmas(self):
......
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