mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2026-01-08 12:10:06 +01:00
12 lines
412 B
Python
12 lines
412 B
Python
"""
|
|
Tools for semantic analysis of parser result.
|
|
|
|
Only the classes below will be exported, so please add new semantic tools to __all__.
|
|
"""
|
|
from .hw_model import MachineModel
|
|
from .kernel_dg import KernelDG
|
|
from .marker_utils import reduce_to_section
|
|
from .semantics_appender import SemanticsAppender, INSTR_FLAGS
|
|
|
|
__all__ = ['MachineModel', 'KernelDG', 'reduce_to_section', 'SemanticsAppender', 'INSTR_FLAGS']
|