1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-06 10:51:13 +01:00

framework/rt_config: Fix typo in hotplug big.LITTLE RT Params

This commit is contained in:
Marc Bonnici 2018-01-18 14:49:19 +00:00 committed by setrofim
parent 7100165376
commit 60c16c802f

View File

@ -153,7 +153,7 @@ class HotplugRuntimeConfig(RuntimeConfig):
self._runtime_params[param_name] = \
RuntimeParameter(param_name, kind=int,
constraint=lambda x, cluster=cluster:
0 < x <= len(resolve_cpus(cluster), self.target),
0 < x <= len(resolve_cpus(cluster, self.target)),
description="""
The number of cores on the {} cluster to be online
""".format(cluster),