Skip to content

Commit 3f4950a

Browse files
committed
Update
[ghstack-poisoned]
2 parents d4f9a6f + 1ef7f54 commit 3f4950a

File tree

24 files changed

+1126
-287
lines changed

24 files changed

+1126
-287
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ pip-out/
2424
# Any exported models and profiling outputs
2525
*.bin
2626
*.model
27+
*.etdump
2728
tokenizer.json
2829
*.pte
2930
*.ptd
@@ -58,6 +59,7 @@ xcuserdata/
5859
/include/
5960
/share/
6061
/version.py
62+
*.csv
6163

6264
# Android
6365
*.aar

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
cmake_minimum_required(VERSION 3.29)
5151
project(executorch)
5252

53+
set(EXECUTORCH_ROOT ${CMAKE_CURRENT_SOURCE_DIR})
54+
5355
include(${PROJECT_SOURCE_DIR}/tools/cmake/common/preset.cmake)
5456
include(${PROJECT_SOURCE_DIR}/tools/cmake/Codegen.cmake)
5557
include(${PROJECT_SOURCE_DIR}/tools/cmake/Utils.cmake)
@@ -124,8 +126,6 @@ set(CMAKE_INSTALL_RPATH_USE_LINK_PATH ON)
124126
# Instead please use `find_package(executorch REQUIRED)` in the example
125127
# directory and add a new executable in the example `CMakeLists.txt`.
126128

127-
set(EXECUTORCH_ROOT ${CMAKE_CURRENT_SOURCE_DIR})
128-
129129
if(NOT EXECUTORCH_ENABLE_LOGGING)
130130
# Avoid pulling in the logging strings, which can be large. Note that this
131131
# will set the compiler flag for all targets in this directory, and for all

backends/apple/coreml/TARGETS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ runtime.python_test(
120120
"test/*.py",
121121
]),
122122
deps = [
123+
"fbsource//third-party/pypi/coremltools:coremltools",
123124
"fbsource//third-party/pypi/pytest:pytest",
124125
":partitioner",
125126
":quantizer",

0 commit comments

Comments
 (0)