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

[HLSCustomOp] default to 0 for unspecified LUT/BRAM and not pass

parent e33e5f13
No related branches found
No related tags found
No related merge requests found
......@@ -132,12 +132,6 @@ class ConvolutionInputGenerator(HLSCustomOp):
def verify_node(self):
pass
def bram_estimation(self):
pass
def lut_estimation(self):
pass
def get_input_datatype(self):
"""Returns FINN DataType of input."""
return DataType[self.get_nodeattr("inputDataType")]
......
......@@ -28,6 +28,7 @@
import os
import numpy as np
try:
from pyverilator import PyVerilator
except ModuleNotFoundError:
......@@ -209,12 +210,6 @@ class StreamingDataWidthConverter_Batch(HLSCustomOp):
return info_messages
def bram_estimation(self):
pass
def lut_estimation(self):
pass
def global_includes(self):
self.code_gen_dict["$GLOBALS$"] = ['#include "streamtools.h"']
......
......@@ -150,12 +150,6 @@ class StreamingMaxPool_Batch(HLSCustomOp):
return info_messages
def bram_estimation(self):
pass
def lut_estimation(self):
pass
def global_includes(self):
self.code_gen_dict["$GLOBALS$"] = ['#include "maxpool.h"']
......
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