diff --git a/backends/vulkan/test/test_vulkan_delegate.py b/backends/vulkan/test/test_vulkan_delegate.py index 54db1a4b778..57cbf9fa0da 100644 --- a/backends/vulkan/test/test_vulkan_delegate.py +++ b/backends/vulkan/test/test_vulkan_delegate.py @@ -122,6 +122,7 @@ def run_test(memory_layout): edge_program = to_edge_transform_and_lower( program, + compile_config=self._edge_compile_config, transform_passes=[ I64toI32(self._edge_compile_config._skip_dim_order), ], diff --git a/exir/capture/_config.py b/exir/capture/_config.py index 24865e7a841..7f88c48ce2f 100644 --- a/exir/capture/_config.py +++ b/exir/capture/_config.py @@ -45,8 +45,7 @@ class EdgeCompileConfig: ) _skip_type_promotion: bool = False # TODO(gasoonjia): remove this - # TODO(T192537614): reenanle dim order as default - _skip_dim_order: bool = True + _skip_dim_order: bool = False @compatibility(is_backward_compatible=False)