commit | b890e22a2fec5177bffd491a4ae82ebd46a38c9b | [log] [tgz] |
---|---|---|
author | Scott Todd <scotttodd@google.com> | Mon Aug 28 14:38:03 2023 -0700 |
committer | GitHub <noreply@github.com> | Mon Aug 28 14:38:03 2023 -0700 |
tree | 7760d66c0db37d0fbc0bcd552849561fa8cc8518 | |
parent | b6f8c96adc97f30dac5997a7fcb000cb63f3b5e8 [diff] |
Add descriptions for root compiler and runtime Python modules. (#14856) Before: ``` λ python -c "import iree.compiler as ireec; help(ireec)" Help on package iree.compiler in iree: NAME iree.compiler DESCRIPTION # Copyright 2021 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 PACKAGE CONTENTS _mlir_libs (package) ``` After: ``` λ python -c "import iree.compiler as ireec; help(ireec)" Help on package iree.compiler in iree: NAME iree.compiler - IREE compiler Python bindings. PACKAGE CONTENTS _mlir_libs (package) ``` skip-ci: comment-only change
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.