blob: 63a960360e41f70d11f18129d96c16845dc98608 [file] [log] [blame]
Stella Laurenzofaa25f92023-08-21 18:11:54 -07001# Copyright 2023 The IREE Authors
2#
3# Licensed under the Apache License v2.0 with LLVM Exceptions.
4# See https://llvm.org/LICENSE.txt for license information.
5# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
7from iree.compiler import ir
8
9# Make sure that our dialects import.
Scott Todddf5e5aa2024-10-18 09:40:01 -070010from iree.compiler.dialects import (
11 flow,
12 hal,
13 stream,
14 vm,
15 util,
16)