1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

perf: remove CCIPerfEvent class

Remove the CCIPerfEvent class since it's no longer used
in WA.

Signed-off-by: Lisa Nguyen <lisa.nguyen@linaro.org>
This commit is contained in:
Lisa Nguyen 2015-06-15 10:34:59 -07:00
parent cbf7eadc6c
commit 7c7a5de988

View File

@ -167,13 +167,3 @@ class PerfInstrument(Instrument):
self._get_device_outfile(label))
return command
class CCIPerfEvent(object):
def __init__(self, name, config):
self.name = name
self.config = config
def __str__(self):
return 'CCI/config={config},name={name}/'.format(**self.__dict__)