commit | 76ea83344340a27a6dd8264af13f50608a8e349c | [log] [tgz] |
---|---|---|
author | Kojo Acquah <KoolJBlack@users.noreply.github.com> | Wed Apr 05 16:26:58 2023 -0700 |
committer | GitHub <noreply@github.com> | Wed Apr 05 23:26:58 2023 +0000 |
tree | 7b71e8976b859d5a506e5faf11ce0ad7a28399de | |
parent | af4c377e392dc9f55f69b2f51c7b325fef7a1951 [diff] |
Add operand type info to summarizeLinalgOp::summarizeLinalgOp() (#12570) Appends a string of datatypes for each op operand during `summarizeLinalgOp()`. Note that the number of datatypes listed are based on the number of operands (input and output), not dimension. In the case that all the types match, only one type is printed (for brevity). Some examples of before: ``` forward_dispatch_1_generic_1x128x768 forward_dispatch_14_matmul_128x768x768 forward_dispatch_8_batch_matmul_12x128x128x64 ``` ... and after: ``` forward_dispatch_1_generic_1x128x768_i32xi32xf32 forward_dispatch_14_matmul_128x768x768_f32 forward_dispatch_8_batch_matmul_12x128x128x64_f32x ``` (see the full dump for mobilebert after tile&distribute to workgroups [here](https://gist.github.com/KoolJBlack/90e4b7e45afcc72058391b35b49dda1b))
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.