Compare commits

...

15 Commits

Author SHA1 Message Date
c47c7219e9 up 2025-08-19 12:07:03 -07:00
f9f614a4df Update install_executorch.sh 2025-08-19 09:32:49 -07:00
b0aa78d1b0 Update install_executorch.sh 2025-08-19 09:32:49 -07:00
4e9c45da39 Update install_executorch.sh 2025-08-19 09:32:49 -07:00
52c765b60a Update install_executorch.sh 2025-08-19 09:32:49 -07:00
0df98ecdbf Update install_executorch.sh 2025-08-19 09:32:49 -07:00
28ae15d998 Say that ExecuTorch now has triton 2025-08-19 09:32:49 -07:00
3e56928b55 Update executorch.txt 2025-08-19 09:32:49 -07:00
a13dfc320d Update install_executorch.sh 2025-08-19 09:32:49 -07:00
9dedc04a0a Update executorch.txt 2025-08-19 09:32:49 -07:00
3a58ff9f1a Update install_executorch.sh 2025-08-19 09:32:49 -07:00
cfa8a143bd Update install_executorch.sh 2025-08-19 09:32:49 -07:00
0e7531b993 Update pull.yml 2025-08-19 09:32:49 -07:00
d5c629b9ca Update executorch.txt 2025-08-19 09:32:49 -07:00
6c268a9336 Test re-enabling ET test 2025-08-19 09:32:49 -07:00
4 changed files with 11 additions and 7 deletions

View File

@ -259,6 +259,7 @@ case "$tag" in
ANACONDA_PYTHON_VERSION=3.10
CLANG_VERSION=12
EXECUTORCH=yes
TRITON_CPU=yes
;;
pytorch-linux-jammy-py3.12-halide)
CUDA_VERSION=12.6

View File

@ -1 +1 @@
56392aa978594cc155fa8af48cd949f5b5f1823a
6d567136baf898e682d4645781d846529b2b9bae

View File

@ -39,6 +39,10 @@ install_pip_dependencies() {
pushd executorch
as_jenkins bash install_executorch.sh
pushd .ci/docker
conda_run pip install -r requirements-ci.txt
popd
# A workaround, ExecuTorch has moved to numpy 2.0 which is not compatible with the current
# numba and scipy version used in PyTorch CI
conda_run pip uninstall -y numba scipy
@ -49,10 +53,11 @@ install_pip_dependencies() {
setup_executorch() {
pushd executorch
export PYTHON_EXECUTABLE=python
export CMAKE_ARGS="-DEXECUTORCH_BUILD_PYBIND=ON -DEXECUTORCH_BUILD_XNNPACK=ON -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON"
as_jenkins .ci/scripts/setup-linux.sh --build-tool cmake || true
# export PYTHON_EXECUTABLE=python
# export CMAKE_ARGS="-DEXECUTORCH_BUILD_PYBIND=ON -DEXECUTORCH_BUILD_XNNPACK=ON -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON -DEXECUTORCH_BUILD_EXECUTOR_RUNNER=ON -DEXECUTORCH_BUILD_TESTS=ON"
as_jenkins PYTHON_EXECUTABLE=python \
CMAKE_ARGS="-DEXECUTORCH_BUILD_EXECUTOR_RUNNER=ON -DEXECUTORCH_BUILD_TESTS=ON" \
.ci/scripts/setup-linux.sh "cmake" "debug" "false"
popd
}

View File

@ -317,7 +317,6 @@ jobs:
secrets: inherit
linux-jammy-py3-clang12-executorch-build:
if: false # Docker build needs pin update
name: linux-jammy-py3-clang12-executorch
uses: ./.github/workflows/_linux-build.yml
needs: get-label-type
@ -335,7 +334,6 @@ jobs:
name: linux-jammy-py3-clang12-executorch
uses: ./.github/workflows/_linux-test.yml
needs: linux-jammy-py3-clang12-executorch-build
if: false # Has been broken for a while
with:
build-environment: linux-jammy-py3-clang12-executorch
docker-image: ${{ needs.linux-jammy-py3-clang12-executorch-build.outputs.docker-image }}