Skip to content

Commit

Permalink
Fix an uninitialized variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Anders Ryd committed Oct 15, 2023
1 parent f323252 commit ac35644
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions TrackletGraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,7 @@ def populate_bitwidths(mem,hls_dir): # FIXME this information should be parsed f
@staticmethod
def populate_is_binned(mem,hls_dir):
# Populate fields saying whether mem module is binned
if (mem.mtype == "VMStubsTEOuter" or mem.mtype == "VMStubsME"):
mem.is_binned = True
mem.is_binned = (mem.mtype == "VMStubsTEOuter" or mem.mtype == "VMStubsME")

@staticmethod
def populate_has_numEntries_out(mem,hls_dir):
Expand Down

0 comments on commit ac35644

Please sign in to comment.