Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scalesim/memory/double_buffered_scratchpad_mem.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def service_memory_requests(self, ifmap_demand_mat, filter_demand_mat, ofmap_dem
axis=1)
#self.total_cycles = int(ofmap_serviced_cycles[-1][0])
## Probable fault in sanity check
self.total_cycles = int(max(ofmap_serviced_cycles))
self.total_cycles = int(np.max(ofmap_serviced_cycles))

# END of serving demands from memory
self.traces_valid = True
Expand Down
Loading