Skip to content

Commit 6158674

Browse files
[dim order] reenbale dim order as default
Pull Request resolved: #7252 This diff reenable dim order as default feature in ExecuTorch stack. Differential Revision: [D66970153](https://our.internmc.facebook.com/intern/diff/D66970153/) ghstack-source-id: 257301598 Co-authored-by: gasoonjia <[email protected]>
1 parent d2b7b2f commit 6158674

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backends/vulkan/test/test_vulkan_delegate.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ def run_test():
117117

118118
edge_program = to_edge_transform_and_lower(
119119
program,
120+
compile_config=self._edge_compile_config,
120121
transform_passes=[
121122
I64toI32(self._edge_compile_config._skip_dim_order),
122123
],

exir/capture/_config.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ class EdgeCompileConfig:
4545
)
4646
_skip_type_promotion: bool = False
4747
# TODO(gasoonjia): remove this
48-
# TODO(T192537614): reenanle dim order as default
49-
_skip_dim_order: bool = True
48+
_skip_dim_order: bool = False
5049

5150

5251
@compatibility(is_backward_compatible=False)

0 commit comments

Comments
 (0)