File tree Expand file tree Collapse file tree 6 files changed +1
-25
lines changed
examples/models/llama3_2_vision Expand file tree Collapse file tree 6 files changed +1
-25
lines changed Original file line number Diff line number Diff line change @@ -87,10 +87,6 @@ test_model() {
8787 bash examples/models/llava/install_requirements.sh
8888 STRICT=" --no-strict"
8989 fi
90- if [[ " $MODEL_NAME " == " llama3_2_vision_encoder" || " $MODEL_NAME " == " llama3_2_text_decoder" ]]; then
91- # Install requirements for llama vision.
92- bash examples/models/llama3_2_vision/install_requirements.sh
93- fi
9490 if [[ " ${MODEL_NAME} " == " qwen2_5" ]]; then
9591 # Install requirements for export_llama
9692 bash examples/models/llama/install_requirements.sh
Original file line number Diff line number Diff line change @@ -24,9 +24,6 @@ if [[ "$BUILD_TOOL" == "cmake" ]]; then
2424 CMAKE_ARGS=" -DEXECUTORCH_BUILD_PYBIND=ON -DEXECUTORCH_BUILD_XNNPACK=ON -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON" \
2525 .ci/scripts/setup-linux.sh " $@ "
2626
27- # Install llama3_2_vision dependencies.
28- PYTHON_EXECUTABLE=python ./examples/models/llama3_2_vision/install_requirements.sh
29-
3027 .ci/scripts/unittest-linux-cmake.sh
3128elif [[ " $BUILD_TOOL " == " buck2" ]]; then
3229 # Removing this breaks sccache in the Buck build, apparently
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ if [[ "$BUILD_TOOL" == "cmake" ]]; then
2929 # Install llama3_2_vision dependencies.
3030 PYTHON_EXECUTABLE=python \
3131 ${CONDA_RUN} --no-capture-output \
32- ./examples/models/llama3_2_vision/install_requirements.sh
3332
3433 .ci/scripts/unittest-macos-cmake.sh
3534elif [[ " $BUILD_TOOL " == " buck2" ]]; then
Original file line number Diff line number Diff line change @@ -83,8 +83,6 @@ test_pytest_ops() { # Test ops and other things
8383test_pytest_models () { # Test ops and other things
8484 echo " ${TEST_SUITE_NAME} : Run pytest"
8585
86- examples/models/llama3_2_vision/install_requirements.sh
87-
8886 # Prepare for pytest
8987 backends/arm/scripts/build_executorch.sh
9088
@@ -117,8 +115,6 @@ test_pytest_ops_ethosu_fvp() { # Same as test_pytest but also sometime verify us
117115test_pytest_models_ethosu_fvp () { # Same as test_pytest but also sometime verify using Corstone FVP
118116 echo " ${TEST_SUITE_NAME} : Run pytest with fvp"
119117
120- examples/models/llama3_2_vision/install_requirements.sh
121-
122118 # Prepare Corstone-3x0 FVP for pytest
123119 backends/arm/scripts/build_executorch.sh
124120 backends/arm/scripts/build_portable_kernels.sh
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22# TODO: Make each example publish its own requirements.txt
33timm == 1.0.7
44torchsr == 1.0.4
5+ torchtune >= 0.6.1
56transformers ==4.47.1
You can’t perform that action at this time.
0 commit comments