Giacomo Travaglini has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/42883 )

Change subject: configs: Use integer division in MESI_Three_Level_HTM.py
......................................................................

configs: Use integer division in MESI_Three_Level_HTM.py

num_cpus_per_cluster and num_l2caches_per_cluster need to be integer
as we are iterating over those variables

Signed-off-by: Giacomo Travaglini <[email protected]>
Change-Id: Iaad1ce9b4058421ff83ba9d2419eb5c36c772c35
---
M configs/ruby/MESI_Three_Level_HTM.py
1 file changed, 2 insertions(+), 2 deletions(-)



diff --git a/configs/ruby/MESI_Three_Level_HTM.py b/configs/ruby/MESI_Three_Level_HTM.py
index 89ca93c..b6b1c7f 100644
--- a/configs/ruby/MESI_Three_Level_HTM.py
+++ b/configs/ruby/MESI_Three_Level_HTM.py
@@ -78,10 +78,10 @@
     dma_cntrl_nodes = []

     assert (options.num_cpus % options.num_clusters == 0)
-    num_cpus_per_cluster = options.num_cpus / options.num_clusters
+    num_cpus_per_cluster = options.num_cpus // options.num_clusters

     assert (options.num_l2caches % options.num_clusters == 0)
-    num_l2caches_per_cluster = options.num_l2caches / options.num_clusters
+    num_l2caches_per_cluster = options.num_l2caches // options.num_clusters

     l2_bits = int(math.log(num_l2caches_per_cluster, 2))
     block_size_bits = int(math.log(options.cacheline_size, 2))

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/42883
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: release-staging-v21-0
Gerrit-Change-Id: Iaad1ce9b4058421ff83ba9d2419eb5c36c772c35
Gerrit-Change-Number: 42883
Gerrit-PatchSet: 1
Gerrit-Owner: Giacomo Travaglini <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

Reply via email to