Skip to content

Commit 74374db

Browse files
committed
update usage
1 parent c23b755 commit 74374db

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,6 @@ if(EXECUTORCH_BUILD_PYBIND)
811811

812812
if(EXECUTORCH_BUILD_COREML)
813813
list(APPEND _dep_libs coremldelegate)
814-
list(APPEND _dep_libs coreml_inmemoryfs_pybinding)
815814
endif()
816815

817816
if(EXECUTORCH_BUILD_MPS)
@@ -936,7 +935,6 @@ if(EXECUTORCH_BUILD_EXECUTOR_RUNNER)
936935

937936
if(EXECUTORCH_BUILD_COREML)
938937
list(APPEND _executor_runner_libs coremldelegate)
939-
list(APPEND _executor_runner_libs coreml_inmemoryfs_pybinding)
940938
endif()
941939

942940
add_executable(executor_runner ${_executor_runner__srcs})

setup.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,6 @@ def mps(cls) -> bool:
139139
def xnnpack(cls) -> bool:
140140
return cls._is_cmake_arg_enabled("EXECUTORCH_BUILD_XNNPACK", default=False)
141141

142-
@classmethod
143-
def coreml(cls) -> bool:
144-
return cls._is_env_enabled("EXECUTORCH_BUILD_COREML", default=False)
145-
146142
@classmethod
147143
def training(cls) -> bool:
148144
return cls._is_cmake_arg_enabled(
@@ -847,15 +843,6 @@ def get_ext_modules() -> List[Extension]:
847843
]
848844
)
849845

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-
859846
if ShouldBuild.pybindings():
860847
ext_modules.append(
861848
# Install the prebuilt pybindings extension wrapper for the runtime,

0 commit comments

Comments
 (0)