commit | 15d58e74ca2c06fb30fa4323f12a356e59f29ca4 | [log] [tgz] |
---|---|---|
author | Max191 <44243577+Max191@users.noreply.github.com> | Tue Sep 10 14:06:21 2024 -0700 |
committer | GitHub <noreply@github.com> | Tue Sep 10 21:06:21 2024 +0000 |
tree | babcf4dcd9052e2d799bd773f570def27f3beee3 | |
parent | b197555f579c36e35966647b6422448734d07809 [diff] |
[NFC][GPU] Move LLVMGPUPipelineOptions to iree_gpu dialect (#18458) This moves `LLVMGPUPipelineOptions` to `Codegen/Dialect/GPU` so that pipeline options can be set by iree_gpu lowering configuration logic (like `setMatmulLoweringConfig` in `ConfigUtils.cpp`). A new attribute `GPUPipelineOptionsAttr` is added, with optional parameters defined for each existing pipeline option. The assembly of the pipline attributes has changed, since the options are now part of the `iree_gpu` dialect. For the purposes of setting user configurations with transform dialect this PR changes the following: All pipeline option attributes should now be contained in a single `#iree_gpu.pipeline_options<>` - `reorder_workgroups = "none"/"swizzle"/"transpose"` becomes one of the pipeline options `reorder_workgroups_strategy = None/Swizzle/Transpose` - `prefetch_shared_memory` becomes the pipeline option `prefetch_shared_memory = true/false` - `no_reduce_shared_memory_bank_conflicts` becomes the pipeline option `no_reduce_shared_memory_bank_conflicts = true/false` Example: After this change, the translation_info config dict changes from ``` {reorder_workgroups = "swizzle", prefetch_shared_memory} ``` to ``` {gpu_pipeline_options = #iree_gpu.pipeline_options< prefetch_shared_memory = true, reorder_workgroups_strategy = Swizzle >} ``` --------- Signed-off-by: Max Dawkins <max.dawkins@gmail.com>
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
Package | Release status |
---|---|
GitHub release (stable) | |
GitHub release (nightly) | |
Python iree-compiler | |
Python iree-runtime |
Host platform | Build status |
---|---|
Linux | |
macOS | |
Windows |
For the full list of workflows see https://iree.dev/developers/general/github-actions/.
See our website for more information.
Community meeting recordings: IREE YouTube channel
IREE is licensed under the terms of the Apache 2.0 License with LLVM Exceptions. See LICENSE for more information.