mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-31 10:11:17 +00:00
42539bbe0d
Changing the way target descriptions work from a static mapping to something that is dynamically generated and is extensible via plugins. Also moving core target implementation stuff under "framework".
12 lines
578 B
Python
12 lines
578 B
Python
from wa.framework import pluginloader, log, signal
|
|
from wa.framework.configuration import settings
|
|
from wa.framework.plugin import Plugin, Parameter
|
|
from wa.framework.command import Command
|
|
from wa.framework.workload import Workload
|
|
|
|
from wa.framework.exception import WAError, NotFoundError, ValidationError, WorkloadError
|
|
from wa.framework.exception import HostError, JobError, InstrumentError, ConfigError
|
|
from wa.framework.exception import ResultProcessorError, ResourceError, CommandError, ToolError
|
|
from wa.framework.exception import WorkerThreadError, PluginLoaderError
|
|
|