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

[CustomOps] Added empty functions to guarantee no errors with abstract methods in HLSCustomOp class

parent 5253b653
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,12 @@ class ConvolutionInputGenerator(HLSCustomOp):
def verify_node(self):
pass
def bram_estimation(self):
pass
def lut_estimation(self):
pass
def get_input_datatype(self):
return DataType[self.get_nodeattr("inputDataType")]
......
import os
import math
import numpy as np
from finn.backend.fpgadataflow.utils import numpy_to_hls_code
......@@ -141,6 +141,27 @@ class StreamingFCLayer_Batch(HLSCustomOp):
return info_messages
def bram_estimation(self):
P = self.get_nodeattr("PE")
Q = self.get_nodeattr("SIMD")
wdt = self.get_weight_datatype()
W = wdt.bitwidth()
D_in = self.get_instream_width()
D_out = self.get_outstream_width()
omega = (D_in * D_out) / (Q * P)
return P * (math.ceil(omega / 512)) * (math.ceil((Q * W) / 36))
def lut_estimation(self):
P = self.get_nodeattr("PE")
Q = self.get_nodeattr("SIMD")
wdt = self.get_weight_datatype()
W = wdt.bitwidth()
tdt = DataType.INT32
A = tdt.bitwidth()
c0 = 300
c1 = 1.1
return c0 + c1 * (P * Q) * (W * A)
def get_input_datatype(self):
return DataType[self.get_nodeattr("inputDataType")]
......
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