File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ runtime.python_library(
2727 "//executorch/backends/transforms:fuse_conv_with_clamp",
2828 "//executorch/backends/transforms:fuse_dequant_linear",
2929 "//executorch/backends/transforms:fuse_view_copy",
30- "//executorch/backends/transforms:mean_to_sum_div",
3130 "//executorch/backends/transforms:remove_clone_ops",
3231 "//executorch/backends/vulkan/_passes:vulkan_passes",
3332 "//executorch/exir:graph_module",
Original file line number Diff line number Diff line change @@ -725,6 +725,9 @@ def forward(self, x):
725725
726726 self .lower_module_and_test_output (module , sample_inputs )
727727
728+ @unittest .skip (
729+ "Reduce shader does not support multiple reduction axes at the moment"
730+ )
728731 def test_vulkan_backend_sum_dim_list (self ):
729732 class SumModule (torch .nn .Module ):
730733 def __init__ (self ):
@@ -744,6 +747,9 @@ def forward(self, x):
744747 memory_layouts = [vk_graph_schema .VkMemoryLayout .TENSOR_CHANNELS_PACKED ],
745748 )
746749
750+ @unittest .skip (
751+ "Reduce shader does not support multiple reduction axes at the moment"
752+ )
747753 def test_vulkan_backend_sum (self ):
748754 class SumModule (torch .nn .Module ):
749755 def __init__ (self ):
@@ -1441,6 +1447,9 @@ def forward(self, x):
14411447
14421448 self .lower_unary_module_and_test_output (GeluModule ())
14431449
1450+ @unittest .skip (
1451+ "Reduce shader does not support multiple reduction axes at the moment"
1452+ )
14441453 def test_vulkan_backend_mean (self ):
14451454 class MeanModule (torch .nn .Module ):
14461455 def __init__ (self , dims , keepdim = True ):
Original file line number Diff line number Diff line change 1515from executorch .backends .transforms .fuse_conv_with_clamp import FuseClampPass
1616from executorch .backends .transforms .fuse_dequant_linear import FuseDequantLinearPass
1717from executorch .backends .transforms .fuse_view_copy import FuseViewCopyTransform
18- from executorch .backends .transforms .mean_to_sum_div import MeanToSumDiv
1918from executorch .backends .transforms .remove_clone_ops import RemoveCloneOpsTransform
2019
2120from executorch .backends .vulkan ._passes import RemoveLocalScalarDenseOpsTransform
@@ -65,7 +64,6 @@ def preprocess( # noqa: C901
6564 FuseViewCopyTransform (),
6665 FuseBatchNormWithConvPass (program ),
6766 FuseClampPass (),
68- MeanToSumDiv (),
6967 SpecPropPass (),
7068 ConstraintBasedSymShapeEvalPass (),
7169 RemoveLocalScalarDenseOpsTransform (),
You can’t perform that action at this time.
0 commit comments