f4pga/flows: mv module_runner.py runner.py
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
This commit is contained in:
parent
b6f8fe83dc
commit
fa77c04e0a
|
@ -64,7 +64,7 @@ from f4pga.flows.flow_config import (
|
||||||
open_project_flow_cfg,
|
open_project_flow_cfg,
|
||||||
verify_platform_name
|
verify_platform_name
|
||||||
)
|
)
|
||||||
from f4pga.flows.module_runner import ModRunCtx, module_map, module_exec
|
from f4pga.flows.runner import ModRunCtx, module_map, module_exec
|
||||||
from f4pga.flows.module_inspector import get_module_info
|
from f4pga.flows.module_inspector import get_module_info
|
||||||
from f4pga.flows.stage import Stage
|
from f4pga.flows.stage import Stage
|
||||||
from f4pga.flows.argparser import setup_argparser, get_cli_flow_config
|
from f4pga.flows.argparser import setup_argparser, get_cli_flow_config
|
||||||
|
|
|
@ -41,7 +41,7 @@ Accepted module parameters:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from f4pga.flows.module import Module, ModuleContext
|
from f4pga.flows.module import Module, ModuleContext
|
||||||
from f4pga.flows.module_runner import get_module
|
from f4pga.flows.runner import get_module
|
||||||
|
|
||||||
|
|
||||||
def _switch_keys(d: 'dict[str, ]', renames: 'dict[str, str]') -> 'dict[str, ]':
|
def _switch_keys(d: 'dict[str, ]', renames: 'dict[str, str]') -> 'dict[str, ]':
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
from f4pga.flows.common import decompose_depname, resolve_modstr
|
from f4pga.flows.common import decompose_depname, resolve_modstr
|
||||||
from f4pga.flows.module import Module
|
from f4pga.flows.module import Module
|
||||||
from f4pga.flows.module_runner import get_module, module_io
|
from f4pga.flows.runner import get_module, module_io
|
||||||
|
|
||||||
class StageIO:
|
class StageIO:
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue