File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 72
72
conda activate "${CONDA_ENV}"
73
73
74
74
MODEL_NAME=${{ matrix.model }}
75
+ # Install requirements for llama vision
76
+ if [[ "$MODEL_NAME" == "llama3_2_vision_encoder" ]]; then
77
+ bash examples/models/llama3_2_vision/install_requirements.sh
78
+ fi
75
79
BUILD_TOOL=${{ matrix.build-tool }}
76
80
BACKEND=${{ matrix.backend }}
77
81
DEMO_BACKEND_DELEGATION=${{ matrix.demo_backend_delegation }}
Original file line number Diff line number Diff line change 58
58
bash .ci/scripts/setup-conda.sh
59
59
# Setup MacOS dependencies as there is no Docker support on MacOS atm
60
60
PYTHON_EXECUTABLE=python ${CONDA_RUN} bash .ci/scripts/setup-macos.sh "${BUILD_TOOL}"
61
- # Build and test xecutorch
61
+ # Install requirements for llama vision
62
+ if [[ "$MODEL_NAME" == "llama3_2_vision_encoder" ]]; then
63
+ bash examples/models/llama3_2_vision/install_requirements.sh
64
+ fi
65
+ # Build and test executorch
62
66
PYTHON_EXECUTABLE=python ${CONDA_RUN} bash .ci/scripts/test_model.sh "${MODEL_NAME}" "${BUILD_TOOL}" "${BACKEND}" "${DEMO_BACKEND_DELEGATION}"
63
67
64
68
test-custom-ops-macos :
You can’t perform that action at this time.
0 commit comments