chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
# isort: skip_file
|
||||
# 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 tvm.s_tir.meta_schedule.postproc package."""
|
||||
|
||||
from .disallow_dynamic_loop import DisallowDynamicLoop
|
||||
from .disallow_async_strided_mem_copy import DisallowAsyncStridedMemCopy
|
||||
from .postproc import Postproc, PyPostproc
|
||||
from .rewrite_cooperative_fetch import RewriteCooperativeFetch
|
||||
from .rewrite_layout import RewriteLayout
|
||||
from .rewrite_parallel_vectorize_unroll import RewriteParallelVectorizeUnroll
|
||||
from .rewrite_reduction_block import RewriteReductionBlock
|
||||
from .rewrite_tensorize import RewriteTensorize
|
||||
from .rewrite_unbound_block import RewriteUnboundBlock
|
||||
from .verify_gpu_code import VerifyGPUCode
|
||||
from .verify_vtcm_limit import VerifyVTCMLimit
|
||||
@@ -0,0 +1,32 @@
|
||||
# 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.
|
||||
"""A postprocessor that checks if the IRModule has any strided memory copies"""
|
||||
|
||||
from tvm_ffi.registry import register_object
|
||||
|
||||
from .. import _ffi_api
|
||||
from .postproc import Postproc
|
||||
|
||||
|
||||
@register_object("s_tir.meta_schedule.DisallowAsyncStridedMemCopy")
|
||||
class DisallowAsyncStridedMemCopy(Postproc):
|
||||
"""A postprocessor that disallows schedules that use async strided mem copies."""
|
||||
|
||||
def __init__(self) -> None:
|
||||
self.__init_handle_by_constructor__(
|
||||
_ffi_api.PostprocDisallowAsyncStridedMemCopy, # type: ignore # pylint: disable=no-member
|
||||
)
|
||||
@@ -0,0 +1,32 @@
|
||||
# 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.
|
||||
"""A postprocessor that checks if the IRModule has any loop with non-constant extent"""
|
||||
|
||||
from tvm_ffi.registry import register_object
|
||||
|
||||
from .. import _ffi_api
|
||||
from .postproc import Postproc
|
||||
|
||||
|
||||
@register_object("s_tir.meta_schedule.DisallowDynamicLoop")
|
||||
class DisallowDynamicLoop(Postproc):
|
||||
"""A postprocessor that checks if the IRModule has any loop with non-constant extent"""
|
||||
|
||||
def __init__(self) -> None:
|
||||
self.__init_handle_by_constructor__(
|
||||
_ffi_api.PostprocDisallowDynamicLoop, # type: ignore # pylint: disable=no-member
|
||||
)
|
||||
@@ -0,0 +1,182 @@
|
||||
# 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.
|
||||
# ruff: noqa: RUF012
|
||||
"""Meta Schedule Postproc."""
|
||||
|
||||
from collections.abc import Callable
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
# isort: off
|
||||
from typing import Literal
|
||||
|
||||
# isort: on
|
||||
|
||||
from tvm_ffi import register_object
|
||||
|
||||
from tvm.runtime import Object
|
||||
from tvm.s_tir.schedule import Schedule
|
||||
|
||||
from .. import _ffi_api
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from ..tune_context import TuneContext
|
||||
|
||||
|
||||
@register_object("s_tir.meta_schedule.Postproc")
|
||||
class Postproc(Object):
|
||||
"""Rules to apply a postprocessor to a schedule."""
|
||||
|
||||
def _initialize_with_tune_context(self, context: "TuneContext") -> None:
|
||||
"""Initialize the postprocessor with a tune context.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
context : TuneContext
|
||||
The tuning context for initializing the postprocessor.
|
||||
"""
|
||||
_ffi_api.PostprocInitializeWithTuneContext( # type: ignore # pylint: disable=no-member
|
||||
self, context
|
||||
)
|
||||
|
||||
def apply(self, sch: Schedule) -> bool:
|
||||
"""Apply a postprocessor to the given schedule.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
sch : tvm.s_tir.Schedule
|
||||
The schedule to be post processed.
|
||||
|
||||
Returns
|
||||
-------
|
||||
result : bool
|
||||
Whether the postprocessor was successfully applied.
|
||||
"""
|
||||
return _ffi_api.PostprocApply(self, sch) # type: ignore # pylint: disable=no-member
|
||||
|
||||
def clone(self) -> "Postproc":
|
||||
"""Clone the postprocessor.
|
||||
|
||||
Returns
|
||||
-------
|
||||
cloned_postproc : Postproc
|
||||
The cloned postprocessor.
|
||||
"""
|
||||
return _ffi_api.PostprocClone(self) # type: ignore # pylint: disable=no-member
|
||||
|
||||
@staticmethod
|
||||
def create(kind: Literal["llvm", "cuda", "cuda-tensorcore", "hexagon"]) -> list["Postproc"]:
|
||||
"""Create a list of default postprocessors.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
kind : Literal["llvm", "cuda", "cuda-tensorcore", "hexagon"]
|
||||
The kind of the postprocessors.
|
||||
|
||||
Returns
|
||||
-------
|
||||
postprocs : List[Mutator]
|
||||
The list of postprocessors.
|
||||
"""
|
||||
funcs = {
|
||||
# pylint: disable=no-member
|
||||
"llvm": _ffi_api.PostprocDefaultLLVM, # type: ignore
|
||||
"cuda": _ffi_api.PostprocDefaultCUDA, # type: ignore
|
||||
"cuda-tensorcore": _ffi_api.PostprocDefaultCUDATensorCore, # type: ignore
|
||||
"hexagon": _ffi_api.PostprocDefaultHexagon, # type: ignore
|
||||
# pylint: enable=no-member
|
||||
}
|
||||
for k, v in funcs.items():
|
||||
if k == kind:
|
||||
return v()
|
||||
raise ValueError(f"Unsupported kind {kind} for postproc creation.")
|
||||
|
||||
|
||||
create = Postproc.create # pylint: disable=invalid-name
|
||||
|
||||
|
||||
@register_object("s_tir.meta_schedule.PyPostproc")
|
||||
class _PyPostproc(Postproc):
|
||||
"""
|
||||
A TVM object post processor to support customization on the python side.
|
||||
This is NOT the user facing class for function overloading inheritance.
|
||||
|
||||
See also: PyPostproc
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
f_initialize_with_tune_context: Callable | None = None,
|
||||
f_apply: Callable | None = None,
|
||||
f_clone: Callable | None = None,
|
||||
):
|
||||
"""Constructor."""
|
||||
|
||||
self.__init_handle_by_constructor__(
|
||||
_ffi_api.PostprocPyPostproc, # type: ignore # pylint: disable=no-member
|
||||
f_initialize_with_tune_context,
|
||||
f_apply,
|
||||
f_clone,
|
||||
)
|
||||
|
||||
|
||||
class PyPostproc:
|
||||
"""
|
||||
An abstract post processor with customized methods on the python-side.
|
||||
This is the user facing class for function overloading inheritance.
|
||||
|
||||
Note: @derived_object is required for proper usage of any inherited class.
|
||||
"""
|
||||
|
||||
_tvm_metadata = {
|
||||
"cls": _PyPostproc,
|
||||
"methods": ["_initialize_with_tune_context", "apply", "clone"],
|
||||
}
|
||||
|
||||
def _initialize_with_tune_context(self, context: "TuneContext") -> None:
|
||||
"""Initialize the postprocessor with a tune context.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
context : TuneContext
|
||||
The tuning context for initializing the postprocessor.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def apply(self, sch: Schedule) -> bool:
|
||||
"""Apply a postprocessor to the given schedule.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
sch : Schedule
|
||||
The schedule to be post processed.
|
||||
|
||||
Returns
|
||||
-------
|
||||
result : bool
|
||||
Whether the postprocessor was successfully applied.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def clone(self) -> Postproc:
|
||||
"""Clone the postprocessor.
|
||||
|
||||
Returns
|
||||
-------
|
||||
cloned_postproc : Postproc
|
||||
The cloned postprocessor.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
@@ -0,0 +1,35 @@
|
||||
# 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.
|
||||
"""A postprocessor that rewrites the cooperative fetch annotation to actual
|
||||
vectorized cooperative fetching in loop bindings."""
|
||||
|
||||
from tvm_ffi.registry import register_object
|
||||
|
||||
from .. import _ffi_api
|
||||
from .postproc import Postproc
|
||||
|
||||
|
||||
@register_object("s_tir.meta_schedule.RewriteCooperativeFetch")
|
||||
class RewriteCooperativeFetch(Postproc):
|
||||
"""A postprocessor that rewrites the cooperative fetch annotation to actual vectorized
|
||||
cooperative fetching in loop bindings.
|
||||
"""
|
||||
|
||||
def __init__(self) -> None:
|
||||
self.__init_handle_by_constructor__(
|
||||
_ffi_api.PostprocRewriteCooperativeFetch, # type: ignore # pylint: disable=no-member
|
||||
)
|
||||
@@ -0,0 +1,32 @@
|
||||
# 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.
|
||||
"""A postprocessor that rewrites the layout of input tensor"""
|
||||
|
||||
from tvm_ffi.registry import register_object
|
||||
|
||||
from .. import _ffi_api
|
||||
from .postproc import Postproc
|
||||
|
||||
|
||||
@register_object("s_tir.meta_schedule.RewriteLayout")
|
||||
class RewriteLayout(Postproc):
|
||||
"""A postprocessor that rewrites the layout of input tensor"""
|
||||
|
||||
def __init__(self) -> None:
|
||||
self.__init_handle_by_constructor__(
|
||||
_ffi_api.PostprocRewriteLayout, # type: ignore # pylint: disable=no-member
|
||||
)
|
||||
@@ -0,0 +1,34 @@
|
||||
# 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.
|
||||
"""A postprocessor that applies parallelization, vectorization and auto unrolling
|
||||
according to the annotation of each block"""
|
||||
|
||||
from tvm_ffi.registry import register_object
|
||||
|
||||
from .. import _ffi_api
|
||||
from .postproc import Postproc
|
||||
|
||||
|
||||
@register_object("s_tir.meta_schedule.RewriteParallelVectorizeUnroll")
|
||||
class RewriteParallelVectorizeUnroll(Postproc):
|
||||
"""A postprocessor that applies parallelization, vectorization and auto unrolling
|
||||
according to the annotation of each block"""
|
||||
|
||||
def __init__(self) -> None:
|
||||
self.__init_handle_by_constructor__(
|
||||
_ffi_api.PostprocRewriteParallelVectorizeUnroll, # type: ignore # pylint: disable=no-member
|
||||
)
|
||||
@@ -0,0 +1,32 @@
|
||||
# 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.
|
||||
"""A postprocessor that rewrites reduction block by moving the init block out."""
|
||||
|
||||
from tvm_ffi.registry import register_object
|
||||
|
||||
from .. import _ffi_api
|
||||
from .postproc import Postproc
|
||||
|
||||
|
||||
@register_object("s_tir.meta_schedule.RewriteReductionBlock")
|
||||
class RewriteReductionBlock(Postproc):
|
||||
"""A postprocessor that rewrites reduction block by moving the init block out."""
|
||||
|
||||
def __init__(self) -> None:
|
||||
self.__init_handle_by_constructor__(
|
||||
_ffi_api.PostprocRewriteReductionBlock, # type: ignore # pylint: disable=no-member
|
||||
)
|
||||
@@ -0,0 +1,39 @@
|
||||
# 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.
|
||||
"""A postprocessor that tensorize related components."""
|
||||
|
||||
from tvm_ffi.registry import register_object
|
||||
|
||||
from .. import _ffi_api
|
||||
from .postproc import Postproc
|
||||
|
||||
|
||||
@register_object("s_tir.meta_schedule.RewriteTensorize")
|
||||
class RewriteTensorize(Postproc):
|
||||
"""A postprocessor that applies tensorization to annotated blocks.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
vectorize_init_loop : bool
|
||||
Whether or not vectorize the initialization loop produced by DecomposeReduction
|
||||
"""
|
||||
|
||||
def __init__(self, vectorize_init_loop=False) -> None:
|
||||
self.__init_handle_by_constructor__(
|
||||
_ffi_api.PostprocRewriteTensorize, # type: ignore # pylint: disable=no-member
|
||||
vectorize_init_loop,
|
||||
)
|
||||
@@ -0,0 +1,33 @@
|
||||
# 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.
|
||||
"""A postprocessor that adds thread binding to unbound blocks"""
|
||||
|
||||
from tvm_ffi.registry import register_object
|
||||
|
||||
from .. import _ffi_api
|
||||
from .postproc import Postproc
|
||||
|
||||
|
||||
@register_object("s_tir.meta_schedule.RewriteUnboundBlock")
|
||||
class RewriteUnboundBlock(Postproc):
|
||||
"""A postprocessor that adds thread binding to unbound blocks"""
|
||||
|
||||
def __init__(self, max_threadblocks: int = 256) -> None:
|
||||
self.__init_handle_by_constructor__(
|
||||
_ffi_api.PostprocRewriteUnboundBlock, # type: ignore # pylint: disable=no-member
|
||||
max_threadblocks,
|
||||
)
|
||||
@@ -0,0 +1,32 @@
|
||||
# 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.
|
||||
"""A postprocessor that verifies if the GPU code is correct"""
|
||||
|
||||
from tvm_ffi.registry import register_object
|
||||
|
||||
from .. import _ffi_api
|
||||
from .postproc import Postproc
|
||||
|
||||
|
||||
@register_object("s_tir.meta_schedule.VerifyGPUCode")
|
||||
class VerifyGPUCode(Postproc):
|
||||
"""A postprocessor that verifies if the GPU code is correct"""
|
||||
|
||||
def __init__(self) -> None:
|
||||
self.__init_handle_by_constructor__(
|
||||
_ffi_api.PostprocVerifyGPUCode, # type: ignore # pylint: disable=no-member
|
||||
)
|
||||
@@ -0,0 +1,32 @@
|
||||
# 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.
|
||||
"""A postprocessor that verifies the VTCM usage of a given schedule."""
|
||||
|
||||
from tvm_ffi.registry import register_object
|
||||
|
||||
from .. import _ffi_api
|
||||
from .postproc import Postproc
|
||||
|
||||
|
||||
@register_object("s_tir.meta_schedule.VerifyVTCMLimit")
|
||||
class VerifyVTCMLimit(Postproc):
|
||||
"""Verifies that the VTCM usage of a given schedule is within the provided limit."""
|
||||
|
||||
def __init__(self) -> None:
|
||||
self.__init_handle_by_constructor__(
|
||||
_ffi_api.PostprocVerifyVTCMLimit, # type: ignore # pylint: disable=no-member
|
||||
)
|
||||
Reference in New Issue
Block a user