X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=usertools%2Fcpu_layout.py;h=d3c8eba770b4cd43b82551986fa19c4b262c9781;hb=8eff9b86aa1b73d0c2b225cb670bf033f32fbb43;hp=99152a2ec0ba73ecd905a5a494cae02c62cb9318;hpb=63985c5f104edbfe2a3933706a67a2e5af04e97b;p=dpdk.git diff --git a/usertools/cpu_layout.py b/usertools/cpu_layout.py index 99152a2ec0..d3c8eba770 100755 --- a/usertools/cpu_layout.py +++ b/usertools/cpu_layout.py @@ -4,7 +4,7 @@ # BSD LICENSE # # Copyright(c) 2010-2014 Intel Corporation. All rights reserved. -# Copyright(c) 2017 Cavium Networks Ltd. All rights reserved. +# Copyright(c) 2017 Cavium, Inc. All rights reserved. # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -35,6 +35,10 @@ # from __future__ import print_function import sys +try: + xrange # Python 2 +except NameError: + xrange = range # Python 3 sockets = [] cores = [] @@ -72,7 +76,7 @@ print("sockets = ", sockets) print("") max_processor_len = len(str(len(cores) * len(sockets) * 2 - 1)) -max_thread_count = len(core_map.values()[0]) +max_thread_count = len(list(core_map.values())[0]) max_core_map_len = (max_processor_len * max_thread_count) \ + len(", ") * (max_thread_count - 1) \ + len('[]') + len('Socket ') @@ -92,7 +96,7 @@ print(output) for c in cores: output = "Core %s" % str(c).ljust(max_core_id_len) for s in sockets: - if core_map.has_key((s,c)): + if (s,c) in core_map: output += " " + str(core_map[(s, c)]).ljust(max_core_map_len) else: output += " " * (max_core_map_len + 1)