Source code for afe.backends.apu.apu_checkers

#########################################################
# Copyright (C) 2021 SiMa Technologies, Inc.
#
# This material is SiMa proprietary and confidential.
#
# This material may not be copied or distributed without
# the express prior written permission of SiMa.
#
# All rights reserved.
#########################################################
# Code owner: Joey Chou
#########################################################
from afe.backends import Backend, ExprCheckInfo, BaseChecker
from afe.backends.backend_checker import paccept


[docs] class APUChecker(BaseChecker): """ APU supports all Relay IRs. """ _checkers_name: str = "A64 Checker" _backend: Backend = Backend.APU _predicate = paccept