Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion iree/turbine/kernel/boo/op_exports/layer_norm.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def output_shape(self) -> list[int]:

@property
def force_single_dispatch(self) -> bool:
return True
return self.mode == Mode.FORWARD

@staticmethod
def get(
Expand Down
3 changes: 3 additions & 0 deletions iree/turbine/kernel/boo/runtime/launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,9 @@ def default_compiler_flags_callback(device: Device, cache_dir: Path) -> list[str
flags.append(
"--iree-dispatch-creation-enable-fuse-padding-into-linalg-consumer-ops"
)
flags.append("--iree-dispatch-creation-enable-split-reduction")
# Temporary flags to transpose filter layout without fusing into the computation dispatch.
flags.append("--iree-global-opt-experimental-enable-edge-reshape-propagation")
Comment on lines +234 to +236
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want some comments explaining why they were added? And in the case of iree-global-opt-experimental-enable-edge-reshape-propagation, saying that it should only be a temporary flag.

flags.append(
"--iree-preprocessing-pass-pipeline=builtin.module(iree-preprocessing-convert-conv-filter-to-channels-last)"
)
Expand Down
Loading