configs: Fix MemorySize division
The memory size is expected to be an integer. Jira: https://gem5.atlassian.net/browse/GEM5-806 Change-Id: I44b2d423a3478d2598950779222151f09970cbd8 Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br> Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/37255 Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Srikant Bharadwaj <srikant.bharadwaj@amd.com>
This commit is contained in:
committed by
Daniel Carvalho
parent
a265891e87
commit
8728c26c7f
@@ -218,6 +218,6 @@ class MeshDirCorners_XY(SimpleTopology):
|
||||
for n in numa_nodes:
|
||||
if n:
|
||||
FileSystemConfig.register_node(n,
|
||||
MemorySize(options.mem_size) / num_numa_nodes, i)
|
||||
MemorySize(options.mem_size) // num_numa_nodes, i)
|
||||
i += 1
|
||||
|
||||
|
||||
@@ -178,4 +178,4 @@ class Mesh_XY(SimpleTopology):
|
||||
def registerTopology(self, options):
|
||||
for i in range(options.num_cpus):
|
||||
FileSystemConfig.register_node([i],
|
||||
MemorySize(options.mem_size) / options.num_cpus, i)
|
||||
MemorySize(options.mem_size) // options.num_cpus, i)
|
||||
|
||||
Reference in New Issue
Block a user