diff options
author | pmikus <peter.mikus@protonmail.ch> | 2023-10-12 09:06:06 +0000 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2023-10-12 12:31:56 +0000 |
commit | e2c0d2e1481f899ba82a3892694a04a127668b2b (patch) | |
tree | 03aa13d40ae3fcddcb2fc701b5b7d5658280d7c3 /resources/libraries/python/TRexConfigGenerator.py | |
parent | f582fb8ee2f221be53b72331a1cca06762358964 (diff) |
feat(core): Multilink TRex Sync mode I.
Signed-off-by: Peter Mikus <peter.mikus@protonmail.ch>
Change-Id: I9f579385299e69e4d5679ed451ae0b4c30406733
Diffstat (limited to 'resources/libraries/python/TRexConfigGenerator.py')
-rw-r--r-- | resources/libraries/python/TRexConfigGenerator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/libraries/python/TRexConfigGenerator.py b/resources/libraries/python/TRexConfigGenerator.py index c73e24960a..c50b42610c 100644 --- a/resources/libraries/python/TRexConfigGenerator.py +++ b/resources/libraries/python/TRexConfigGenerator.py @@ -23,7 +23,7 @@ from resources.libraries.python.topology import NodeType, NodeSubTypeTG from resources.libraries.python.topology import Topology -__all__ = ["TrexConfigGenerator", "TrexInitConfig"] +__all__ = ["TrexConfigGenerator", "TrexConfig"] def pci_dev_check(pci_dev): """Check if provided PCI address is in correct format. @@ -259,7 +259,7 @@ class TrexConfig: tg_dtc_offset = 0 master_thread_id, latency_thread_id, socket, threads = \ CpuUtils.get_affinity_trex( - node, link["interface"], tg_dtc=tg_dtc, + node, link["interface"], tg_dtc=tg_dtc, tg_dtc_offset=tg_dtc_offset ) dual_if.append(dict(socket=socket, threads=threads)) |