summaryrefslogtreecommitdiff
path: root/configs/dram/lat_mem_rd.py
diff options
context:
space:
mode:
Diffstat (limited to 'configs/dram/lat_mem_rd.py')
-rw-r--r--configs/dram/lat_mem_rd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/dram/lat_mem_rd.py b/configs/dram/lat_mem_rd.py
index dc80bd287..a1aa77df4 100644
--- a/configs/dram/lat_mem_rd.py
+++ b/configs/dram/lat_mem_rd.py
@@ -188,7 +188,7 @@ def create_trace(filename, max_addr, burst_size, itt):
protolib.encodeMessage(proto_out, header)
# create a list of every single address to touch
- addrs = range(0, max_addr, burst_size)
+ addrs = list(range(0, max_addr, burst_size))
import random
random.shuffle(addrs)