Skip to content

Commit

Permalink
[P2] Installation and Data Preloading Issue tancheng#11 - add ConstQ…
Browse files Browse the repository at this point in the history
…ueueDynamicRTL.py
  • Loading branch information
yuqisun committed Jan 11, 2025
1 parent b73b61d commit faf5f34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mem/const/ConstQueueDynamicRTL.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def write_to_reg():
# if cur point to last element in mem
# drop data for now
if s.cur == AddrType(const_mem_size - 1):
print(f"Drop data as full const mem, siez: {const_mem_size}")
print(f"Drop data as full const mem, size: {const_mem_size}")
else:
s.cur <<= s.cur + AddrType(1)
s.reg_file.waddr[0] <<= s.cur
Expand Down

0 comments on commit faf5f34

Please sign in to comment.