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

[HLSCustomOp] add i/o shape retrieval fxns to HLSCustomOp base

parent c8601444
No related branches found
No related tags found
No related merge requests found
......@@ -299,3 +299,15 @@ compilation transformations?
@abstractmethod
def pragmas(self):
pass
def get_folded_input_shape(self):
raise Exception("get_folded_input_shape not implemented for this op")
def get_folded_output_shape(self):
raise Exception("get_folded_output_shape not implemented for this op")
def get_instream_width(self):
raise Exception("get_instream_width not implemented for this op")
def get_outstream_width(self):
raise Exception("get_outstream_width not implemented for this op")
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