Skip to content

Commit 3d2f344

Browse files
committed
[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
1 parent b9db0a3 commit 3d2f344

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
@@ -122,6 +122,7 @@ def run_test(memory_layout):
122122

123123
edge_program = to_edge_transform_and_lower(
124124
program,
125+
compile_config=self._edge_compile_config,
125126
transform_passes=[
126127
I64toI32(self._edge_compile_config._skip_dim_order),
127128
],

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)