blob: c0eb79601cf065d2ac377e81809ec47f3a9dfc29 [file] [log] [blame]
"""Module init for the python bindings."""
# Copyright 2019 The IREE Authors
#
# Licensed under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
# pylint: disable=g-multiple-import
# pylint: disable=g-bad-import-order
# pylint: disable=wildcard-import
from . import binding
# Pull some of the native symbols into the public API.
# Hal imports
from .binding import BufferUsage, HalBuffer, HalDevice, HalDriver, HalElementType, MemoryAccess, MemoryType, Shape
# Vm imports
from .binding import create_hal_module, Linkage, VmVariantList, VmFunction, VmInstance, VmContext, VmModule
# SystemApi
from .system_api import *
# Function
from .function import *