File tree Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -811,7 +811,6 @@ if(EXECUTORCH_BUILD_PYBIND)
811
811
812
812
if (EXECUTORCH_BUILD_COREML )
813
813
list (APPEND _dep_libs coremldelegate )
814
- list (APPEND _dep_libs coreml_inmemoryfs_pybinding )
815
814
endif ()
816
815
817
816
if (EXECUTORCH_BUILD_MPS )
@@ -936,7 +935,6 @@ if(EXECUTORCH_BUILD_EXECUTOR_RUNNER)
936
935
937
936
if (EXECUTORCH_BUILD_COREML )
938
937
list (APPEND _executor_runner_libs coremldelegate )
939
- list (APPEND _executor_runner_libs coreml_inmemoryfs_pybinding )
940
938
endif ()
941
939
942
940
add_executable (executor_runner ${_executor_runner__srcs} )
Original file line number Diff line number Diff line change @@ -139,10 +139,6 @@ def mps(cls) -> bool:
139
139
def xnnpack (cls ) -> bool :
140
140
return cls ._is_cmake_arg_enabled ("EXECUTORCH_BUILD_XNNPACK" , default = False )
141
141
142
- @classmethod
143
- def coreml (cls ) -> bool :
144
- return cls ._is_env_enabled ("EXECUTORCH_BUILD_COREML" , default = False )
145
-
146
142
@classmethod
147
143
def training (cls ) -> bool :
148
144
return cls ._is_cmake_arg_enabled (
@@ -847,15 +843,6 @@ def get_ext_modules() -> List[Extension]:
847
843
]
848
844
)
849
845
850
- if ShouldBuild .pybindings () or ShouldBuild .coreml ():
851
- ext_modules .append (
852
- BuiltExtension (
853
- src = "coreml_inmemoryfs_pybinding.*" ,
854
- src_dir = "backends/apple/coreml" ,
855
- modpath = "executorch.backends.apple.coreml.inmemoryfs" ,
856
- )
857
- )
858
-
859
846
if ShouldBuild .pybindings ():
860
847
ext_modules .append (
861
848
# Install the prebuilt pybindings extension wrapper for the runtime,
You can’t perform that action at this time.
0 commit comments