Fix a pytype error in system_info_lib.

This allows us to turn on PY3 for t2t_trainer_xla.

PiperOrigin-RevId: 274979958
Change-Id: I386e05171b44ff93b8dc41943c1a3f7cead297d6
This commit is contained in:
Adrian Kuegel 2019-10-16 01:15:54 -07:00 committed by TensorFlower Gardener
parent 95bb950b57
commit c3d86dc087

View File

@ -81,7 +81,7 @@ def gather_cpu_info():
# Gather num_cores_allowed
try:
with gfile.GFile('/proc/self/status', 'rb') as fh:
nc = re.search(r'(?m)^Cpus_allowed:\s*(.*)$', fh.read())
nc = re.search(r'(?m)^Cpus_allowed:\s*(.*)$', fh.read().decode('utf-8'))
if nc: # e.g. 'ff' => 8, 'fff' => 12
cpu_info.num_cores_allowed = (
bin(int(nc.group(1).replace(',', ''), 16)).count('1'))