commit | 3459833ae9c3f0fefe33ff08df7b99359d0c26b4 | [log] [tgz] |
---|---|---|
author | MaheshRavishankar <1663364+MaheshRavishankar@users.noreply.github.com> | Wed Jun 21 20:12:02 2023 -0700 |
committer | GitHub <noreply@github.com> | Thu Jun 22 03:12:02 2023 +0000 |
tree | 9eb0af53f5bab16487c35c3d575cf0f01613eb16 | |
parent | 5757feba749787870aca120f01338d9d0677ed5d [diff] |
Create dispatches for scalar computation using program slices. (#13711) Current dispatch region formation logic is geared towards "large" tensors. For computations on small tensors, these just need to be moved into a dispatch and executed sequentially on the device. Unlike the current dispatch region formation that is centered around tile and fuse approach, the scalar computations just need to be lowered to loops (which might be small trip loops that can be canonicalized/unrolled). So the approach used here uses backward slice to group together a DAG of operations that can be moved into a sequential dispatch for execution on the device. It also does some basic "horizontal fusion" to group together operations that are not producer->consumer but are still scalar computations. Fixes #13545
IREE (Intermediate Representation Execution Environment, pronounced as “eerie”) is an MLIR-based end-to-end compiler and runtime that lowers Machine Learning (ML) models to a unified IR that scales up to meet the needs of the datacenter and down to satisfy the constraints and special considerations of mobile and edge deployments.
See our website for project details, user guides, and instructions on building from source.
IREE is still in its early phase. We have settled down on the overarching infrastructure and are actively improving various software components as well as project logistics. It is still quite far from ready for everyday use and is made available without any support at the moment. With that said, we welcome any kind of feedback on any communication channels!
See our website for more information.
IREE is licensed under the terms of the Apache 2.0 License with LLVM Exceptions. See LICENSE for more information.