From c681fc4387f385adbf6ebe4782bb18946fcdad2a Mon Sep 17 00:00:00 2001 From: Songhao Jia Date: Tue, 14 May 2024 14:35:28 -0700 Subject: [PATCH] temporary disable dim order ops in executorch/examples to mitigate oss ios ci issue (#3610) Summary: Pull Request resolved: https://github.com/pytorch/executorch/pull/3610 as title Reviewed By: shoumikhin Differential Revision: D57353025 --- examples/portable/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/portable/utils.py b/examples/portable/utils.py index 82242f585a8..9e4a9607618 100644 --- a/examples/portable/utils.py +++ b/examples/portable/utils.py @@ -20,6 +20,7 @@ _EDGE_COMPILE_CONFIG = exir.EdgeCompileConfig( _check_ir_validity=True, + _skip_dim_order=True, # TODO(T189114319): Reuse dim order op after solving the ios oss issue )