mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-02-07 13:41:24 +00:00
- Fixed up some of the signal map for instrumentation - Changed how priorites are specified -- no longer method name prefixes but dedicated decorators, including an easy way of specifying a custom priority level (no longer need to manually connect signals) - Updated ExecutionTimeInstrument to work with the new system - Also removed some dead code
14 lines
790 B
Python
14 lines
790 B
Python
from wa.framework import pluginloader, log, signal
|
|
from wa.framework.command import Command
|
|
from wa.framework.configuration import settings
|
|
from wa.framework.exception import HostError, JobError, InstrumentError, ConfigError
|
|
from wa.framework.exception import (ResultProcessorError, ResourceError,
|
|
CommandError, ToolError)
|
|
from wa.framework.exception import (WAError, NotFoundError, ValidationError,
|
|
WorkloadError)
|
|
from wa.framework.exception import WorkerThreadError, PluginLoaderError
|
|
from wa.framework.instrumentation import (Instrument, very_slow, slow, normal, fast,
|
|
very_fast)
|
|
from wa.framework.plugin import Plugin, Parameter
|
|
from wa.framework.workload import Workload
|