diff options
author | pmikus <peter.mikus@protonmail.ch> | 2023-05-25 08:49:39 +0000 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2023-05-25 08:50:44 +0000 |
commit | 21c9b126d73857771576516abea978c21a967a51 (patch) | |
tree | 80893d021a7ace9544fee5549abefd44fb632c72 /resources | |
parent | e36da34931ee2b6f9e839c0c201298aa24e7684b (diff) |
fix(core): dual_socket support
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I881dda8b2fec32b8f489ec97df6592937f6193fa
(cherry picked from commit 889af5ca17aa11ccaa65fce188f72890e495cfa2)
Diffstat (limited to 'resources')
-rw-r--r-- | resources/libraries/python/TRexConfigGenerator.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/libraries/python/TRexConfigGenerator.py b/resources/libraries/python/TRexConfigGenerator.py index 2015b09ad2..5ecde86dcb 100644 --- a/resources/libraries/python/TRexConfigGenerator.py +++ b/resources/libraries/python/TRexConfigGenerator.py @@ -244,7 +244,7 @@ class TrexInitConfig: latency_thread_id = None cores = None limit_memory = f"{Constants.TREX_LIMIT_MEMORY}" - sockets = 0 + sockets = list() for link in tg_topology: pci_addresses.append( @@ -264,8 +264,8 @@ class TrexInitConfig: dst_mac=link["dst_mac"] ) ) - sockets = sockets | socket - if sockets: + sockets.append(socket) + if 0 in sockets and 1 in sockets: limit_memory = ( f"{Constants.TREX_LIMIT_MEMORY},{Constants.TREX_LIMIT_MEMORY}" ) |