diff options
author | pmikus <pmikus@cisco.com> | 2021-06-11 13:06:34 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2021-06-17 13:26:40 +0000 |
commit | a275fa0062158d712152f542b7bc9ec40b5c5f31 (patch) | |
tree | 7d55c04747fd49f0ac08c9452976088f2df0791f /resources/libraries/python/NATUtil.py | |
parent | 70766243f6c00c77fedc00d68114c108528950d6 (diff) |
Core: Rework CPU allocation
Signed-off-by: pmikus <pmikus@cisco.com>
Change-Id: I6826add7b3032041632c3952c45a3c64409400b0
Diffstat (limited to 'resources/libraries/python/NATUtil.py')
-rw-r--r-- | resources/libraries/python/NATUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/python/NATUtil.py b/resources/libraries/python/NATUtil.py index 60e0e6d1a3..8a5d8c1404 100644 --- a/resources/libraries/python/NATUtil.py +++ b/resources/libraries/python/NATUtil.py @@ -288,7 +288,7 @@ class NATUtil: :rtype: int """ # vpp-device tests have not dedicated physical core so - # ${thr_count_int} == 0 but we need to use one thread + # ${dp_count_int} == 0 but we need to use one thread threads = 1 if not int(threads) else int(threads) rest, mult = modf(log2(sessions/(10*threads))) return 2 ** (int(mult) + (1 if rest else 0)) * 10 |