52 lines
2.1 KiB
Python
52 lines
2.1 KiB
Python
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
"""The parser subpackage of TVMScript.
|
|
|
|
Per-dialect parser submodules (``tvm.script.parser.tirx``, etc.) are
|
|
resolved lazily via :data:`tvm.script._DIALECT_REGISTRY`. When a dialect
|
|
is accessed (e.g. ``tvm.script.parser.tirx``), this subpackage's
|
|
``__getattr__`` looks up the dialect in ``_DIALECT_REGISTRY`` and imports
|
|
``<dialect_module_path>.parser`` (e.g. ``tvm.tirx.script.parser``),
|
|
caching the result so subsequent accesses skip ``__getattr__``.
|
|
|
|
The IR layer is foundational and is NOT registered as a dialect — its
|
|
parser lives as a real submodule ``tvm.script.parser.ir``, with
|
|
``ir_module`` re-exported at this level for convenience.
|
|
|
|
See :mod:`tvm.script` for a full description of the dialect resolution
|
|
mechanism, including the ``_DialectRedirectFinder`` that handles
|
|
deep statement-form imports.
|
|
"""
|
|
|
|
import importlib
|
|
from typing import Any
|
|
|
|
from . import _core, ir, tirx
|
|
from ._core import parse
|
|
from .ir import ir_module
|
|
|
|
|
|
def __getattr__(name: str) -> Any:
|
|
# Lazy import to avoid loading tvm.script during dialect bootstrap.
|
|
from tvm.script import _DIALECT_REGISTRY # pylint: disable=import-outside-toplevel
|
|
|
|
if name in _DIALECT_REGISTRY:
|
|
module = importlib.import_module(f"{_DIALECT_REGISTRY[name]}.parser")
|
|
globals()[name] = module
|
|
return module
|
|
raise AttributeError(f"module 'tvm.script.parser' has no attribute {name!r}")
|