2025-06-05T23:15:09.8987116Z Current runner version: '2.325.0' 2025-06-05T23:15:09.8994150Z Runner name: 'i-046e769aed462423c' 2025-06-05T23:15:09.8995203Z Machine name: 'ip-10-0-72-188' 2025-06-05T23:15:09.8997873Z ##[group]GITHUB_TOKEN Permissions 2025-06-05T23:15:09.9000136Z Contents: read 2025-06-05T23:15:09.9000853Z Metadata: read 2025-06-05T23:15:09.9001425Z ##[endgroup] 2025-06-05T23:15:09.9003808Z Secret source: Actions 2025-06-05T23:15:09.9004545Z Prepare workflow directory 2025-06-05T23:15:09.9569257Z Prepare all required actions 2025-06-05T23:15:09.9609945Z Getting action download info 2025-06-05T23:15:10.2315197Z Download action repository 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-06-05T23:15:10.4871158Z Download action repository 'pytorch/pytorch@9c1bc9ce4684de96db025292610c0664d3d55345' (SHA:9c1bc9ce4684de96db025292610c0664d3d55345) 2025-06-05T23:15:23.0165637Z Download action repository 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-06-05T23:15:23.3129817Z Download action repository 'pmeier/pytest-results-action@a2c1430e2bddadbad9f49a6f9b879f062c6b19b1' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2025-06-05T23:15:23.4365278Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-06-05T23:15:23.8663549Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-06-05T23:15:24.1098663Z Getting action download info 2025-06-05T23:15:24.1959623Z Download action repository 'pytorch/pytorch@main' (SHA:fa705f791249c5eee912096f1d7ac7b2d5b60e8c) 2025-06-05T23:15:37.1983524Z Complete job name: android / build-llm-demo / linux-job 2025-06-05T23:15:37.2513722Z A job started hook has been configured by the self-hosted runner administrator 2025-06-05T23:15:37.2618398Z ##[group]Run '/home/ec2-user/runner-scripts/before_job.sh' 2025-06-05T23:15:37.2627797Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:15:37.2628467Z ##[endgroup] 2025-06-05T23:15:38.7547398Z Runner Type: linux.2xlarge 2025-06-05T23:15:38.7548142Z Instance Type: c5.2xlarge 2025-06-05T23:15:38.7548643Z AMI Name: unknown 2025-06-05T23:15:38.7573526Z AMI ID: ami-071226ecf16aa7d96 2025-06-05T23:15:44.1790857Z ##[group]Run set -euxo pipefail 2025-06-05T23:15:44.1791293Z set -euxo pipefail 2025-06-05T23:15:44.1791605Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-06-05T23:15:44.1791998Z  echo "::group::Cleanup with-sudo debug output" 2025-06-05T23:15:44.1792378Z  sudo rm -rfv "${GITHUB_WORKSPACE}" 2025-06-05T23:15:44.1792692Z else 2025-06-05T23:15:44.1792949Z  echo "::group::Cleanup no-sudo debug output" 2025-06-05T23:15:44.1793314Z  rm -rfv "${GITHUB_WORKSPACE}" 2025-06-05T23:15:44.1793597Z fi 2025-06-05T23:15:44.1793797Z  2025-06-05T23:15:44.1794029Z mkdir -p "${GITHUB_WORKSPACE}" 2025-06-05T23:15:44.1794352Z echo "::endgroup::" 2025-06-05T23:15:44.1803409Z shell: /usr/bin/bash -e {0} 2025-06-05T23:15:44.1803702Z env: 2025-06-05T23:15:44.1803995Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:44.1804428Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:44.1804765Z PR_NUMBER: 2025-06-05T23:15:44.1812471Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:44.1820703Z NO_SUDO: false 2025-06-05T23:15:44.1820933Z ##[endgroup] 2025-06-05T23:15:44.1846805Z + [[ false == \f\a\l\s\e ]] 2025-06-05T23:15:44.1860860Z ##[group]Cleanup with-sudo debug output 2025-06-05T23:15:44.1864213Z + echo '::group::Cleanup with-sudo debug output' 2025-06-05T23:15:44.1864708Z + sudo rm -rfv /home/ec2-user/actions-runner/_work/executorch/executorch 2025-06-05T23:15:44.3116725Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch' 2025-06-05T23:15:44.3132710Z + mkdir -p /home/ec2-user/actions-runner/_work/executorch/executorch 2025-06-05T23:15:44.3143308Z + echo ::endgroup:: 2025-06-05T23:15:44.3144491Z ##[endgroup] 2025-06-05T23:15:44.3255084Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-06-05T23:15:44.3255571Z with: 2025-06-05T23:15:44.3255796Z repository: pytorch/test-infra 2025-06-05T23:15:44.3256099Z path: test-infra 2025-06-05T23:15:44.3256321Z submodules: recursive 2025-06-05T23:15:44.3256720Z token: *** 2025-06-05T23:15:44.3256937Z ssh-strict: true 2025-06-05T23:15:44.3257144Z ssh-user: git 2025-06-05T23:15:44.3257377Z persist-credentials: true 2025-06-05T23:15:44.3257628Z clean: true 2025-06-05T23:15:44.3257882Z sparse-checkout-cone-mode: true 2025-06-05T23:15:44.3258172Z fetch-depth: 1 2025-06-05T23:15:44.3258385Z fetch-tags: false 2025-06-05T23:15:44.3258622Z show-progress: true 2025-06-05T23:15:44.3258844Z lfs: false 2025-06-05T23:15:44.3259070Z set-safe-directory: true 2025-06-05T23:15:44.3259337Z env: 2025-06-05T23:15:44.3259613Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:44.3260000Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:44.3260315Z PR_NUMBER: 2025-06-05T23:15:44.3268328Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:44.3276471Z ##[endgroup] 2025-06-05T23:15:44.4416215Z Syncing repository: pytorch/test-infra 2025-06-05T23:15:44.4417005Z ##[group]Getting Git version info 2025-06-05T23:15:44.4417527Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra' 2025-06-05T23:15:44.4418245Z [command]/usr/bin/git version 2025-06-05T23:15:44.4418531Z git version 2.47.1 2025-06-05T23:15:44.4420074Z ##[endgroup] 2025-06-05T23:15:44.4431200Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/b04f3c19-d7b1-4b47-81f4-d8d3eef45b5d' before making global git config changes 2025-06-05T23:15:44.4432311Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:15:44.4436269Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:15:44.4463119Z ##[group]Initializing the repository 2025-06-05T23:15:44.4468714Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:15:44.4496831Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-06-05T23:15:44.4497474Z hint: is subject to change. To configure the initial branch name to use in all 2025-06-05T23:15:44.4498072Z hint: of your new repositories, which will suppress this warning, call: 2025-06-05T23:15:44.4498482Z hint: 2025-06-05T23:15:44.4498767Z hint: git config --global init.defaultBranch 2025-06-05T23:15:44.4499112Z hint: 2025-06-05T23:15:44.4499423Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-06-05T23:15:44.4499985Z hint: 'development'. The just-created branch can be renamed via this command: 2025-06-05T23:15:44.4500420Z hint: 2025-06-05T23:15:44.4500633Z hint: git branch -m 2025-06-05T23:15:44.4501214Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/ 2025-06-05T23:15:44.4506459Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2025-06-05T23:15:44.4529953Z ##[endgroup] 2025-06-05T23:15:44.4530407Z ##[group]Disabling automatic garbage collection 2025-06-05T23:15:44.4534122Z [command]/usr/bin/git config --local gc.auto 0 2025-06-05T23:15:44.4557417Z ##[endgroup] 2025-06-05T23:15:44.4557826Z ##[group]Setting up auth 2025-06-05T23:15:44.4563075Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:15:44.4587246Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-06-05T23:15:44.4863194Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:15:44.4887203Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-06-05T23:15:44.5136772Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:15:44.5175813Z ##[endgroup] 2025-06-05T23:15:44.5176285Z ##[group]Determining the default branch 2025-06-05T23:15:44.5179047Z Retrieving the default branch name 2025-06-05T23:15:44.7104123Z Default branch 'main' 2025-06-05T23:15:44.7104864Z ##[endgroup] 2025-06-05T23:15:44.7105300Z ##[group]Fetching the repository 2025-06-05T23:15:44.7110172Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/main:refs/remotes/origin/main 2025-06-05T23:15:45.0857231Z From https://github.com/pytorch/test-infra 2025-06-05T23:15:45.0857697Z * [new branch] main -> origin/main 2025-06-05T23:15:45.0875822Z ##[endgroup] 2025-06-05T23:15:45.0876241Z ##[group]Determining the checkout info 2025-06-05T23:15:45.0877687Z ##[endgroup] 2025-06-05T23:15:45.0882407Z [command]/usr/bin/git sparse-checkout disable 2025-06-05T23:15:45.0912353Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-06-05T23:15:45.0934081Z ##[group]Checking out the ref 2025-06-05T23:15:45.0937872Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2025-06-05T23:15:45.1772109Z Switched to a new branch 'main' 2025-06-05T23:15:45.1772807Z branch 'main' set up to track 'origin/main'. 2025-06-05T23:15:45.1779847Z ##[endgroup] 2025-06-05T23:15:45.1780279Z ##[group]Setting up auth for fetching submodules 2025-06-05T23:15:45.1785806Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:15:45.1823053Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-06-05T23:15:45.1848229Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-05T23:15:45.1872342Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-05T23:15:45.1894558Z ##[endgroup] 2025-06-05T23:15:45.1894994Z ##[group]Fetching submodules 2025-06-05T23:15:45.1897829Z [command]/usr/bin/git submodule sync --recursive 2025-06-05T23:15:45.2143128Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-06-05T23:15:45.2393873Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-06-05T23:15:45.2637101Z ##[endgroup] 2025-06-05T23:15:45.2637801Z ##[group]Persisting credentials for submodules 2025-06-05T23:15:45.2644030Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :" 2025-06-05T23:15:45.2890122Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url" 2025-06-05T23:15:45.3138323Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-06-05T23:15:45.3384760Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-06-05T23:15:45.3626758Z ##[endgroup] 2025-06-05T23:15:45.3659177Z [command]/usr/bin/git log -1 --format=%H 2025-06-05T23:15:45.3678374Z 714db9db22f90727b389d5ecb5a2dc16cd27d00c 2025-06-05T23:15:45.3849988Z Prepare all required actions 2025-06-05T23:15:45.3850512Z Getting action download info 2025-06-05T23:15:45.4835576Z Download action repository 'pytorch/test-infra@main' (SHA:714db9db22f90727b389d5ecb5a2dc16cd27d00c) 2025-06-05T23:15:46.9415443Z Getting action download info 2025-06-05T23:15:47.0302229Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2025-06-05T23:15:47.1935961Z ##[group]Run ./test-infra/.github/actions/setup-linux 2025-06-05T23:15:47.1936493Z env: 2025-06-05T23:15:47.1936759Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:47.1937139Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:47.1937404Z PR_NUMBER: 2025-06-05T23:15:47.1944969Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:47.1952842Z ##[endgroup] 2025-06-05T23:15:47.2033524Z ##[group]Run set -euo pipefail 2025-06-05T23:15:47.2033858Z set -euo pipefail 2025-06-05T23:15:47.2034144Z function get_ec2_metadata() { 2025-06-05T23:15:47.2034498Z  # Pulled from instance metadata endpoint for EC2 2025-06-05T23:15:47.2035155Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-06-05T23:15:47.2035697Z  category=$1 2025-06-05T23:15:47.2036570Z  curl -H "X-aws-ec2-metadata-token: $(curl -s -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 30")" -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2025-06-05T23:15:47.2037464Z } 2025-06-05T23:15:47.2037705Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-06-05T23:15:47.2038123Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-06-05T23:15:47.2038584Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-06-05T23:15:47.2038988Z echo "system info $(uname -a)" 2025-06-05T23:15:47.2044709Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:15:47.2045071Z env: 2025-06-05T23:15:47.2045339Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:47.2045865Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:47.2046146Z PR_NUMBER: 2025-06-05T23:15:47.2053656Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:47.2061569Z ##[endgroup] 2025-06-05T23:15:47.2188707Z ami-id: ami-071226ecf16aa7d96 2025-06-05T23:15:47.2277503Z instance-id: i-046e769aed462423c 2025-06-05T23:15:47.2363844Z instance-type: c5.2xlarge 2025-06-05T23:15:47.2373609Z system info Linux ip-10-0-72-188.ec2.internal 6.1.130-139.222.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 11 01:10:58 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux 2025-06-05T23:15:47.2407441Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:15:47.2408399Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:15:47.2414280Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:15:47.2414649Z env: 2025-06-05T23:15:47.2414928Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:47.2415309Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:47.2415590Z PR_NUMBER: 2025-06-05T23:15:47.2423260Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:47.2431263Z ##[endgroup] 2025-06-05T23:15:47.2499735Z ##[group]Run if systemctl is-active --quiet docker; then 2025-06-05T23:15:47.2500175Z if systemctl is-active --quiet docker; then 2025-06-05T23:15:47.2500537Z  echo "Docker daemon is running..."; 2025-06-05T23:15:47.2500852Z else 2025-06-05T23:15:47.2501179Z  echo "Starting docker deamon..." && sudo systemctl start docker; 2025-06-05T23:15:47.2501591Z fi 2025-06-05T23:15:47.2506926Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:15:47.2507285Z env: 2025-06-05T23:15:47.2507567Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:47.2507947Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:47.2508224Z PR_NUMBER: 2025-06-05T23:15:47.2515747Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:47.2523499Z ##[endgroup] 2025-06-05T23:15:47.2593245Z Docker daemon is running... 2025-06-05T23:15:47.2619030Z ##[group]Run AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-06-05T23:15:47.2619663Z AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-06-05T23:15:47.2620297Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2025-06-05T23:15:47.2620897Z retry aws ecr get-login-password --region "$AWS_DEFAULT_REGION" | docker login --username AWS \ 2025-06-05T23:15:47.2621618Z  --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com" 2025-06-05T23:15:47.2627055Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:15:47.2627421Z env: 2025-06-05T23:15:47.2627685Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:47.2628061Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:47.2628437Z PR_NUMBER: 2025-06-05T23:15:47.2635965Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:47.2643776Z AWS_RETRY_MODE: standard 2025-06-05T23:15:47.2644037Z AWS_MAX_ATTEMPTS: 5 2025-06-05T23:15:47.2644277Z AWS_DEFAULT_REGION: us-east-1 2025-06-05T23:15:47.2644543Z ##[endgroup] 2025-06-05T23:15:48.2988769Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:15:48.2989841Z Configure a credential helper to remove this warning. See 2025-06-05T23:15:48.2990708Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:15:48.2991248Z 2025-06-05T23:15:48.2991373Z Login Succeeded 2025-06-05T23:15:48.3045636Z ##[group]Run env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:15:48.3046241Z env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:15:48.3046737Z env | grep '^CI' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:15:48.3052764Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:15:48.3053124Z env: 2025-06-05T23:15:48.3053410Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:48.3053799Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:48.3054075Z PR_NUMBER: 2025-06-05T23:15:48.3061905Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:48.3070156Z ##[endgroup] 2025-06-05T23:15:48.3164720Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-06-05T23:15:48.3165446Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-06-05T23:15:48.3165839Z sudo rm -rf "${RUNNER_ARTIFACT_DIR}" 2025-06-05T23:15:48.3166171Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2025-06-05T23:15:48.3166628Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:15:48.3167042Z  2025-06-05T23:15:48.3167335Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2025-06-05T23:15:48.3167740Z sudo rm -rf "${RUNNER_TEST_RESULTS_DIR}" 2025-06-05T23:15:48.3168102Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2025-06-05T23:15:48.3168588Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:15:48.3169040Z  2025-06-05T23:15:48.3169264Z RUNNER_DOCS_DIR="${RUNNER_TEMP}/docs" 2025-06-05T23:15:48.3169620Z sudo rm -rf "${RUNNER_DOCS_DIR}" 2025-06-05T23:15:48.3169928Z mkdir -p "${RUNNER_DOCS_DIR}" 2025-06-05T23:15:48.3170323Z echo "RUNNER_DOCS_DIR=${RUNNER_DOCS_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:15:48.3175828Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:15:48.3176197Z env: 2025-06-05T23:15:48.3176479Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:48.3176867Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:48.3177131Z PR_NUMBER: 2025-06-05T23:15:48.3184778Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:48.3192760Z ##[endgroup] 2025-06-05T23:15:48.9065849Z ##[group]Run needs=0 2025-06-05T23:15:48.9066127Z needs=0 2025-06-05T23:15:48.9066486Z if lspci -v | grep -e 'controller.*NVIDIA' >/dev/null 2>/dev/null; then 2025-06-05T23:15:48.9066916Z  needs=1 2025-06-05T23:15:48.9067127Z fi 2025-06-05T23:15:48.9067369Z echo "does=${needs}" >> $GITHUB_OUTPUT 2025-06-05T23:15:48.9073029Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:15:48.9073417Z env: 2025-06-05T23:15:48.9073683Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:48.9074061Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:48.9074337Z PR_NUMBER: 2025-06-05T23:15:48.9081847Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:48.9089765Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:15:48.9090347Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:15:48.9090873Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:15:48.9091387Z ##[endgroup] 2025-06-05T23:15:48.9342710Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:15:48.9343283Z # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:15:48.9343689Z # shellcheck disable=SC2046 2025-06-05T23:15:48.9344014Z docker stop $(docker ps -q) || true 2025-06-05T23:15:48.9344350Z # Prune all of the docker images 2025-06-05T23:15:48.9344654Z docker system prune -af 2025-06-05T23:15:48.9350117Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:15:48.9350625Z env: 2025-06-05T23:15:48.9350910Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:48.9351278Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:48.9351553Z PR_NUMBER: 2025-06-05T23:15:48.9359064Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:48.9367188Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:15:48.9367775Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:15:48.9368321Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:15:48.9368703Z ##[endgroup] 2025-06-05T23:15:48.9588444Z "docker stop" requires at least 1 argument. 2025-06-05T23:15:48.9588831Z See 'docker stop --help'. 2025-06-05T23:15:48.9589003Z 2025-06-05T23:15:48.9589176Z Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...] 2025-06-05T23:15:48.9589441Z 2025-06-05T23:15:48.9589551Z Stop one or more running containers 2025-06-05T23:15:48.9727792Z Total reclaimed space: 0B 2025-06-05T23:15:48.9793942Z ##[group]Run ./test-infra/.github/actions/setup-ssh 2025-06-05T23:15:48.9820121Z with: 2025-06-05T23:15:48.9821180Z github-secret: *** 2025-06-05T23:15:48.9821899Z instructions: All testing is done inside the container, to start an interactive session run: docker exec -it $(docker container ps --format '{{.ID}}') bash 2025-06-05T23:15:48.9822653Z activate-with-label: false 2025-06-05T23:15:48.9822908Z label: with-ssh 2025-06-05T23:15:48.9823144Z remove-existing-keys: true 2025-06-05T23:15:48.9823399Z fail-silently: true 2025-06-05T23:15:48.9823625Z env: 2025-06-05T23:15:48.9823882Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:48.9824260Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:48.9824534Z PR_NUMBER: 2025-06-05T23:15:48.9832186Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:48.9840307Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:15:48.9840884Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:15:48.9841414Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:15:48.9841800Z ##[endgroup] 2025-06-05T23:15:49.0901013Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-06-05T23:15:49.0902243Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-06-05T23:15:49.1015828Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-06-05T23:15:49.1016264Z with: 2025-06-05T23:15:49.1016472Z repository: pytorch/executorch 2025-06-05T23:15:49.1016788Z ref: bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:15:49.1017103Z path: pytorch/executorch 2025-06-05T23:15:49.1017357Z fetch-depth: 1 2025-06-05T23:15:49.1017571Z submodules: recursive 2025-06-05T23:15:49.1017968Z token: *** 2025-06-05T23:15:49.1018187Z ssh-strict: true 2025-06-05T23:15:49.1018402Z ssh-user: git 2025-06-05T23:15:49.1018636Z persist-credentials: true 2025-06-05T23:15:49.1018882Z clean: true 2025-06-05T23:15:49.1019119Z sparse-checkout-cone-mode: true 2025-06-05T23:15:49.1019391Z fetch-tags: false 2025-06-05T23:15:49.1019620Z show-progress: true 2025-06-05T23:15:49.1019839Z lfs: false 2025-06-05T23:15:49.1020067Z set-safe-directory: true 2025-06-05T23:15:49.1020300Z env: 2025-06-05T23:15:49.1020613Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:15:49.1020977Z REPOSITORY: pytorch/executorch 2025-06-05T23:15:49.1021248Z PR_NUMBER: 2025-06-05T23:15:49.1028871Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:15:49.1036963Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:15:49.1037537Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:15:49.1038080Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:15:49.1038448Z ##[endgroup] 2025-06-05T23:15:49.2003148Z Syncing repository: pytorch/executorch 2025-06-05T23:15:49.2011769Z ##[group]Getting Git version info 2025-06-05T23:15:49.2012434Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch' 2025-06-05T23:15:49.2039621Z [command]/usr/bin/git version 2025-06-05T23:15:49.2076184Z git version 2.47.1 2025-06-05T23:15:49.2101975Z ##[endgroup] 2025-06-05T23:15:49.2113994Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/708f25c1-7ad5-4ee2-ac59-afb9234b6b93' before making global git config changes 2025-06-05T23:15:49.2115165Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:15:49.2119145Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-06-05T23:15:49.2146854Z ##[group]Initializing the repository 2025-06-05T23:15:49.2151602Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-06-05T23:15:49.2179811Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-06-05T23:15:49.2180484Z hint: is subject to change. To configure the initial branch name to use in all 2025-06-05T23:15:49.2181046Z hint: of your new repositories, which will suppress this warning, call: 2025-06-05T23:15:49.2181439Z hint: 2025-06-05T23:15:49.2181710Z hint: git config --global init.defaultBranch 2025-06-05T23:15:49.2182063Z hint: 2025-06-05T23:15:49.2182384Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-06-05T23:15:49.2182941Z hint: 'development'. The just-created branch can be renamed via this command: 2025-06-05T23:15:49.2183370Z hint: 2025-06-05T23:15:49.2183572Z hint: git branch -m 2025-06-05T23:15:49.2184183Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/ 2025-06-05T23:15:49.2189325Z [command]/usr/bin/git remote add origin https://github.com/pytorch/executorch 2025-06-05T23:15:49.2212508Z ##[endgroup] 2025-06-05T23:15:49.2212960Z ##[group]Disabling automatic garbage collection 2025-06-05T23:15:49.2216641Z [command]/usr/bin/git config --local gc.auto 0 2025-06-05T23:15:49.2239438Z ##[endgroup] 2025-06-05T23:15:49.2239810Z ##[group]Setting up auth 2025-06-05T23:15:49.2245192Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:15:49.2269152Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-06-05T23:15:49.2511830Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:15:49.2535540Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-06-05T23:15:49.2779749Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:15:49.2812693Z ##[endgroup] 2025-06-05T23:15:49.2813100Z ##[group]Fetching the repository 2025-06-05T23:15:49.2819899Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:15:51.6049131Z From https://github.com/pytorch/executorch 2025-06-05T23:15:51.6049818Z * branch bd572346e4f196b36aaa03a1645d12b1618fe88b -> FETCH_HEAD 2025-06-05T23:15:51.6069625Z ##[endgroup] 2025-06-05T23:15:51.6070111Z ##[group]Determining the checkout info 2025-06-05T23:15:51.6071990Z ##[endgroup] 2025-06-05T23:15:51.6076580Z [command]/usr/bin/git sparse-checkout disable 2025-06-05T23:15:51.6106249Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-06-05T23:15:51.6128956Z ##[group]Checking out the ref 2025-06-05T23:15:51.6132761Z [command]/usr/bin/git checkout --progress --force bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:15:52.0994117Z Note: switching to 'bd572346e4f196b36aaa03a1645d12b1618fe88b'. 2025-06-05T23:15:52.0994589Z 2025-06-05T23:15:52.0994955Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-05T23:15:52.0995957Z changes and commit them, and you can discard any commits you make in this 2025-06-05T23:15:52.0996981Z state without impacting any branches by switching back to a branch. 2025-06-05T23:15:52.0997611Z 2025-06-05T23:15:52.0998273Z If you want to create a new branch to retain commits you create, you may 2025-06-05T23:15:52.0999121Z do so (now or later) by using -c with the switch command. Example: 2025-06-05T23:15:52.0999609Z 2025-06-05T23:15:52.0999810Z git switch -c 2025-06-05T23:15:52.1000142Z 2025-06-05T23:15:52.1000313Z Or undo this operation with: 2025-06-05T23:15:52.1000609Z 2025-06-05T23:15:52.1000750Z git switch - 2025-06-05T23:15:52.1000947Z 2025-06-05T23:15:52.1001329Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-05T23:15:52.1001947Z 2025-06-05T23:15:52.1002384Z HEAD is now at bd57234 Qualcomm AI Engine Direct - QAIRT Visualizer Engagement (#10873) 2025-06-05T23:15:52.1023124Z ##[endgroup] 2025-06-05T23:15:52.1023547Z ##[group]Setting up auth for fetching submodules 2025-06-05T23:15:52.1029317Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:15:52.1069959Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-06-05T23:15:52.1093591Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-05T23:15:52.1117499Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-05T23:15:52.1136952Z ##[endgroup] 2025-06-05T23:15:52.1137411Z ##[group]Fetching submodules 2025-06-05T23:15:52.1140281Z [command]/usr/bin/git submodule sync --recursive 2025-06-05T23:15:52.1392118Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-06-05T23:15:52.1635662Z Submodule 'backends/arm/third-party/ethos-u-core-driver' (https://git.gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-core-driver.git) registered for path 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:15:52.1637436Z Submodule 'backends/arm/third-party/serialization_lib' (https://git.gitlab.arm.com/tosa/tosa-serialization.git) registered for path 'backends/arm/third-party/serialization_lib' 2025-06-05T23:15:52.1640577Z Submodule 'backends/cadence/utils/FACTO' (https://github.com/pytorch-labs/FACTO.git) registered for path 'backends/cadence/utils/FACTO' 2025-06-05T23:15:52.1644423Z Submodule 'backends/vulkan/third-party/Vulkan-Headers' (https://github.com/KhronosGroup/Vulkan-Headers) registered for path 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:15:52.1648597Z Submodule 'backends/vulkan/third-party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:15:52.1652301Z Submodule 'backends/vulkan/third-party/volk' (https://github.com/zeux/volk) registered for path 'backends/vulkan/third-party/volk' 2025-06-05T23:15:52.1655358Z Submodule 'backends/xnnpack/third-party/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'backends/xnnpack/third-party/FP16' 2025-06-05T23:15:52.1658331Z Submodule 'backends/xnnpack/third-party/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:15:52.1661426Z Submodule 'backends/xnnpack/third-party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:15:52.1664261Z Submodule 'backends/xnnpack/third-party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:15:52.1667869Z Submodule 'backends/xnnpack/third-party/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:15:52.1671789Z Submodule 'extension/llm/tokenizers' (https://github.com/pytorch-labs/tokenizers.git) registered for path 'extension/llm/tokenizers' 2025-06-05T23:15:52.1676190Z Submodule 'kernels/optimized/third-party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'kernels/optimized/third-party/eigen' 2025-06-05T23:15:52.1680549Z Submodule 'shim' (https://github.com/facebook/buck2-shims-meta) registered for path 'shim' 2025-06-05T23:15:52.1684746Z Submodule 'third-party/ao' (https://github.com/pytorch/ao.git) registered for path 'third-party/ao' 2025-06-05T23:15:52.1690288Z Submodule 'third-party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third-party/flatbuffers' 2025-06-05T23:15:52.1696394Z Submodule 'third-party/flatcc' (https://github.com/dvidelabs/flatcc.git) registered for path 'third-party/flatcc' 2025-06-05T23:15:52.1701179Z Submodule 'third-party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third-party/gflags' 2025-06-05T23:15:52.1706242Z Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/googletest' 2025-06-05T23:15:52.1711151Z Submodule 'third-party/ios-cmake' (https://github.com/leetal/ios-cmake) registered for path 'third-party/ios-cmake' 2025-06-05T23:15:52.1716361Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'third-party/json' 2025-06-05T23:15:52.1721671Z Submodule 'third-party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third-party/pocketfft' 2025-06-05T23:15:52.1726927Z Submodule 'third-party/prelude' (https://github.com/facebook/buck2-prelude.git) registered for path 'third-party/prelude' 2025-06-05T23:15:52.1732109Z Submodule 'third-party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third-party/pybind11' 2025-06-05T23:15:52.1757269Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/ethos-u-core-driver'... 2025-06-05T23:15:53.0226990Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/serialization_lib'... 2025-06-05T23:15:53.7220702Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/cadence/utils/FACTO'... 2025-06-05T23:15:53.9547456Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/Vulkan-Headers'... 2025-06-05T23:15:54.4155202Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/VulkanMemoryAllocator'... 2025-06-05T23:15:54.7332675Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/volk'... 2025-06-05T23:15:54.9457532Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FP16'... 2025-06-05T23:15:55.1237816Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FXdiv'... 2025-06-05T23:15:55.3898867Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/XNNPACK'... 2025-06-05T23:15:56.0472400Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/cpuinfo'... 2025-06-05T23:15:56.4672687Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/pthreadpool'... 2025-06-05T23:15:56.7417439Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers'... 2025-06-05T23:15:57.0515537Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/kernels/optimized/third-party/eigen'... 2025-06-05T23:15:57.7309276Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/shim'... 2025-06-05T23:15:58.0270786Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao'... 2025-06-05T23:15:58.4615819Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatbuffers'... 2025-06-05T23:15:59.2367452Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatcc'... 2025-06-05T23:15:59.5016326Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/gflags'... 2025-06-05T23:15:59.7595059Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/googletest'... 2025-06-05T23:16:00.0489910Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ios-cmake'... 2025-06-05T23:16:00.2551020Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/json'... 2025-06-05T23:16:00.6654368Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pocketfft'... 2025-06-05T23:16:00.9053136Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/prelude'... 2025-06-05T23:16:01.2676922Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pybind11'... 2025-06-05T23:16:02.8723982Z From https://git.gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-core-driver 2025-06-05T23:16:02.8724632Z * branch 7bf44c54527e718b99d588ce520cf2f96343adb1 -> FETCH_HEAD 2025-06-05T23:16:02.8833337Z Submodule path 'backends/arm/third-party/ethos-u-core-driver': checked out '7bf44c54527e718b99d588ce520cf2f96343adb1' 2025-06-05T23:16:04.2653289Z From https://git.gitlab.arm.com/tosa/tosa-serialization 2025-06-05T23:16:04.2653817Z * branch 187af0d41fe75d08d2a7ec84c1b4d24b9b641ed2 -> FETCH_HEAD 2025-06-05T23:16:04.2759534Z Submodule path 'backends/arm/third-party/serialization_lib': checked out '187af0d41fe75d08d2a7ec84c1b4d24b9b641ed2' 2025-06-05T23:16:04.2774443Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:16:04.2799618Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers'... 2025-06-05T23:16:05.4107126Z From https://github.com/google/flatbuffers 2025-06-05T23:16:05.4107997Z * branch 0100f6a5779831fa7a651e4b67ef389a8752bd9b -> FETCH_HEAD 2025-06-05T23:16:05.5121788Z Submodule path 'backends/arm/third-party/serialization_lib/third_party/flatbuffers': checked out '0100f6a5779831fa7a651e4b67ef389a8752bd9b' 2025-06-05T23:16:06.1148731Z From https://github.com/pytorch-labs/FACTO 2025-06-05T23:16:06.1149237Z * branch 1db37fc79d0d59638cbb794fa49d878aafc24461 -> FETCH_HEAD 2025-06-05T23:16:06.1222185Z Submodule path 'backends/cadence/utils/FACTO': checked out '1db37fc79d0d59638cbb794fa49d878aafc24461' 2025-06-05T23:16:06.9177517Z From https://github.com/KhronosGroup/Vulkan-Headers 2025-06-05T23:16:06.9178049Z * branch 0c5928795a66e93f65e5e68a36d8daa79a209dc2 -> FETCH_HEAD 2025-06-05T23:16:06.9664685Z Submodule path 'backends/vulkan/third-party/Vulkan-Headers': checked out '0c5928795a66e93f65e5e68a36d8daa79a209dc2' 2025-06-05T23:16:07.7532767Z From https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator 2025-06-05T23:16:07.7533385Z * branch a6bfc237255a6bac1513f7c1ebde6d8aed6b5191 -> FETCH_HEAD 2025-06-05T23:16:07.7836591Z Submodule path 'backends/vulkan/third-party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' 2025-06-05T23:16:08.2960760Z From https://github.com/zeux/volk 2025-06-05T23:16:08.2961260Z * branch b3bc21e584f97400b6884cb2a541a56c6a5ddba3 -> FETCH_HEAD 2025-06-05T23:16:08.3028912Z Submodule path 'backends/vulkan/third-party/volk': checked out 'b3bc21e584f97400b6884cb2a541a56c6a5ddba3' 2025-06-05T23:16:08.8187630Z From https://github.com/Maratyszcza/FP16 2025-06-05T23:16:08.8188149Z * branch 4dfe081cf6bcd15db339cf2680b9281b8451eeb3 -> FETCH_HEAD 2025-06-05T23:16:08.8269207Z Submodule path 'backends/xnnpack/third-party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-06-05T23:16:09.3179963Z From https://github.com/Maratyszcza/FXdiv 2025-06-05T23:16:09.3180518Z * branch b408327ac2a15ec3e43352421954f5b1967701d1 -> FETCH_HEAD 2025-06-05T23:16:09.3231432Z Submodule path 'backends/xnnpack/third-party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-06-05T23:16:10.8835049Z From https://github.com/google/XNNPACK 2025-06-05T23:16:10.8835550Z * branch 4ea82e595b36106653175dcb04b2aa532660d0d8 -> FETCH_HEAD 2025-06-05T23:16:11.4671436Z Submodule path 'backends/xnnpack/third-party/XNNPACK': checked out '4ea82e595b36106653175dcb04b2aa532660d0d8' 2025-06-05T23:16:12.1271446Z From https://github.com/pytorch/cpuinfo 2025-06-05T23:16:12.1272073Z * branch c61fe919607bbc534d7a5a5707bdd7041e72c5ff -> FETCH_HEAD 2025-06-05T23:16:12.2084173Z Submodule path 'backends/xnnpack/third-party/cpuinfo': checked out 'c61fe919607bbc534d7a5a5707bdd7041e72c5ff' 2025-06-05T23:16:13.1492373Z From https://github.com/Maratyszcza/pthreadpool 2025-06-05T23:16:13.1492912Z * branch 4fe0e1e183925bf8cfa6aae24237e724a96479b8 -> FETCH_HEAD 2025-06-05T23:16:13.1570492Z Submodule path 'backends/xnnpack/third-party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-06-05T23:16:13.6175753Z From https://github.com/pytorch-labs/tokenizers 2025-06-05T23:16:13.6176575Z * branch fc5962cd9e08019c5df6667eba3377e7d76441f7 -> FETCH_HEAD 2025-06-05T23:16:13.6414885Z Submodule path 'extension/llm/tokenizers': checked out 'fc5962cd9e08019c5df6667eba3377e7d76441f7' 2025-06-05T23:16:13.6430787Z Submodule 'third-party/abseil-cpp' (https://github.com/abseil/abseil-cpp.git) registered for path 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:16:13.6433086Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:16:13.6435759Z Submodule 'third-party/pcre2' (https://github.com/PCRE2Project/pcre2.git) registered for path 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:16:13.6438406Z Submodule 'third-party/re2' (https://github.com/google/re2.git) registered for path 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:16:13.6441294Z Submodule 'third-party/sentencepiece' (https://github.com/google/sentencepiece.git) registered for path 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:16:13.6465913Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/abseil-cpp'... 2025-06-05T23:16:14.0457263Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/json'... 2025-06-05T23:16:14.4684015Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2'... 2025-06-05T23:16:14.8390470Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/re2'... 2025-06-05T23:16:15.1294072Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece'... 2025-06-05T23:16:16.6246076Z From https://github.com/abseil/abseil-cpp 2025-06-05T23:16:16.6246588Z * branch 7d96b2e93d9a84530748b68abd2f97595c51ecf4 -> FETCH_HEAD 2025-06-05T23:16:16.7189983Z Submodule path 'extension/llm/tokenizers/third-party/abseil-cpp': checked out '7d96b2e93d9a84530748b68abd2f97595c51ecf4' 2025-06-05T23:16:17.3898198Z From https://github.com/nlohmann/json 2025-06-05T23:16:17.3898695Z * branch e6cafa573aac6ed9227f752a5371c0b3f436307d -> FETCH_HEAD 2025-06-05T23:16:17.4816088Z Submodule path 'extension/llm/tokenizers/third-party/json': checked out 'e6cafa573aac6ed9227f752a5371c0b3f436307d' 2025-06-05T23:16:18.2013766Z From https://github.com/PCRE2Project/pcre2 2025-06-05T23:16:18.2014292Z * branch 2e03e323339ab692640626f02f8d8d6f95bff9c6 -> FETCH_HEAD 2025-06-05T23:16:18.2723282Z Submodule path 'extension/llm/tokenizers/third-party/pcre2': checked out '2e03e323339ab692640626f02f8d8d6f95bff9c6' 2025-06-05T23:16:18.2739140Z Submodule 'deps/sljit' (https://github.com/zherczeg/sljit.git) registered for path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:16:18.2764701Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2/deps/sljit'... 2025-06-05T23:16:19.0717197Z From https://github.com/zherczeg/sljit 2025-06-05T23:16:19.0717705Z * branch 98802d939be3f0ccc2c538d611ec4c728564e8cf -> FETCH_HEAD 2025-06-05T23:16:19.0901489Z Submodule path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit': checked out '98802d939be3f0ccc2c538d611ec4c728564e8cf' 2025-06-05T23:16:19.6393317Z From https://github.com/google/re2 2025-06-05T23:16:19.6393841Z * branch 6dcd83d60f7944926bfd308cc13979fc53dd69ca -> FETCH_HEAD 2025-06-05T23:16:19.6551383Z Submodule path 'extension/llm/tokenizers/third-party/re2': checked out '6dcd83d60f7944926bfd308cc13979fc53dd69ca' 2025-06-05T23:16:20.2886954Z From https://github.com/google/sentencepiece 2025-06-05T23:16:20.2887446Z * branch d8f741853847553169444afc12c00f4bbff3e9ce -> FETCH_HEAD 2025-06-05T23:16:20.4144697Z Submodule path 'extension/llm/tokenizers/third-party/sentencepiece': checked out 'd8f741853847553169444afc12c00f4bbff3e9ce' 2025-06-05T23:16:22.2392392Z From https://gitlab.com/libeigen/eigen 2025-06-05T23:16:22.2392872Z * branch a39ade4ccf99df845ec85c580fbbb324f71952fa -> FETCH_HEAD 2025-06-05T23:16:22.3619708Z Submodule path 'kernels/optimized/third-party/eigen': checked out 'a39ade4ccf99df845ec85c580fbbb324f71952fa' 2025-06-05T23:16:23.0668079Z From https://github.com/facebook/buck2-shims-meta 2025-06-05T23:16:23.0668686Z * branch cf6a954aae4bee7b4515e13475878460115027d1 -> FETCH_HEAD 2025-06-05T23:16:23.0864923Z Submodule path 'shim': checked out 'cf6a954aae4bee7b4515e13475878460115027d1' 2025-06-05T23:16:23.7111671Z From https://github.com/pytorch/ao 2025-06-05T23:16:23.7112165Z * branch bc68b11f1bf77be38721ca7dd2c477aeb5e6626e -> FETCH_HEAD 2025-06-05T23:16:23.8025822Z Submodule path 'third-party/ao': checked out 'bc68b11f1bf77be38721ca7dd2c477aeb5e6626e' 2025-06-05T23:16:23.8042697Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass) registered for path 'third-party/ao/third_party/cutlass' 2025-06-05T23:16:23.8068453Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao/third_party/cutlass'... 2025-06-05T23:16:25.5772859Z From https://github.com/NVIDIA/cutlass 2025-06-05T23:16:25.5773353Z * branch ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e -> FETCH_HEAD 2025-06-05T23:16:26.1209948Z Submodule path 'third-party/ao/third_party/cutlass': checked out 'ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e' 2025-06-05T23:16:26.8096424Z From https://github.com/google/flatbuffers 2025-06-05T23:16:26.8096975Z * branch 595bf0007ab1929570c7671f091313c8fc20644e -> FETCH_HEAD 2025-06-05T23:16:26.9112834Z Submodule path 'third-party/flatbuffers': checked out '595bf0007ab1929570c7671f091313c8fc20644e' 2025-06-05T23:16:27.5494389Z From https://github.com/dvidelabs/flatcc 2025-06-05T23:16:27.5494884Z * branch 896db54787e8b730a6be482c69324751f3f5f117 -> FETCH_HEAD 2025-06-05T23:16:27.5734556Z Submodule path 'third-party/flatcc': checked out '896db54787e8b730a6be482c69324751f3f5f117' 2025-06-05T23:16:28.1346332Z From https://github.com/gflags/gflags 2025-06-05T23:16:28.1346828Z * branch a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd -> FETCH_HEAD 2025-06-05T23:16:28.1431187Z Submodule path 'third-party/gflags': checked out 'a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd' 2025-06-05T23:16:28.8733928Z From https://github.com/google/googletest 2025-06-05T23:16:28.8734452Z * branch e2239ee6043f73722e7aa812a459f54a28552929 -> FETCH_HEAD 2025-06-05T23:16:28.9074090Z Submodule path 'third-party/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-06-05T23:16:29.4644886Z From https://github.com/leetal/ios-cmake 2025-06-05T23:16:29.4645385Z * branch 06465b27698424cf4a04a5ca4904d50a3c966c45 -> FETCH_HEAD 2025-06-05T23:16:29.4712291Z Submodule path 'third-party/ios-cmake': checked out '06465b27698424cf4a04a5ca4904d50a3c966c45' 2025-06-05T23:16:30.0860337Z From https://github.com/nlohmann/json 2025-06-05T23:16:30.0860818Z * branch ac0133ea89a8fd730a9cc9649c5226a9995dc3e1 -> FETCH_HEAD 2025-06-05T23:16:30.1782293Z Submodule path 'third-party/json': checked out 'ac0133ea89a8fd730a9cc9649c5226a9995dc3e1' 2025-06-05T23:16:30.1905043Z Submodule path 'third-party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-06-05T23:16:30.8121429Z From https://github.com/facebook/buck2-prelude 2025-06-05T23:16:30.8121951Z * branch 48c249f8c7b99ff501d6e857754760315072b306 -> FETCH_HEAD 2025-06-05T23:16:30.9472379Z Submodule path 'third-party/prelude': checked out '48c249f8c7b99ff501d6e857754760315072b306' 2025-06-05T23:16:31.6084511Z From https://github.com/pybind/pybind11 2025-06-05T23:16:31.6085053Z * branch a2e59f0e7065404b44dfe92a28aca47ba1378dc4 -> FETCH_HEAD 2025-06-05T23:16:31.6359981Z Submodule path 'third-party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-06-05T23:16:31.6392149Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-06-05T23:16:31.6640971Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:16:31.6677977Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:16:31.6714189Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:16:31.6755623Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:16:31.6793634Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:16:31.6830784Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:16:31.6868186Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:16:31.6904087Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:16:31.6941039Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:16:31.6977348Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:16:31.7029029Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:16:31.7067021Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:16:31.7103144Z Entering 'extension/llm/tokenizers' 2025-06-05T23:16:31.7139026Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:16:31.7176865Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:16:31.7214428Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:16:31.7252054Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:16:31.7291429Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:16:31.7328019Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:16:31.7365936Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:16:31.7404813Z Entering 'shim' 2025-06-05T23:16:31.7441996Z Entering 'third-party/ao' 2025-06-05T23:16:31.7479623Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:16:31.7525816Z Entering 'third-party/flatbuffers' 2025-06-05T23:16:31.7566002Z Entering 'third-party/flatcc' 2025-06-05T23:16:31.7603726Z Entering 'third-party/gflags' 2025-06-05T23:16:31.7641022Z Entering 'third-party/googletest' 2025-06-05T23:16:31.7677916Z Entering 'third-party/ios-cmake' 2025-06-05T23:16:31.7714722Z Entering 'third-party/json' 2025-06-05T23:16:31.7754103Z Entering 'third-party/pocketfft' 2025-06-05T23:16:31.7793088Z Entering 'third-party/prelude' 2025-06-05T23:16:31.7832816Z Entering 'third-party/pybind11' 2025-06-05T23:16:31.7878987Z ##[endgroup] 2025-06-05T23:16:31.7879420Z ##[group]Persisting credentials for submodules 2025-06-05T23:16:31.7886189Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :" 2025-06-05T23:16:31.8136131Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:16:31.8186043Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:16:31.8234764Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:16:31.8286914Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:16:31.8335208Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:16:31.8384403Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:16:31.8433077Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:16:31.8482904Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:16:31.8530954Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:16:31.8580107Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:16:31.8643769Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:16:31.8693970Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:16:31.8741874Z Entering 'extension/llm/tokenizers' 2025-06-05T23:16:31.8789561Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:16:31.8839580Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:16:31.8889402Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:16:31.8937113Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:16:31.8989332Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:16:31.9037917Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:16:31.9087839Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:16:31.9138490Z Entering 'shim' 2025-06-05T23:16:31.9187474Z Entering 'third-party/ao' 2025-06-05T23:16:31.9235251Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:16:31.9293572Z Entering 'third-party/flatbuffers' 2025-06-05T23:16:31.9344111Z Entering 'third-party/flatcc' 2025-06-05T23:16:31.9392685Z Entering 'third-party/gflags' 2025-06-05T23:16:31.9440883Z Entering 'third-party/googletest' 2025-06-05T23:16:31.9489440Z Entering 'third-party/ios-cmake' 2025-06-05T23:16:31.9536900Z Entering 'third-party/json' 2025-06-05T23:16:31.9587288Z Entering 'third-party/pocketfft' 2025-06-05T23:16:31.9634742Z Entering 'third-party/prelude' 2025-06-05T23:16:31.9686162Z Entering 'third-party/pybind11' 2025-06-05T23:16:31.9747138Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url" 2025-06-05T23:16:31.9997546Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:16:32.0043791Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/arm/third-party/ethos-u-core-driver/config remote.origin.url 2025-06-05T23:16:32.0057871Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:16:32.0105624Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/arm/third-party/serialization_lib/config remote.origin.url 2025-06-05T23:16:32.0119203Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:16:32.0167149Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/arm/third-party/serialization_lib/modules/third_party/flatbuffers/config remote.origin.url 2025-06-05T23:16:32.0185663Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:16:32.0232876Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/cadence/utils/FACTO/config remote.origin.url 2025-06-05T23:16:32.0246325Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:16:32.0292746Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/vulkan/third-party/Vulkan-Headers/config remote.origin.url 2025-06-05T23:16:32.0306325Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:16:32.0351891Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/vulkan/third-party/VulkanMemoryAllocator/config remote.origin.url 2025-06-05T23:16:32.0366434Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:16:32.0411737Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/vulkan/third-party/volk/config remote.origin.url 2025-06-05T23:16:32.0425884Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:16:32.0471223Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/FP16/config remote.origin.url 2025-06-05T23:16:32.0485034Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:16:32.0531775Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/FXdiv/config remote.origin.url 2025-06-05T23:16:32.0545082Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:16:32.0591776Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/XNNPACK/config remote.origin.url 2025-06-05T23:16:32.0620386Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:16:32.0667546Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/cpuinfo/config remote.origin.url 2025-06-05T23:16:32.0682133Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:16:32.0729863Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/pthreadpool/config remote.origin.url 2025-06-05T23:16:32.0743831Z Entering 'extension/llm/tokenizers' 2025-06-05T23:16:32.0790572Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/config remote.origin.url 2025-06-05T23:16:32.0804047Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:16:32.0850721Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/modules/third-party/abseil-cpp/config remote.origin.url 2025-06-05T23:16:32.0866734Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:16:32.0913326Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/modules/third-party/json/config remote.origin.url 2025-06-05T23:16:32.0928970Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:16:32.0975758Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/modules/third-party/pcre2/config remote.origin.url 2025-06-05T23:16:32.0989263Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:16:32.1036478Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/modules/third-party/pcre2/modules/deps/sljit/config remote.origin.url 2025-06-05T23:16:32.1052265Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:16:32.1098471Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/modules/third-party/re2/config remote.origin.url 2025-06-05T23:16:32.1113086Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:16:32.1159082Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/modules/third-party/sentencepiece/config remote.origin.url 2025-06-05T23:16:32.1174923Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:16:32.1221759Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/kernels/optimized/third-party/eigen/config remote.origin.url 2025-06-05T23:16:32.1237820Z Entering 'shim' 2025-06-05T23:16:32.1284275Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/shim/config remote.origin.url 2025-06-05T23:16:32.1298705Z Entering 'third-party/ao' 2025-06-05T23:16:32.1344425Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ao/config remote.origin.url 2025-06-05T23:16:32.1358903Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:16:32.1404770Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ao/modules/third_party/cutlass/config remote.origin.url 2025-06-05T23:16:32.1429310Z Entering 'third-party/flatbuffers' 2025-06-05T23:16:32.1475296Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatbuffers/config remote.origin.url 2025-06-05T23:16:32.1491714Z Entering 'third-party/flatcc' 2025-06-05T23:16:32.1537393Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatcc/config remote.origin.url 2025-06-05T23:16:32.1551412Z Entering 'third-party/gflags' 2025-06-05T23:16:32.1597740Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/gflags/config remote.origin.url 2025-06-05T23:16:32.1611359Z Entering 'third-party/googletest' 2025-06-05T23:16:32.1657318Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/googletest/config remote.origin.url 2025-06-05T23:16:32.1671504Z Entering 'third-party/ios-cmake' 2025-06-05T23:16:32.1716939Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ios-cmake/config remote.origin.url 2025-06-05T23:16:32.1730625Z Entering 'third-party/json' 2025-06-05T23:16:32.1776232Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/json/config remote.origin.url 2025-06-05T23:16:32.1791103Z Entering 'third-party/pocketfft' 2025-06-05T23:16:32.1836762Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pocketfft/config remote.origin.url 2025-06-05T23:16:32.1850016Z Entering 'third-party/prelude' 2025-06-05T23:16:32.1895605Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/prelude/config remote.origin.url 2025-06-05T23:16:32.1912458Z Entering 'third-party/pybind11' 2025-06-05T23:16:32.1958277Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pybind11/config remote.origin.url 2025-06-05T23:16:32.2250541Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-06-05T23:16:32.2497730Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:16:32.2534083Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:16:32.2571904Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:16:32.2613493Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:16:32.2651602Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:16:32.2689324Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:16:32.2726895Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:16:32.2763963Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:16:32.2802279Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:16:32.2839514Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:16:32.2894718Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:16:32.2933154Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:16:32.2971006Z Entering 'extension/llm/tokenizers' 2025-06-05T23:16:32.3007887Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:16:32.3047393Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:16:32.3085690Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:16:32.3122971Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:16:32.3161689Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:16:32.3197861Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:16:32.3236191Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:16:32.3278083Z Entering 'shim' 2025-06-05T23:16:32.3315071Z Entering 'third-party/ao' 2025-06-05T23:16:32.3352086Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:16:32.3399396Z Entering 'third-party/flatbuffers' 2025-06-05T23:16:32.3438499Z Entering 'third-party/flatcc' 2025-06-05T23:16:32.3476057Z Entering 'third-party/gflags' 2025-06-05T23:16:32.3512780Z Entering 'third-party/googletest' 2025-06-05T23:16:32.3550116Z Entering 'third-party/ios-cmake' 2025-06-05T23:16:32.3591138Z Entering 'third-party/json' 2025-06-05T23:16:32.3633063Z Entering 'third-party/pocketfft' 2025-06-05T23:16:32.3669429Z Entering 'third-party/prelude' 2025-06-05T23:16:32.3709144Z Entering 'third-party/pybind11' 2025-06-05T23:16:32.3758469Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-06-05T23:16:32.4006702Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:16:32.4043542Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:16:32.4082623Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:16:32.4124289Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:16:32.4161433Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:16:32.4198652Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:16:32.4235411Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:16:32.4272691Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:16:32.4308899Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:16:32.4344990Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:16:32.4398556Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:16:32.4436193Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:16:32.4472898Z Entering 'extension/llm/tokenizers' 2025-06-05T23:16:32.4508813Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:16:32.4547503Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:16:32.4586800Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:16:32.4622562Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:16:32.4660949Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:16:32.4697462Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:16:32.4736081Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:16:32.4776289Z Entering 'shim' 2025-06-05T23:16:32.4814260Z Entering 'third-party/ao' 2025-06-05T23:16:32.4851630Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:16:32.4904271Z Entering 'third-party/flatbuffers' 2025-06-05T23:16:32.4945282Z Entering 'third-party/flatcc' 2025-06-05T23:16:32.4984082Z Entering 'third-party/gflags' 2025-06-05T23:16:32.5020640Z Entering 'third-party/googletest' 2025-06-05T23:16:32.5057714Z Entering 'third-party/ios-cmake' 2025-06-05T23:16:32.5095505Z Entering 'third-party/json' 2025-06-05T23:16:32.5133728Z Entering 'third-party/pocketfft' 2025-06-05T23:16:32.5172054Z Entering 'third-party/prelude' 2025-06-05T23:16:32.5211875Z Entering 'third-party/pybind11' 2025-06-05T23:16:32.5257142Z ##[endgroup] 2025-06-05T23:16:32.5290980Z [command]/usr/bin/git log -1 --format=%H 2025-06-05T23:16:32.5310686Z bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:16:32.5518205Z Prepare all required actions 2025-06-05T23:16:32.5518841Z Getting action download info 2025-06-05T23:16:32.6743266Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-06-05T23:16:32.8215524Z ##[group]Run ./test-infra/.github/actions/calculate-docker-image 2025-06-05T23:16:32.8215905Z with: 2025-06-05T23:16:32.8216210Z docker-image-name: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:16:32.8216613Z docker-build-dir: .ci/docker 2025-06-05T23:16:32.8216896Z working-directory: pytorch/executorch 2025-06-05T23:16:32.8217213Z docker-build-script: ./build.sh 2025-06-05T23:16:32.8217579Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:16:32.8217971Z force-push: false 2025-06-05T23:16:32.8218175Z env: 2025-06-05T23:16:32.8218442Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:16:32.8218804Z REPOSITORY: pytorch/executorch 2025-06-05T23:16:32.8219081Z PR_NUMBER: 2025-06-05T23:16:32.8226745Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:16:32.8234779Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:16:32.8235366Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:16:32.8235896Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:16:32.8236274Z ##[endgroup] 2025-06-05T23:16:32.8260582Z ##[group]Run set -ex 2025-06-05T23:16:32.8260890Z set -ex 2025-06-05T23:16:32.8261090Z  2025-06-05T23:16:32.8261480Z # If the docker build directory or the build script doesn't exist, the action will 2025-06-05T23:16:32.8262138Z # gracefully return the docker image name as it is. Pulling docker image in Linux 2025-06-05T23:16:32.8262683Z # job could then download the pre-built image as usual 2025-06-05T23:16:32.8263236Z if [[ ! -d "${DOCKER_BUILD_DIR}" ]] || [[ ! -f "${DOCKER_BUILD_DIR}/${DOCKER_BUILD_SCRIPT}" ]]; then 2025-06-05T23:16:32.8263724Z  echo "skip=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:16:32.8264311Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:16:32.8264711Z  2025-06-05T23:16:32.8265305Z  echo "There is no Docker build script in ${REPO_NAME} repo, skipping..." 2025-06-05T23:16:32.8265834Z  exit 0 2025-06-05T23:16:32.8266036Z else 2025-06-05T23:16:32.8266290Z  echo "skip=false" >> "${GITHUB_OUTPUT}" 2025-06-05T23:16:32.8266596Z fi 2025-06-05T23:16:32.8266799Z  2025-06-05T23:16:32.8267113Z if [[ "${DOCKER_IMAGE_NAME}" == *"${DOCKER_REGISTRY}/${REPO_NAME}"* ]]; then 2025-06-05T23:16:32.8267700Z  # The docker image name already includes the ECR prefix and tag, so we can just 2025-06-05T23:16:32.8268225Z  # use it as it is, but first let's extract the tag 2025-06-05T23:16:32.8268687Z  DOCKER_TAG=$(echo "${DOCKER_IMAGE_NAME}" | awk -F '[:,]' '{print $2}') 2025-06-05T23:16:32.8269185Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:16:32.8269685Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:16:32.8270090Z else 2025-06-05T23:16:32.8270342Z  if [[ "${DOCKER_IMAGE_NAME}" == *:* ]]; then 2025-06-05T23:16:32.8270705Z  CUSTOM_TAG_PREFIX=${DOCKER_IMAGE_NAME#*:} 2025-06-05T23:16:32.8271085Z  DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME%%:*} 2025-06-05T23:16:32.8271398Z  fi 2025-06-05T23:16:32.8271839Z  DOCKER_TAG=${CUSTOM_TAG_PREFIX:+${CUSTOM_TAG_PREFIX}-}$(git rev-parse HEAD:"${DOCKER_BUILD_DIR}") 2025-06-05T23:16:32.8272430Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:16:32.8273072Z  echo "docker-image=${DOCKER_REGISTRY}/${REPO_NAME}/${DOCKER_IMAGE_NAME}:${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:16:32.8273761Z  echo "custom-tag-prefix=${CUSTOM_TAG_PREFIX}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:16:32.8274172Z fi 2025-06-05T23:16:32.8279889Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:16:32.8280355Z env: 2025-06-05T23:16:32.8280637Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:16:32.8281007Z REPOSITORY: pytorch/executorch 2025-06-05T23:16:32.8281281Z PR_NUMBER: 2025-06-05T23:16:32.8288891Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:16:32.8296807Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:16:32.8297372Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:16:32.8297911Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:16:32.8298286Z REPO_NAME: executorch 2025-06-05T23:16:32.8298615Z DOCKER_IMAGE_NAME: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:16:32.8298992Z DOCKER_BUILD_DIR: .ci/docker 2025-06-05T23:16:32.8299266Z DOCKER_BUILD_SCRIPT: ./build.sh 2025-06-05T23:16:32.8299636Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:16:32.8300007Z CUSTOM_TAG_PREFIX: 2025-06-05T23:16:32.8300240Z ##[endgroup] 2025-06-05T23:16:32.8327832Z + [[ ! -d .ci/docker ]] 2025-06-05T23:16:32.8328118Z + [[ ! -f .ci/docker/./build.sh ]] 2025-06-05T23:16:32.8328416Z + echo skip=false 2025-06-05T23:16:32.8329850Z + [[ executorch-ubuntu-22.04-clang12-android == *\3\0\8\5\3\5\3\8\5\1\1\4\.\d\k\r\.\e\c\r\.\u\s\-\e\a\s\t\-\1\.\a\m\a\z\o\n\a\w\s\.\c\o\m\/\e\x\e\c\u\t\o\r\c\h* ]] 2025-06-05T23:16:32.8330517Z + [[ executorch-ubuntu-22.04-clang12-android == *:* ]] 2025-06-05T23:16:32.8333171Z ++ git rev-parse HEAD:.ci/docker 2025-06-05T23:16:32.8347998Z + DOCKER_TAG=6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:32.8348463Z + echo docker-tag=6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:32.8349327Z + echo docker-image=308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:32.8350196Z + echo custom-tag-prefix= 2025-06-05T23:16:32.8383359Z ##[group]Run set +e 2025-06-05T23:16:32.8383704Z set +e 2025-06-05T23:16:32.8383932Z set -x 2025-06-05T23:16:32.8384134Z  2025-06-05T23:16:32.8384401Z login() { 2025-06-05T23:16:32.8384994Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-06-05T23:16:32.8385620Z } 2025-06-05T23:16:32.8385824Z  2025-06-05T23:16:32.8386014Z retry () { 2025-06-05T23:16:32.8386279Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-06-05T23:16:32.8386574Z } 2025-06-05T23:16:32.8386770Z  2025-06-05T23:16:32.8386981Z retry login "${DOCKER_REGISTRY}" 2025-06-05T23:16:32.8387276Z  2025-06-05T23:16:32.8387475Z START_TIME=$(date +%s) 2025-06-05T23:16:32.8387758Z # Wait up to 120 minutes 2025-06-05T23:16:32.8388167Z while [[ $(( $(date +%s) - 7200 )) -lt $START_TIME ]]; do 2025-06-05T23:16:32.8388634Z  # Check if image already exists, if it does then skip building it 2025-06-05T23:16:32.8389119Z  if docker manifest inspect "${DOCKER_IMAGE}"; then 2025-06-05T23:16:32.8389468Z  exit 0 2025-06-05T23:16:32.8389695Z  fi 2025-06-05T23:16:32.8389887Z  2025-06-05T23:16:32.8390257Z  # NB: This flag is used by Docker build workflow to push the image to ECR, so we can 2025-06-05T23:16:32.8390917Z  # use this to differentiate between the Docker build and regular build jobs. For the 2025-06-05T23:16:32.8391551Z  # latter, it will wait for the Docker images to become available before continuing 2025-06-05T23:16:32.8392058Z  if [ "${DOCKER_PUSH:-false}" == "true" ]; then 2025-06-05T23:16:32.8392437Z  # It's a Docker build job, let's build the image 2025-06-05T23:16:32.8392773Z  break 2025-06-05T23:16:32.8392982Z  else 2025-06-05T23:16:32.8393311Z  # It's a regular build job, wait for the image to become available 2025-06-05T23:16:32.8393718Z  sleep 300 2025-06-05T23:16:32.8393942Z  fi 2025-06-05T23:16:32.8394149Z done 2025-06-05T23:16:32.8394464Z  2025-06-05T23:16:32.8394810Z # NB: This part requires a full checkout. Otherwise, the merge base will 2025-06-05T23:16:32.8395352Z # be empty. The default action would be to continue rebuild the image 2025-06-05T23:16:32.8395881Z if [[ "$BASE_REVISION" = "$(git rev-parse HEAD)" ]]; then 2025-06-05T23:16:32.8396319Z  # if we're on the base branch then use the parent commit 2025-06-05T23:16:32.8396714Z  MERGE_BASE=$(git rev-parse HEAD~) 2025-06-05T23:16:32.8397051Z else 2025-06-05T23:16:32.8397375Z  # otherwise we're on a PR, so use the most recent base commit 2025-06-05T23:16:32.8397829Z  MERGE_BASE=$(git merge-base HEAD "$BASE_REVISION") 2025-06-05T23:16:32.8398186Z fi 2025-06-05T23:16:32.8398378Z  2025-06-05T23:16:32.8398605Z if [[ -z "${MERGE_BASE}" ]]; then 2025-06-05T23:16:32.8398942Z  echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:16:32.8399278Z  2025-06-05T23:16:32.8399748Z  echo "Finding merge base only works with full checkout, please set fetch-depth to 0, continuing ..." 2025-06-05T23:16:32.8400281Z  exit 0 2025-06-05T23:16:32.8400502Z fi 2025-06-05T23:16:32.8400692Z  2025-06-05T23:16:32.8400991Z if ! git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}"; then 2025-06-05T23:16:32.8401648Z  echo "Directory '${DOCKER_BUILD_DIR}' not found in commit $MERGE_BASE, you should rebase onto a more recent commit" 2025-06-05T23:16:32.8402225Z  exit 1 2025-06-05T23:16:32.8402439Z fi 2025-06-05T23:16:32.8402625Z  2025-06-05T23:16:32.8402978Z PREVIOUS_DOCKER_TAG=$(git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}") 2025-06-05T23:16:32.8403610Z # If no image exists but the hash is the same as the previous hash then we should error out here 2025-06-05T23:16:32.8404196Z if [[ "${PREVIOUS_DOCKER_TAG}" == "${DOCKER_TAG}" ]]; then 2025-06-05T23:16:32.8404925Z  echo "WARNING: Something has gone wrong and the previous image isn't available for the merge-base of your branch" 2025-06-05T23:16:32.8405667Z  echo " Will re-build docker image to store in local cache, TTS may be longer" 2025-06-05T23:16:32.8406113Z fi 2025-06-05T23:16:32.8406297Z  2025-06-05T23:16:32.8406546Z echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:16:32.8412156Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:16:32.8412525Z env: 2025-06-05T23:16:32.8413200Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:32.8413989Z REPOSITORY: pytorch/executorch 2025-06-05T23:16:32.8414271Z PR_NUMBER: 2025-06-05T23:16:32.8421869Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:16:32.8429916Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:16:32.8430508Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:16:32.8431043Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:16:32.8431447Z DOCKER_BUILD_DIR: .ci/docker 2025-06-05T23:16:32.8431779Z BASE_REVISION: bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:16:32.8432176Z DOCKER_TAG: 6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:32.8432614Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:16:32.8432982Z DOCKER_PUSH: 2025-06-05T23:16:32.8433206Z ##[endgroup] 2025-06-05T23:16:32.8456140Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:16:32.8456570Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:16:32.8459076Z + aws ecr get-login-password --region us-east-1 2025-06-05T23:16:32.8460460Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:16:33.3613710Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:16:33.3614410Z Configure a credential helper to remove this warning. See 2025-06-05T23:16:33.3615491Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:16:33.3616057Z 2025-06-05T23:16:33.3616211Z Login Succeeded 2025-06-05T23:16:33.3628921Z ++ date +%s 2025-06-05T23:16:33.3637344Z + START_TIME=1749165393 2025-06-05T23:16:33.3642498Z ++ date +%s 2025-06-05T23:16:33.3651147Z + [[ 1749158193 -lt 1749165393 ]] 2025-06-05T23:16:33.3652194Z + docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:33.6060085Z { 2025-06-05T23:16:33.6060685Z "schemaVersion": 2, 2025-06-05T23:16:33.6061559Z "mediaType": "application/vnd.docker.distribution.manifest.v2+json", 2025-06-05T23:16:33.6062228Z "config": { 2025-06-05T23:16:33.6062785Z "mediaType": "application/vnd.docker.container.image.v1+json", 2025-06-05T23:16:33.6063394Z "size": 15117, 2025-06-05T23:16:33.6063898Z "digest": "sha256:73f1d8946919d6b6f686269f008b399c96e920ba0b7da809fc5037c91fbf376c" 2025-06-05T23:16:33.6064490Z }, 2025-06-05T23:16:33.6064759Z "layers": [ 2025-06-05T23:16:33.6065162Z { 2025-06-05T23:16:33.6065811Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6066517Z "size": 30438509, 2025-06-05T23:16:33.6067292Z "digest": "sha256:f557aa5ee22480ee9e1af0a094ce5174a8c3d83e1aa20dc8482e4e387546e0c3" 2025-06-05T23:16:33.6067797Z }, 2025-06-05T23:16:33.6067985Z { 2025-06-05T23:16:33.6068292Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6068701Z "size": 631, 2025-06-05T23:16:33.6069093Z "digest": "sha256:e9a71f6cf6a033cad973f94ad3269a9e3774b3a547f2d35c6337589ebab6aeac" 2025-06-05T23:16:33.6069567Z }, 2025-06-05T23:16:33.6069738Z { 2025-06-05T23:16:33.6070055Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6070463Z "size": 150105654, 2025-06-05T23:16:33.6071119Z "digest": "sha256:927827c86fb2912eb7a66cd6f466fd23935694b91e0e570a00ac8507ef95315e" 2025-06-05T23:16:33.6071609Z }, 2025-06-05T23:16:33.6071778Z { 2025-06-05T23:16:33.6072100Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6072572Z "size": 622, 2025-06-05T23:16:33.6073319Z "digest": "sha256:8f296761951c2477ba8d9546ac834b6cf17e772fbe388f9e3b2f4e822beb7713" 2025-06-05T23:16:33.6073780Z }, 2025-06-05T23:16:33.6074010Z { 2025-06-05T23:16:33.6074361Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6074764Z "size": 19308736, 2025-06-05T23:16:33.6075182Z "digest": "sha256:48585cb67ce68d8ab53554ec93bbafeee41923a472d3a4ae1745f4c2e390a4a3" 2025-06-05T23:16:33.6075641Z }, 2025-06-05T23:16:33.6075830Z { 2025-06-05T23:16:33.6076135Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6076539Z "size": 736, 2025-06-05T23:16:33.6076938Z "digest": "sha256:4420b1e1a07f73643ce79401c2021c6970bc6e411c501a43b58d157e19090d5a" 2025-06-05T23:16:33.6077384Z }, 2025-06-05T23:16:33.6077566Z { 2025-06-05T23:16:33.6077864Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6078269Z "size": 131417812, 2025-06-05T23:16:33.6078673Z "digest": "sha256:c4a72b6b3016f69548be0d3a90aa115219dfcf346004e722eaf311283b7b0824" 2025-06-05T23:16:33.6079132Z }, 2025-06-05T23:16:33.6079300Z { 2025-06-05T23:16:33.6079614Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6080007Z "size": 445, 2025-06-05T23:16:33.6080392Z "digest": "sha256:172401b941b1764c760147d40814402d1238a7f1c7287fd8c0c9dd4897f09610" 2025-06-05T23:16:33.6080838Z }, 2025-06-05T23:16:33.6081009Z { 2025-06-05T23:16:33.6081324Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6081715Z "size": 102, 2025-06-05T23:16:33.6082113Z "digest": "sha256:4e73cbac89632f783895edb4e212c314f752a402c8f8434d183f8ac07fcc9166" 2025-06-05T23:16:33.6082565Z }, 2025-06-05T23:16:33.6082942Z { 2025-06-05T23:16:33.6083248Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6083653Z "size": 636, 2025-06-05T23:16:33.6084037Z "digest": "sha256:2d7e5abdd88dbf42ba6487b146573396d6f489b24623393763a4916452feeb69" 2025-06-05T23:16:33.6084497Z }, 2025-06-05T23:16:33.6084681Z { 2025-06-05T23:16:33.6084984Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6085397Z "size": 35165411, 2025-06-05T23:16:33.6085850Z "digest": "sha256:96e5da8aec9e3464864cf4be3d78ff2506c9d1210eb198617253f6834c5b46b1" 2025-06-05T23:16:33.6086312Z }, 2025-06-05T23:16:33.6086484Z { 2025-06-05T23:16:33.6086800Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6087192Z "size": 318, 2025-06-05T23:16:33.6087589Z "digest": "sha256:380307a36ed2d54c982df9262fd1ec3b7fb61743ad1a24e7d1b691bc44edba7a" 2025-06-05T23:16:33.6088050Z }, 2025-06-05T23:16:33.6088222Z { 2025-06-05T23:16:33.6088545Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6088940Z "size": 252129761, 2025-06-05T23:16:33.6089352Z "digest": "sha256:4721b4eccfc34fe10d3c490215c11f2b2b40143cecf3dbb4045a369998768272" 2025-06-05T23:16:33.6089802Z }, 2025-06-05T23:16:33.6089981Z { 2025-06-05T23:16:33.6090280Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6090680Z "size": 475, 2025-06-05T23:16:33.6091067Z "digest": "sha256:3ec19c2849b3bf6807efe10c62465e3f4d91dfd9fc8c1ff5b3667814c740339d" 2025-06-05T23:16:33.6091534Z }, 2025-06-05T23:16:33.6091715Z { 2025-06-05T23:16:33.6092014Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6092418Z "size": 1043, 2025-06-05T23:16:33.6092820Z "digest": "sha256:5efc09c81c41be8af3ff0a65cd9e267c4bfe33db1b91daaf8834f2a5d4874f8f" 2025-06-05T23:16:33.6093298Z }, 2025-06-05T23:16:33.6093471Z { 2025-06-05T23:16:33.6093875Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6094275Z "size": 613, 2025-06-05T23:16:33.6094691Z "digest": "sha256:5e70c61fded41a31ea65efce907d9dff9acbc03826fb949591a55cfdd3385730" 2025-06-05T23:16:33.6095167Z }, 2025-06-05T23:16:33.6095337Z { 2025-06-05T23:16:33.6095654Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6096045Z "size": 77567479, 2025-06-05T23:16:33.6096456Z "digest": "sha256:f3f17597db59be1036db5f1533e76cd35f58c94b8d7a2628a4e943e286f5dc1a" 2025-06-05T23:16:33.6096903Z }, 2025-06-05T23:16:33.6097131Z { 2025-06-05T23:16:33.6097431Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6097845Z "size": 572, 2025-06-05T23:16:33.6098251Z "digest": "sha256:09ec4d17ebb7ac81d1a8261fdfc13c836d8b2f80a4c6d8f72971b96fcb388790" 2025-06-05T23:16:33.6098727Z }, 2025-06-05T23:16:33.6098898Z { 2025-06-05T23:16:33.6099220Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6099624Z "size": 208, 2025-06-05T23:16:33.6100030Z "digest": "sha256:2198621e8e9a4a9b50760fcc4dfa5b67a9e8d7d9eb27ac7d6dd4e248b87dc4c9" 2025-06-05T23:16:33.6100485Z }, 2025-06-05T23:16:33.6100673Z { 2025-06-05T23:16:33.6100980Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6101391Z "size": 1190, 2025-06-05T23:16:33.6101777Z "digest": "sha256:5630a9397492da6fac00fcc2b54281af300c4762827878ad79bbf050d7f1388d" 2025-06-05T23:16:33.6102245Z }, 2025-06-05T23:16:33.6102432Z { 2025-06-05T23:16:33.6102740Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6103147Z "size": 679, 2025-06-05T23:16:33.6103536Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:16:33.6104002Z }, 2025-06-05T23:16:33.6104171Z { 2025-06-05T23:16:33.6104482Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6104881Z "size": 6857039297, 2025-06-05T23:16:33.6105370Z "digest": "sha256:c04a099fd706b65ccdc5ab1ff368c1baa1ab8c798a9e9d3d518dd6491b50fe83" 2025-06-05T23:16:33.6105930Z }, 2025-06-05T23:16:33.6106205Z { 2025-06-05T23:16:33.6106519Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6106907Z "size": 1383, 2025-06-05T23:16:33.6107312Z "digest": "sha256:09dac94eaf912c1143008ab2c199dc2a0547cf68fe2b08e1b96af9c2895928ae" 2025-06-05T23:16:33.6107763Z }, 2025-06-05T23:16:33.6107949Z { 2025-06-05T23:16:33.6108249Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6108655Z "size": 679, 2025-06-05T23:16:33.6109043Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:16:33.6109506Z }, 2025-06-05T23:16:33.6109691Z { 2025-06-05T23:16:33.6109990Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6110397Z "size": 232895238, 2025-06-05T23:16:33.6110803Z "digest": "sha256:9e44d0f6808960651d4c5c22ee5f9f3686cfa23188d85f4d6a9a247ffc4b4c2e" 2025-06-05T23:16:33.6111266Z }, 2025-06-05T23:16:33.6111439Z { 2025-06-05T23:16:33.6111756Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6112147Z "size": 827, 2025-06-05T23:16:33.6112560Z "digest": "sha256:dec0deaa1ed566de23b66dcd78ea8449250b56b611cab27ebb83b9504d48a46b" 2025-06-05T23:16:33.6113023Z }, 2025-06-05T23:16:33.6113203Z { 2025-06-05T23:16:33.6113516Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6113907Z "size": 679, 2025-06-05T23:16:33.6114308Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:16:33.6114757Z }, 2025-06-05T23:16:33.6114939Z { 2025-06-05T23:16:33.6115238Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6115647Z "size": 185012542, 2025-06-05T23:16:33.6116127Z "digest": "sha256:f33e7895d5e64ee36941ba02f94be355da5f96e04d2620a6e7f5f7c9656b47db" 2025-06-05T23:16:33.6116600Z }, 2025-06-05T23:16:33.6116776Z { 2025-06-05T23:16:33.6117098Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6117508Z "size": 530, 2025-06-05T23:16:33.6117922Z "digest": "sha256:e8c9ad02b5187f5d1cb1d0cce8e115dd9462726f44a685de71b4cbe4f70c67e6" 2025-06-05T23:16:33.6118425Z }, 2025-06-05T23:16:33.6118597Z { 2025-06-05T23:16:33.6118911Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6119303Z "size": 679, 2025-06-05T23:16:33.6119705Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:16:33.6120156Z }, 2025-06-05T23:16:33.6120334Z { 2025-06-05T23:16:33.6120646Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6121037Z "size": 354, 2025-06-05T23:16:33.6121439Z "digest": "sha256:ca22a013d303766ddf153f37526c40fa37dc1c0d112176fdb33378c50a81c354" 2025-06-05T23:16:33.6121894Z }, 2025-06-05T23:16:33.6122076Z { 2025-06-05T23:16:33.6122385Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6122792Z "size": 32, 2025-06-05T23:16:33.6123181Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-06-05T23:16:33.6123648Z }, 2025-06-05T23:16:33.6123820Z { 2025-06-05T23:16:33.6124130Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6124532Z "size": 165, 2025-06-05T23:16:33.6124921Z "digest": "sha256:2c94cd9b7388914482cc5d2c6c7e2c8d33b8ea62ad9aa892c699dfbd0b81650f" 2025-06-05T23:16:33.6125382Z }, 2025-06-05T23:16:33.6125549Z { 2025-06-05T23:16:33.6125859Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6126249Z "size": 1109, 2025-06-05T23:16:33.6126652Z "digest": "sha256:c2b62aa0dc26b7dd48338aef7893ebaf56403579f42aa88a56bd416c04f43619" 2025-06-05T23:16:33.6127108Z }, 2025-06-05T23:16:33.6127352Z { 2025-06-05T23:16:33.6127651Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6128060Z "size": 2248944539, 2025-06-05T23:16:33.6128477Z "digest": "sha256:e228479a2299132bcfa619e1921b1eefb752c68ca9db7e2af20f9377fdc9b79a" 2025-06-05T23:16:33.6128927Z }, 2025-06-05T23:16:33.6129115Z { 2025-06-05T23:16:33.6129418Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:16:33.6129826Z "size": 108, 2025-06-05T23:16:33.6130210Z "digest": "sha256:45b92a92ce962f3d11f7918c9bae826eda66e4d6892b39d0f70663989a984090" 2025-06-05T23:16:33.6130674Z } 2025-06-05T23:16:33.6130848Z ] 2025-06-05T23:16:33.6131028Z } 2025-06-05T23:16:33.6131239Z + exit 0 2025-06-05T23:16:33.6163342Z ##[group]Run set -eux 2025-06-05T23:16:33.6163609Z set -eux 2025-06-05T23:16:33.6164550Z aws secretsmanager get-secret-value --secret-id docker_hub_readonly_token | jq --raw-output '.SecretString' | jq -r .docker_hub_readonly_token | docker login --username pytorchbot --password-stdin 2025-06-05T23:16:33.6172288Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:16:33.6172660Z env: 2025-06-05T23:16:33.6172928Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:16:33.6173316Z REPOSITORY: pytorch/executorch 2025-06-05T23:16:33.6173580Z PR_NUMBER: 2025-06-05T23:16:33.6181263Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:16:33.6189279Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:16:33.6189868Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:16:33.6190400Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:16:33.6190779Z ##[endgroup] 2025-06-05T23:16:33.6217126Z + aws secretsmanager get-secret-value --secret-id docker_hub_readonly_token 2025-06-05T23:16:33.6217863Z + jq --raw-output .SecretString 2025-06-05T23:16:33.6219851Z + jq -r .docker_hub_readonly_token 2025-06-05T23:16:33.6220876Z + docker login --username pytorchbot --password-stdin 2025-06-05T23:16:34.1961233Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:16:34.1962088Z Configure a credential helper to remove this warning. See 2025-06-05T23:16:34.1963016Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:16:34.1963757Z 2025-06-05T23:16:34.1963921Z Login Succeeded 2025-06-05T23:16:34.2058251Z Prepare all required actions 2025-06-05T23:16:34.2110756Z ##[group]Run ./test-infra/.github/actions/pull-docker-image 2025-06-05T23:16:34.2111115Z with: 2025-06-05T23:16:34.2111807Z docker-image: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:34.2112670Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:16:34.2113044Z env: 2025-06-05T23:16:34.2113300Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:16:34.2113675Z REPOSITORY: pytorch/executorch 2025-06-05T23:16:34.2113948Z PR_NUMBER: 2025-06-05T23:16:34.2121484Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:16:34.2129396Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:16:34.2129981Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:16:34.2130507Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:16:34.2130882Z ##[endgroup] 2025-06-05T23:16:34.2149142Z ##[group]Run set -x 2025-06-05T23:16:34.2149416Z set -x 2025-06-05T23:16:34.2149631Z set +e 2025-06-05T23:16:34.2149828Z  2025-06-05T23:16:34.2150027Z login() { 2025-06-05T23:16:34.2150483Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-06-05T23:16:34.2150989Z } 2025-06-05T23:16:34.2151186Z  2025-06-05T23:16:34.2151372Z retry () { 2025-06-05T23:16:34.2151631Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-06-05T23:16:34.2151924Z } 2025-06-05T23:16:34.2152115Z  2025-06-05T23:16:34.2152322Z retry login "${DOCKER_REGISTRY}" 2025-06-05T23:16:34.2152612Z  2025-06-05T23:16:34.2153221Z IMAGE_SIZE=$(docker manifest inspect "${DOCKER_IMAGE}" | jq '[.layers[].size, .config.size] | add / 1024 / 1024') 2025-06-05T23:16:34.2153873Z echo "Compressed size of image in MB: ${IMAGE_SIZE}" 2025-06-05T23:16:34.2154235Z  2025-06-05T23:16:34.2154521Z set -e 2025-06-05T23:16:34.2154852Z # ignore output since only exit code is used for conditional 2025-06-05T23:16:34.2155320Z # only pull docker image if it's not available locally 2025-06-05T23:16:34.2155859Z if ! docker inspect --type=image "${DOCKER_IMAGE}" >/dev/null 2>/dev/null; then 2025-06-05T23:16:34.2156353Z  retry docker pull "${DOCKER_IMAGE}" 2025-06-05T23:16:34.2156655Z fi 2025-06-05T23:16:34.2162339Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:16:34.2162698Z env: 2025-06-05T23:16:34.2163369Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:34.2164164Z REPOSITORY: pytorch/executorch 2025-06-05T23:16:34.2164436Z PR_NUMBER: 2025-06-05T23:16:34.2172197Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:16:34.2180084Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:16:34.2180660Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:16:34.2181193Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:16:34.2181670Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:16:34.2182054Z ##[endgroup] 2025-06-05T23:16:34.2204973Z + set +e 2025-06-05T23:16:34.2205630Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:16:34.2206073Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:16:34.2208711Z + aws ecr get-login-password --region us-east-1 2025-06-05T23:16:34.2209456Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:16:34.7441278Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:16:34.7443260Z Configure a credential helper to remove this warning. See 2025-06-05T23:16:34.7444157Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:16:34.7444730Z 2025-06-05T23:16:34.7444896Z Login Succeeded 2025-06-05T23:16:34.7460002Z ++ docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:34.7460955Z ++ jq '[.layers[].size, .config.size] | add / 1024 / 1024' 2025-06-05T23:16:34.9754027Z + IMAGE_SIZE=9746.603879928589 2025-06-05T23:16:34.9754588Z + echo 'Compressed size of image in MB: 9746.603879928589' 2025-06-05T23:16:34.9754959Z + set -e 2025-06-05T23:16:34.9755201Z Compressed size of image in MB: 9746.603879928589 2025-06-05T23:16:34.9756084Z + docker inspect --type=image 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:34.9868895Z + retry docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:34.9870222Z + docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:16:35.1932436Z 6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa: Pulling from executorch/executorch-ubuntu-22.04-clang12-android 2025-06-05T23:16:35.1933309Z f557aa5ee224: Pulling fs layer 2025-06-05T23:16:35.1933585Z e9a71f6cf6a0: Pulling fs layer 2025-06-05T23:16:35.1933912Z 927827c86fb2: Pulling fs layer 2025-06-05T23:16:35.1934204Z 8f296761951c: Pulling fs layer 2025-06-05T23:16:35.1934504Z 48585cb67ce6: Pulling fs layer 2025-06-05T23:16:35.1934841Z 4420b1e1a07f: Pulling fs layer 2025-06-05T23:16:35.1935112Z c4a72b6b3016: Pulling fs layer 2025-06-05T23:16:35.1935427Z 172401b941b1: Pulling fs layer 2025-06-05T23:16:35.1935681Z 4e73cbac8963: Pulling fs layer 2025-06-05T23:16:35.1935967Z 4420b1e1a07f: Waiting 2025-06-05T23:16:35.1936186Z 48585cb67ce6: Waiting 2025-06-05T23:16:35.1936431Z 2d7e5abdd88d: Pulling fs layer 2025-06-05T23:16:35.1936695Z 96e5da8aec9e: Pulling fs layer 2025-06-05T23:16:35.1936967Z 380307a36ed2: Pulling fs layer 2025-06-05T23:16:35.1937227Z c4a72b6b3016: Waiting 2025-06-05T23:16:35.1937465Z 4721b4eccfc3: Pulling fs layer 2025-06-05T23:16:35.1937719Z 3ec19c2849b3: Pulling fs layer 2025-06-05T23:16:35.1937993Z 5efc09c81c41: Pulling fs layer 2025-06-05T23:16:35.1938277Z 5e70c61fded4: Pulling fs layer 2025-06-05T23:16:35.1938532Z f3f17597db59: Pulling fs layer 2025-06-05T23:16:35.1938792Z 4e73cbac8963: Waiting 2025-06-05T23:16:35.1939010Z 96e5da8aec9e: Waiting 2025-06-05T23:16:35.1939252Z 09ec4d17ebb7: Pulling fs layer 2025-06-05T23:16:35.1939498Z 380307a36ed2: Waiting 2025-06-05T23:16:35.1939768Z 2198621e8e9a: Pulling fs layer 2025-06-05T23:16:35.1940025Z 5630a9397492: Pulling fs layer 2025-06-05T23:16:35.1940289Z 2d7e5abdd88d: Waiting 2025-06-05T23:16:35.1940541Z 1fc2d9899ffb: Pulling fs layer 2025-06-05T23:16:35.1940792Z 4721b4eccfc3: Waiting 2025-06-05T23:16:35.1941091Z c04a099fd706: Pulling fs layer 2025-06-05T23:16:35.1941344Z 5efc09c81c41: Waiting 2025-06-05T23:16:35.1941590Z 09dac94eaf91: Pulling fs layer 2025-06-05T23:16:35.1941840Z 3ec19c2849b3: Waiting 2025-06-05T23:16:35.1942151Z 5e70c61fded4: Waiting 2025-06-05T23:16:35.1942510Z 9e44d0f68089: Pulling fs layer 2025-06-05T23:16:35.1942995Z dec0deaa1ed5: Pulling fs layer 2025-06-05T23:16:35.1943468Z c04a099fd706: Waiting 2025-06-05T23:16:35.1943845Z 5630a9397492: Waiting 2025-06-05T23:16:35.1944162Z 09dac94eaf91: Waiting 2025-06-05T23:16:35.1944382Z dec0deaa1ed5: Waiting 2025-06-05T23:16:35.1944624Z f33e7895d5e6: Pulling fs layer 2025-06-05T23:16:35.1944881Z e8c9ad02b518: Pulling fs layer 2025-06-05T23:16:35.1945187Z 2198621e8e9a: Waiting 2025-06-05T23:16:35.1945494Z f33e7895d5e6: Waiting 2025-06-05T23:16:35.1945806Z ca22a013d303: Pulling fs layer 2025-06-05T23:16:35.1946238Z 4f4fb700ef54: Pulling fs layer 2025-06-05T23:16:35.1946984Z 2c94cd9b7388: Pulling fs layer 2025-06-05T23:16:35.1947370Z 9e44d0f68089: Waiting 2025-06-05T23:16:35.1947617Z ca22a013d303: Waiting 2025-06-05T23:16:35.1947843Z c2b62aa0dc26: Pulling fs layer 2025-06-05T23:16:35.1948101Z 4f4fb700ef54: Waiting 2025-06-05T23:16:35.1948464Z e228479a2299: Pulling fs layer 2025-06-05T23:16:35.1948710Z e8c9ad02b518: Waiting 2025-06-05T23:16:35.1948950Z 45b92a92ce96: Pulling fs layer 2025-06-05T23:16:35.1949195Z 2c94cd9b7388: Waiting 2025-06-05T23:16:35.1949425Z 45b92a92ce96: Waiting 2025-06-05T23:16:35.1949637Z e228479a2299: Waiting 2025-06-05T23:16:35.2862657Z e9a71f6cf6a0: Verifying Checksum 2025-06-05T23:16:35.2863080Z e9a71f6cf6a0: Download complete 2025-06-05T23:16:35.3662907Z 8f296761951c: Verifying Checksum 2025-06-05T23:16:35.3663560Z 8f296761951c: Download complete 2025-06-05T23:16:35.5589081Z f557aa5ee224: Verifying Checksum 2025-06-05T23:16:35.5589620Z f557aa5ee224: Download complete 2025-06-05T23:16:35.6157087Z 4420b1e1a07f: Download complete 2025-06-05T23:16:35.6340849Z 48585cb67ce6: Verifying Checksum 2025-06-05T23:16:35.6341371Z 48585cb67ce6: Download complete 2025-06-05T23:16:35.7366439Z 172401b941b1: Verifying Checksum 2025-06-05T23:16:35.7366939Z 172401b941b1: Download complete 2025-06-05T23:16:35.8357243Z 4e73cbac8963: Verifying Checksum 2025-06-05T23:16:35.8357811Z 4e73cbac8963: Download complete 2025-06-05T23:16:35.9094552Z 2d7e5abdd88d: Download complete 2025-06-05T23:16:36.3277233Z 96e5da8aec9e: Verifying Checksum 2025-06-05T23:16:36.3277721Z 96e5da8aec9e: Download complete 2025-06-05T23:16:36.3972172Z 380307a36ed2: Verifying Checksum 2025-06-05T23:16:36.3972591Z 380307a36ed2: Download complete 2025-06-05T23:16:36.4955745Z f557aa5ee224: Pull complete 2025-06-05T23:16:36.5123255Z e9a71f6cf6a0: Pull complete 2025-06-05T23:16:36.7419534Z 927827c86fb2: Verifying Checksum 2025-06-05T23:16:36.7420976Z 927827c86fb2: Download complete 2025-06-05T23:16:36.8330976Z 3ec19c2849b3: Verifying Checksum 2025-06-05T23:16:36.9170959Z 5efc09c81c41: Verifying Checksum 2025-06-05T23:16:36.9171632Z 5efc09c81c41: Download complete 2025-06-05T23:16:36.9766614Z c4a72b6b3016: Verifying Checksum 2025-06-05T23:16:36.9767149Z c4a72b6b3016: Download complete 2025-06-05T23:16:37.0180638Z 5e70c61fded4: Verifying Checksum 2025-06-05T23:16:37.0181260Z 5e70c61fded4: Download complete 2025-06-05T23:16:37.1079447Z 09ec4d17ebb7: Verifying Checksum 2025-06-05T23:16:37.1079972Z 09ec4d17ebb7: Download complete 2025-06-05T23:16:37.1983745Z 2198621e8e9a: Verifying Checksum 2025-06-05T23:16:37.1984330Z 2198621e8e9a: Download complete 2025-06-05T23:16:37.2799625Z 5630a9397492: Verifying Checksum 2025-06-05T23:16:37.2800079Z 5630a9397492: Download complete 2025-06-05T23:16:37.3788362Z 1fc2d9899ffb: Download complete 2025-06-05T23:16:37.8073959Z f3f17597db59: Verifying Checksum 2025-06-05T23:16:37.8074497Z f3f17597db59: Download complete 2025-06-05T23:16:37.8952458Z 09dac94eaf91: Verifying Checksum 2025-06-05T23:16:37.8953028Z 09dac94eaf91: Download complete 2025-06-05T23:16:38.9776567Z 4721b4eccfc3: Verifying Checksum 2025-06-05T23:16:38.9777216Z 4721b4eccfc3: Download complete 2025-06-05T23:16:39.0663632Z dec0deaa1ed5: Verifying Checksum 2025-06-05T23:16:39.0664174Z dec0deaa1ed5: Download complete 2025-06-05T23:16:40.2831398Z 9e44d0f68089: Verifying Checksum 2025-06-05T23:16:40.2832017Z 9e44d0f68089: Download complete 2025-06-05T23:16:40.3794222Z e8c9ad02b518: Verifying Checksum 2025-06-05T23:16:40.3794775Z e8c9ad02b518: Download complete 2025-06-05T23:16:40.5262022Z ca22a013d303: Verifying Checksum 2025-06-05T23:16:40.5262392Z ca22a013d303: Download complete 2025-06-05T23:16:40.5330726Z 4f4fb700ef54: Verifying Checksum 2025-06-05T23:16:40.5331060Z 4f4fb700ef54: Download complete 2025-06-05T23:16:40.6001863Z 2c94cd9b7388: Verifying Checksum 2025-06-05T23:16:40.6002313Z 2c94cd9b7388: Download complete 2025-06-05T23:16:40.6848517Z c2b62aa0dc26: Download complete 2025-06-05T23:16:40.7897209Z 927827c86fb2: Pull complete 2025-06-05T23:16:40.9658715Z 8f296761951c: Pull complete 2025-06-05T23:16:40.9824432Z f33e7895d5e6: Verifying Checksum 2025-06-05T23:16:40.9824922Z f33e7895d5e6: Download complete 2025-06-05T23:16:41.0799254Z 45b92a92ce96: Verifying Checksum 2025-06-05T23:16:41.0799851Z 45b92a92ce96: Download complete 2025-06-05T23:16:41.3893516Z 48585cb67ce6: Pull complete 2025-06-05T23:16:41.5827587Z 4420b1e1a07f: Pull complete 2025-06-05T23:16:44.8278212Z c4a72b6b3016: Pull complete 2025-06-05T23:16:45.0039287Z 172401b941b1: Pull complete 2025-06-05T23:16:45.1501606Z 4e73cbac8963: Pull complete 2025-06-05T23:16:45.3021971Z 2d7e5abdd88d: Pull complete 2025-06-05T23:16:48.5552910Z 96e5da8aec9e: Pull complete 2025-06-05T23:16:48.6471034Z 380307a36ed2: Pull complete 2025-06-05T23:17:16.9132972Z e228479a2299: Download complete 2025-06-05T23:17:26.0201730Z 4721b4eccfc3: Pull complete 2025-06-05T23:17:26.2124708Z 3ec19c2849b3: Pull complete 2025-06-05T23:17:26.4272933Z 5efc09c81c41: Pull complete 2025-06-05T23:17:26.6503546Z 5e70c61fded4: Pull complete 2025-06-05T23:17:37.3505957Z f3f17597db59: Pull complete 2025-06-05T23:17:37.5255763Z 09ec4d17ebb7: Pull complete 2025-06-05T23:17:37.7038601Z 2198621e8e9a: Pull complete 2025-06-05T23:17:37.9224109Z 5630a9397492: Pull complete 2025-06-05T23:17:38.1349298Z 1fc2d9899ffb: Pull complete 2025-06-05T23:17:53.4179950Z c04a099fd706: Verifying Checksum 2025-06-05T23:17:53.4180360Z c04a099fd706: Download complete 2025-06-05T23:19:16.3298514Z c04a099fd706: Pull complete 2025-06-05T23:19:16.5047395Z 09dac94eaf91: Pull complete 2025-06-05T23:19:23.6680413Z 9e44d0f68089: Pull complete 2025-06-05T23:19:23.7301801Z dec0deaa1ed5: Pull complete 2025-06-05T23:19:31.2144715Z f33e7895d5e6: Pull complete 2025-06-05T23:19:31.4112567Z e8c9ad02b518: Pull complete 2025-06-05T23:19:31.7394023Z ca22a013d303: Pull complete 2025-06-05T23:19:31.8373088Z 4f4fb700ef54: Pull complete 2025-06-05T23:19:31.9030809Z 2c94cd9b7388: Pull complete 2025-06-05T23:19:31.9355407Z c2b62aa0dc26: Pull complete 2025-06-05T23:20:22.7578737Z e228479a2299: Pull complete 2025-06-05T23:20:22.7867590Z 45b92a92ce96: Pull complete 2025-06-05T23:20:22.8105030Z Digest: sha256:883bc5ac8f23ea7b8d68f6f51a24e9141cd2c7421ebed61e61ec481d0814f84e 2025-06-05T23:20:22.8181301Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:20:22.8232342Z 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:20:22.8273220Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:20:22.8274159Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:20:22.8281432Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:20:22.8281806Z env: 2025-06-05T23:20:22.8282133Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:20:22.8282531Z REPOSITORY: pytorch/executorch 2025-06-05T23:20:22.8282796Z PR_NUMBER: 2025-06-05T23:20:22.8290398Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:20:22.8298499Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:20:22.8299080Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:20:22.8299606Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:20:22.8299988Z ##[endgroup] 2025-06-05T23:20:22.8454296Z ##[group]Run set -ex 2025-06-05T23:20:22.8454586Z set -ex 2025-06-05T23:20:22.8454799Z { 2025-06-05T23:20:22.8455007Z  echo "#!/usr/bin/env bash"; 2025-06-05T23:20:22.8455324Z  echo "set -eou pipefail"; 2025-06-05T23:20:22.8455621Z  # shellcheck disable=SC2016 2025-06-05T23:20:22.8455956Z  echo 'eval "$(conda shell.bash hook)"'; 2025-06-05T23:20:22.8456278Z  echo "set -x"; 2025-06-05T23:20:22.8456537Z  echo "${SCRIPT}"; 2025-06-05T23:20:22.8456806Z } > "${RUNNER_TEMP}/exec_script" 2025-06-05T23:20:22.8457160Z chmod +x "${RUNNER_TEMP}/exec_script" 2025-06-05T23:20:22.8457871Z python3 "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py" "" 2025-06-05T23:20:22.8463778Z shell: /usr/bin/bash -e {0} 2025-06-05T23:20:22.8464041Z env: 2025-06-05T23:20:22.8464754Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:20:22.8465832Z REPOSITORY: pytorch/executorch 2025-06-05T23:20:22.8466128Z PR_NUMBER: 2025-06-05T23:20:22.8473760Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:20:22.8481796Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:20:22.8482369Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:20:22.8482914Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:20:22.8483641Z ALL_SECRETS: { "github_token": "***" } 2025-06-05T23:20:22.8483939Z ##[endgroup] 2025-06-05T23:20:22.8507350Z + echo '#!/usr/bin/env bash' 2025-06-05T23:20:22.8507860Z + echo 'set -eou pipefail' 2025-06-05T23:20:22.8508399Z + echo 'eval "$(conda shell.bash hook)"' 2025-06-05T23:20:22.8508818Z + echo 'set -x' 2025-06-05T23:20:22.8509023Z + echo 'set -eux 2025-06-05T23:20:22.8509152Z 2025-06-05T23:20:22.8509344Z # Use sccache for NDK compiler as well 2025-06-05T23:20:22.8509940Z export CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-06-05T23:20:22.8510536Z export CMAKE_C_COMPILER_LAUNCHER=sccache 2025-06-05T23:20:22.8510748Z 2025-06-05T23:20:22.8510976Z # The generic Linux job chooses to use base env, not the one setup by the image 2025-06-05T23:20:22.8511492Z CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") 2025-06-05T23:20:22.8511867Z conda activate "${CONDA_ENV}" 2025-06-05T23:20:22.8512275Z PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 2025-06-05T23:20:22.8512786Z export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded 2025-06-05T23:20:22.8513140Z mkdir -p ${ARTIFACTS_DIR_NAME}/ 2025-06-05T23:20:22.8513335Z 2025-06-05T23:20:22.8513429Z # Build LLM Demo for Android 2025-06-05T23:20:22.8513693Z export BUILD_AAR_DIR=aar-out 2025-06-05T23:20:22.8513958Z mkdir -p $BUILD_AAR_DIR 2025-06-05T23:20:22.8514210Z bash scripts/build_android_library.sh 2025-06-05T23:20:22.8514559Z cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME 2025-06-05T23:20:22.8514814Z 2025-06-05T23:20:22.8514956Z mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir 2025-06-05T23:20:22.8515383Z bash extension/android/executorch_android/android_test_setup.sh 2025-06-05T23:20:22.8516107Z (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) 2025-06-05T23:20:22.8517279Z cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" 2025-06-05T23:20:22.8518177Z 2025-06-05T23:20:22.8518446Z mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom 2025-06-05T23:20:22.8518992Z bash examples/models/llama/install_requirements.sh 2025-06-05T23:20:22.8519742Z bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom 2025-06-05T23:20:22.8520361Z 2025-06-05T23:20:22.8520521Z mkdir -p examples/demo-apps/android/LlamaDemo/app/libs 2025-06-05T23:20:22.8521008Z cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs 2025-06-05T23:20:22.8521478Z pushd examples/demo-apps/android/LlamaDemo 2025-06-05T23:20:22.8521953Z ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest 2025-06-05T23:20:22.8522388Z popd 2025-06-05T23:20:22.8522493Z 2025-06-05T23:20:22.8522627Z DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" 2025-06-05T23:20:22.8523024Z # The app directory is named using its build flavor as a suffix. 2025-06-05T23:20:22.8523413Z mkdir -p "${DEMO_APP_DIR}" 2025-06-05T23:20:22.8523674Z # Collect the app and its test suite 2025-06-05T23:20:22.8524193Z cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:20:22.8525107Z cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:20:22.8525691Z ' 2025-06-05T23:20:22.8525983Z + chmod +x /home/ec2-user/actions-runner/_work/_temp/exec_script 2025-06-05T23:20:22.8526712Z + python3 /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py '' 2025-06-05T23:20:40.0717374Z Running command: 2025-06-05T23:20:40.0724627Z docker run -e PR_NUMBER -e RUNNER_ARTIFACT_DIR=/artifacts -e RUNNER_DOCS_DIR=/docs -e RUNNER_TEST_RESULTS_DIR=/test-results --env-file="/home/ec2-user/actions-runner/_work/_temp/github_env_15475023378" `# It is unknown why the container sees a different value for this.` -e GITHUB_STEP_SUMMARY -e SECRET_GITHUB_TOKEN --cap-add=SYS_PTRACE --detach --ipc=host --security-opt seccomp=unconfined --shm-size=2g --tty --ulimit stack=10485760:83886080 --ulimit core=0 -v "/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch:/pytorch/executorch" -v "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra:/test-infra" -v "/home/ec2-user/actions-runner/_work/_temp/artifacts:/artifacts" -v "/home/ec2-user/actions-runner/_work/_temp/docs:/docs" -v "/home/ec2-user/actions-runner/_work/_temp/test-results:/test-results" -v "/home/ec2-user/actions-runner/_work/_temp/exec_script:/exec" -v "/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_f9ec40b6-51dc-42a3-a069-e00e1e4f64f0":"/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_f9ec40b6-51dc-42a3-a069-e00e1e4f64f0" -w /pytorch/executorch "308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa" 2025-06-05T23:20:40.0730738Z 2025-06-05T23:20:40.0731079Z 451a3abfb1b7b290fdf79d3aa56d51a045e03ba84d23d0fbc8d6c4ca0017446c 2025-06-05T23:20:40.0731769Z Running command: docker exec -t 451a3abfb1b7b290fdf79d3aa56d51a045e03ba84d23d0fbc8d6c4ca0017446c /exec 2025-06-05T23:20:40.0732333Z + set -eux 2025-06-05T23:20:40.0732570Z + export CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-06-05T23:20:40.0732907Z + CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-06-05T23:20:40.0733215Z + export CMAKE_C_COMPILER_LAUNCHER=sccache 2025-06-05T23:20:40.0733587Z + CMAKE_C_COMPILER_LAUNCHER=sccache 2025-06-05T23:20:40.0733882Z ++ conda env list --json 2025-06-05T23:20:40.0734119Z ++ local cmd=env 2025-06-05T23:20:40.0734341Z ++ case "$cmd" in 2025-06-05T23:20:40.0734566Z ++ __conda_exe env list --json 2025-06-05T23:20:40.0734841Z ++ jq -r '.envs | .[-1]' 2025-06-05T23:20:40.0735104Z ++ /opt/conda/bin/conda env list --json 2025-06-05T23:20:40.0735404Z + CONDA_ENV=/opt/conda/envs/py_3.10 2025-06-05T23:20:40.0735818Z + conda activate /opt/conda/envs/py_3.10 2025-06-05T23:20:40.0736124Z + local cmd=activate 2025-06-05T23:20:40.0736437Z + case "$cmd" in 2025-06-05T23:20:40.0736689Z + __conda_activate activate /opt/conda/envs/py_3.10 2025-06-05T23:20:40.0737016Z + '[' -n '' ']' 2025-06-05T23:20:40.0737216Z + local ask_conda 2025-06-05T23:20:40.0737439Z ++ PS1='(base) ' 2025-06-05T23:20:40.0737719Z ++ __conda_exe shell.posix activate /opt/conda/envs/py_3.10 2025-06-05T23:20:40.0738200Z ++ /opt/conda/bin/conda shell.posix activate /opt/conda/envs/py_3.10 2025-06-05T23:20:40.0738620Z + ask_conda='PS1='\''(py_3.10) '\'' 2025-06-05T23:20:40.0739467Z export PATH='\''/opt/conda/envs/py_3.10/bin:/opt/conda/condabin:/opt/cache/bin:/opt/conda/envs/py_3.10/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2025-06-05T23:20:40.0740371Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-06-05T23:20:40.0740708Z export CONDA_SHLVL='\''2'\'' 2025-06-05T23:20:40.0741159Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-06-05T23:20:40.0741489Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-06-05T23:20:40.0741836Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-06-05T23:20:40.0742167Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-06-05T23:20:40.0742570Z export _CE_M='\'''\'' 2025-06-05T23:20:40.0742818Z export _CE_CONDA='\'''\'' 2025-06-05T23:20:40.0743222Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-06-05T23:20:40.0743583Z + eval 'PS1='\''(py_3.10) '\'' 2025-06-05T23:20:40.0744403Z export PATH='\''/opt/conda/envs/py_3.10/bin:/opt/conda/condabin:/opt/cache/bin:/opt/conda/envs/py_3.10/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2025-06-05T23:20:40.0745312Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-06-05T23:20:40.0745762Z export CONDA_SHLVL='\''2'\'' 2025-06-05T23:20:40.0746040Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-06-05T23:20:40.0746387Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-06-05T23:20:40.0746726Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-06-05T23:20:40.0747066Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-06-05T23:20:40.0747386Z export _CE_M='\'''\'' 2025-06-05T23:20:40.0747620Z export _CE_CONDA='\'''\'' 2025-06-05T23:20:40.0747939Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-06-05T23:20:40.0748362Z ++ PS1='(py_3.10) ' 2025-06-05T23:20:40.0749147Z ++ export PATH=/opt/conda/envs/py_3.10/bin:/opt/conda/condabin:/opt/cache/bin:/opt/conda/envs/py_3.10/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2025-06-05T23:20:40.0750489Z ++ PATH=/opt/conda/envs/py_3.10/bin:/opt/conda/condabin:/opt/cache/bin:/opt/conda/envs/py_3.10/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2025-06-05T23:20:40.0751331Z ++ export CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-06-05T23:20:40.0751676Z ++ CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-06-05T23:20:40.0751967Z ++ export CONDA_SHLVL=2 2025-06-05T23:20:40.0752213Z ++ CONDA_SHLVL=2 2025-06-05T23:20:40.0752439Z ++ export CONDA_DEFAULT_ENV=py_3.10 2025-06-05T23:20:40.0752734Z ++ CONDA_DEFAULT_ENV=py_3.10 2025-06-05T23:20:40.0753016Z ++ export 'CONDA_PROMPT_MODIFIER=(py_3.10) ' 2025-06-05T23:20:40.0753343Z ++ CONDA_PROMPT_MODIFIER='(py_3.10) ' 2025-06-05T23:20:40.0753635Z ++ export CONDA_PREFIX_1=/opt/conda 2025-06-05T23:20:40.0753928Z ++ CONDA_PREFIX_1=/opt/conda 2025-06-05T23:20:40.0754207Z ++ export CONDA_EXE=/opt/conda/bin/conda 2025-06-05T23:20:40.0754501Z ++ CONDA_EXE=/opt/conda/bin/conda 2025-06-05T23:20:40.0754778Z ++ export _CE_M= 2025-06-05T23:20:40.0754977Z ++ _CE_M= 2025-06-05T23:20:40.0755176Z ++ export _CE_CONDA= 2025-06-05T23:20:40.0755387Z ++ _CE_CONDA= 2025-06-05T23:20:40.0755635Z ++ export CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-06-05T23:20:40.0755968Z ++ CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-06-05T23:20:40.0756264Z + __conda_hashr 2025-06-05T23:20:40.0756463Z + '[' -n '' ']' 2025-06-05T23:20:40.0756668Z + '[' -n '' ']' 2025-06-05T23:20:40.0756863Z + hash -r 2025-06-05T23:20:40.0757074Z + PYTHON_EXECUTABLE=python 2025-06-05T23:20:40.0757392Z + bash .ci/scripts/setup-linux.sh --build-tool buck2 2025-06-05T23:20:40.0757746Z ++ dirname .ci/scripts/setup-linux.sh 2025-06-05T23:20:40.0758051Z + source .ci/scripts/utils.sh 2025-06-05T23:20:40.0758330Z + read -r BUILD_TOOL BUILD_MODE EDITABLE 2025-06-05T23:20:40.0758646Z ++ parse_args --build-tool buck2 2025-06-05T23:20:40.0758918Z ++ args=('--build-tool' 'buck2') 2025-06-05T23:20:40.0759180Z ++ local args 2025-06-05T23:20:40.0759367Z ++ local i 2025-06-05T23:20:40.0759566Z ++ local BUILD_TOOL= 2025-06-05T23:20:40.0759781Z ++ local BUILD_MODE= 2025-06-05T23:20:40.0760008Z ++ local EDITABLE= 2025-06-05T23:20:40.0760222Z ++ (( i=0 )) 2025-06-05T23:20:40.0760419Z ++ (( i<2 )) 2025-06-05T23:20:40.0760623Z ++ case "${args[$i]}" in 2025-06-05T23:20:40.0760852Z ++ BUILD_TOOL=buck2 2025-06-05T23:20:40.0761068Z ++ i=1 2025-06-05T23:20:40.0761247Z ++ (( i++ )) 2025-06-05T23:20:40.0761444Z ++ (( i<2 )) 2025-06-05T23:20:40.0761710Z ++ '[' -z buck2 ']' 2025-06-05T23:20:40.0761946Z ++ [[ buck2 =~ ^(cmake|buck2)$ ]] 2025-06-05T23:20:40.0762211Z ++ BUILD_MODE=Release 2025-06-05T23:20:40.0762461Z ++ [[ Release =~ ^(Debug|Release)$ ]] 2025-06-05T23:20:40.0762733Z ++ EDITABLE=false 2025-06-05T23:20:40.0762965Z ++ [[ false =~ ^(true|false)$ ]] 2025-06-05T23:20:40.0763252Z ++ echo 'buck2 Release false' 2025-06-05T23:20:40.0763509Z + [[ false == \t\r\u\e ]] 2025-06-05T23:20:40.0763793Z + install_executorch --use-pt-pinned-commit 2025-06-05T23:20:40.0764091Z + which pip 2025-06-05T23:20:40.0764307Z /opt/conda/envs/py_3.10/bin/pip 2025-06-05T23:20:40.0764609Z + ./install_executorch.sh --use-pt-pinned-commit 2025-06-05T23:20:40.0765306Z 2025-06-05 23:20:38,801 [ExecuTorch] INFO: All required submodules are present. 2025-06-05T23:20:40.0765959Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-06-05T23:20:40.0766767Z Requirement already satisfied: torch in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (2.8.0a0+git5616fa4) 2025-06-05T23:20:40.0767681Z Requirement already satisfied: torchvision in /var/lib/ci-user/.local/lib/python3.10/site-packages (0.22.0a0+966da7e) 2025-06-05T23:20:40.0768575Z Requirement already satisfied: torchaudio in /var/lib/ci-user/.local/lib/python3.10/site-packages (2.6.0a0+1a8f621) 2025-06-05T23:20:40.0769414Z Collecting timm==1.0.7 (from -r requirements-examples.txt (line 3)) 2025-06-05T23:20:40.0769902Z Downloading timm-1.0.7-py3-none-any.whl.metadata (47 kB) 2025-06-05T23:20:40.0770735Z Requirement already satisfied: torchsr==1.0.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-examples.txt (line 4)) (1.0.4) 2025-06-05T23:20:40.0771624Z Collecting torchtune>=0.6.1 (from -r requirements-examples.txt (line 5)) 2025-06-05T23:20:40.0772159Z Downloading torchtune-0.6.1-py3-none-any.whl.metadata (24 kB) 2025-06-05T23:20:40.0773055Z Requirement already satisfied: transformers==4.47.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-examples.txt (line 6)) (4.47.1) 2025-06-05T23:20:40.0773933Z Collecting cmake<4.0.0,>=3.19 (from -r requirements-dev.txt (line 1)) 2025-06-05T23:20:40.0774568Z Downloading cmake-3.31.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.3 kB) 2025-06-05T23:20:40.0775499Z Requirement already satisfied: pip>=23 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 2)) (25.1) 2025-06-05T23:20:40.0776585Z Requirement already satisfied: pyyaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 3)) (6.0.1) 2025-06-05T23:20:40.0777720Z Requirement already satisfied: setuptools>=63 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 4)) (78.1.1) 2025-06-05T23:20:40.0778839Z Requirement already satisfied: tomli in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 5)) (2.0.1) 2025-06-05T23:20:40.0779946Z Requirement already satisfied: wheel in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 6)) (0.45.1) 2025-06-05T23:20:40.0781040Z Requirement already satisfied: zstd in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 7)) (1.5.5.1) 2025-06-05T23:20:40.0782240Z Requirement already satisfied: huggingface_hub in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from timm==1.0.7->-r requirements-examples.txt (line 3)) (0.32.4) 2025-06-05T23:20:40.0783537Z Requirement already satisfied: safetensors in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from timm==1.0.7->-r requirements-examples.txt (line 3)) (0.5.3) 2025-06-05T23:20:40.0784847Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (3.18.0) 2025-06-05T23:20:43.0378726Z Requirement already satisfied: numpy>=1.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (2.2.6) 2025-06-05T23:20:43.0406208Z Requirement already satisfied: packaging>=20.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (25.0) 2025-06-05T23:20:43.0407784Z Requirement already satisfied: regex!=2019.12.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (2024.11.6) 2025-06-05T23:20:43.0409322Z Requirement already satisfied: requests in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (2.32.3) 2025-06-05T23:20:43.0410721Z Requirement already satisfied: tokenizers<0.22,>=0.21 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (0.21.1) 2025-06-05T23:20:43.0412066Z Requirement already satisfied: tqdm>=4.27 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (4.67.1) 2025-06-05T23:20:43.0413446Z Requirement already satisfied: fsspec>=2023.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) (2025.5.1) 2025-06-05T23:20:43.0415115Z Requirement already satisfied: typing-extensions>=3.7.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) (4.14.0) 2025-06-05T23:20:43.0416563Z Requirement already satisfied: hf-xet<2.0.0,>=1.1.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) (1.1.3) 2025-06-05T23:20:43.0417724Z Requirement already satisfied: sympy>=1.13.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (1.14.0) 2025-06-05T23:20:43.0418643Z Requirement already satisfied: networkx in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.4.2) 2025-06-05T23:20:43.0419532Z Requirement already satisfied: jinja2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.1.6) 2025-06-05T23:20:43.0420471Z Requirement already satisfied: pillow!=8.3.*,>=5.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchvision) (11.2.1) 2025-06-05T23:20:43.0421304Z Collecting torchdata==0.11.0 (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0421921Z Downloading torchdata-0.11.0-py3-none-any.whl.metadata (6.3 kB) 2025-06-05T23:20:43.0422514Z Collecting datasets (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0423086Z Downloading datasets-3.6.0-py3-none-any.whl.metadata (19 kB) 2025-06-05T23:20:43.0423666Z Collecting kagglehub (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0424247Z Downloading kagglehub-0.3.12-py3-none-any.whl.metadata (38 kB) 2025-06-05T23:20:43.0424853Z Collecting sentencepiece (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0425909Z Downloading https://download.pytorch.org/whl/nightly/sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) 2025-06-05T23:20:43.0427365Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.3 MB ? eta -:--:-- 2025-06-05T23:20:43.0428057Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 98.3 MB/s eta 0:00:00 2025-06-05T23:20:43.0428747Z [?25hCollecting tiktoken (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0429497Z Downloading tiktoken-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) 2025-06-05T23:20:43.0430221Z Collecting blobfile>=2 (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0430939Z Downloading https://download.pytorch.org/whl/nightly/blobfile-3.0.0-py3-none-any.whl (75 kB) 2025-06-05T23:20:43.0431737Z Collecting omegaconf (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0432461Z Downloading https://download.pytorch.org/whl/nightly/omegaconf-2.3.0-py3-none-any.whl (79 kB) 2025-06-05T23:20:43.0433173Z Collecting psutil (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0434012Z Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) 2025-06-05T23:20:43.0435283Z Requirement already satisfied: urllib3>=1.25 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchdata==0.11.0->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (2.4.0) 2025-06-05T23:20:43.0436406Z Collecting pycryptodomex>=3.8 (from blobfile>=2->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0437232Z Downloading pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.4 kB) 2025-06-05T23:20:43.0438357Z Requirement already satisfied: lxml>=4.9 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from blobfile>=2->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (5.4.0) 2025-06-05T23:20:43.0439542Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from sympy>=1.13.3->torch) (1.3.0) 2025-06-05T23:20:43.0440490Z Collecting pyarrow>=15.0.0 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0441196Z Downloading pyarrow-20.0.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (3.3 kB) 2025-06-05T23:20:43.0441874Z Collecting dill<0.3.9,>=0.3.0 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0442611Z Downloading https://download.pytorch.org/whl/nightly/dill-0.3.8-py3-none-any.whl (116 kB) 2025-06-05T23:20:43.0443661Z Requirement already satisfied: pandas in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (2.2.3) 2025-06-05T23:20:43.0444699Z Collecting xxhash (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0445614Z Downloading https://download.pytorch.org/whl/nightly/xxhash-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) 2025-06-05T23:20:43.0446560Z Collecting multiprocess<0.70.17 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0447388Z Downloading https://download.pytorch.org/whl/nightly/multiprocess-0.70.16-py310-none-any.whl (134 kB) 2025-06-05T23:20:43.0448188Z Collecting fsspec>=2023.5.0 (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) 2025-06-05T23:20:43.0448822Z Downloading fsspec-2025.3.0-py3-none-any.whl.metadata (11 kB) 2025-06-05T23:20:43.0449569Z Collecting aiohttp!=4.0.0a0,!=4.0.0a1 (from fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0450457Z Downloading aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.6 kB) 2025-06-05T23:20:43.0451446Z Collecting aiohappyeyeballs>=2.5.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0452338Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-06-05T23:20:43.0453191Z Collecting aiosignal>=1.1.2 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0454021Z Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) 2025-06-05T23:20:43.0454858Z Collecting async-timeout<6.0,>=4.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0455697Z Downloading async_timeout-5.0.1-py3-none-any.whl.metadata (5.1 kB) 2025-06-05T23:20:43.0456901Z Requirement already satisfied: attrs>=17.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (25.3.0) 2025-06-05T23:20:43.0458395Z Collecting frozenlist>=1.1.1 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0459509Z Downloading frozenlist-1.6.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (17 kB) 2025-06-05T23:20:43.0460608Z Collecting multidict<7.0,>=4.5 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0461552Z Downloading multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) 2025-06-05T23:20:43.0462511Z Collecting propcache>=0.2.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:43.0463472Z Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (10 kB) 2025-06-05T23:20:43.0464451Z Collecting yarl<2.0,>=1.17.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:44.9060073Z Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (72 kB) 2025-06-05T23:20:44.9061743Z Requirement already satisfied: idna>=2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from yarl<2.0,>=1.17.0->aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (3.10) 2025-06-05T23:20:44.9063410Z Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.47.1->-r requirements-examples.txt (line 6)) (3.4.2) 2025-06-05T23:20:44.9064948Z Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.47.1->-r requirements-examples.txt (line 6)) (2025.4.26) 2025-06-05T23:20:44.9066436Z Collecting hf-transfer>=0.1.4 (from huggingface_hub[hf_transfer]->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:44.9067296Z Downloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.7 kB) 2025-06-05T23:20:44.9068235Z Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from jinja2->torch) (3.0.2) 2025-06-05T23:20:44.9069189Z Collecting antlr4-python3-runtime==4.9.* (from omegaconf->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:20:44.9070050Z Downloading https://download.pytorch.org/whl/nightly/antlr4_python3_runtime-4.9.3.tar.gz (117 kB) 2025-06-05T23:20:44.9070879Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:20:44.9072057Z [?25hRequirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (2.9.0.post0) 2025-06-05T23:20:44.9073605Z Requirement already satisfied: pytz>=2020.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (2025.2) 2025-06-05T23:20:44.9075062Z Requirement already satisfied: tzdata>=2022.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (2025.2) 2025-06-05T23:20:44.9076579Z Requirement already satisfied: six>=1.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from python-dateutil>=2.8.2->pandas->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (1.17.0) 2025-06-05T23:20:44.9077833Z Downloading timm-1.0.7-py3-none-any.whl (2.3 MB) 2025-06-05T23:20:44.9078462Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:20:44.9079128Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 99.3 MB/s eta 0:00:00 2025-06-05T23:20:44.9079881Z [?25hDownloading cmake-3.31.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.8 MB) 2025-06-05T23:20:44.9080622Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/27.8 MB ? eta -:--:-- 2025-06-05T23:20:44.9081300Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27.8/27.8 MB 150.5 MB/s eta 0:00:00 2025-06-05T23:20:44.9081880Z [?25hDownloading torchtune-0.6.1-py3-none-any.whl (910 kB) 2025-06-05T23:20:44.9082488Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/910.7 kB ? eta -:--:-- 2025-06-05T23:20:44.9083286Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 910.7/910.7 kB 111.4 MB/s eta 0:00:00 2025-06-05T23:20:44.9083880Z [?25hDownloading torchdata-0.11.0-py3-none-any.whl (61 kB) 2025-06-05T23:20:44.9084510Z Downloading pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB) 2025-06-05T23:20:44.9085416Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:20:44.9086076Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 185.8 MB/s eta 0:00:00 2025-06-05T23:20:44.9086644Z [?25hDownloading datasets-3.6.0-py3-none-any.whl (491 kB) 2025-06-05T23:20:44.9087075Z Downloading fsspec-2025.3.0-py3-none-any.whl (193 kB) 2025-06-05T23:20:44.9087658Z Downloading aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB) 2025-06-05T23:20:44.9088401Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.6 MB ? eta -:--:-- 2025-06-05T23:20:44.9089212Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 74.9 MB/s eta 0:00:00 2025-06-05T23:20:44.9089806Z [?25hDownloading async_timeout-5.0.1-py3-none-any.whl (6.2 kB) 2025-06-05T23:20:44.9090425Z Downloading multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (219 kB) 2025-06-05T23:20:44.9091152Z Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333 kB) 2025-06-05T23:20:44.9091741Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-06-05T23:20:44.9092221Z Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) 2025-06-05T23:20:44.9092968Z Downloading frozenlist-1.6.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (224 kB) 2025-06-05T23:20:44.9093853Z Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206 kB) 2025-06-05T23:20:44.9094514Z Downloading pyarrow-20.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (42.3 MB) 2025-06-05T23:20:44.9095193Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/42.3 MB ? eta -:--:-- 2025-06-05T23:20:44.9095865Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.3/42.3 MB 243.5 MB/s eta 0:00:00 2025-06-05T23:20:44.9096642Z [?25hDownloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB) 2025-06-05T23:20:44.9097589Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.6 MB ? eta -:--:-- 2025-06-05T23:20:44.9098268Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 135.5 MB/s eta 0:00:00 2025-06-05T23:20:44.9098825Z [?25hDownloading kagglehub-0.3.12-py3-none-any.whl (67 kB) 2025-06-05T23:20:44.9099561Z Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277 kB) 2025-06-05T23:20:44.9100542Z Downloading tiktoken-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) 2025-06-05T23:20:44.9101288Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.2 MB ? eta -:--:-- 2025-06-05T23:20:44.9102178Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 152.0 MB/s eta 0:00:00 2025-06-05T23:20:44.9102776Z [?25hBuilding wheels for collected packages: antlr4-python3-runtime 2025-06-05T23:20:44.9105544Z  DEPRECATION: Building 'antlr4-python3-runtime' using the legacy setup.py bdist_wheel mechanism, which will be removed in a future version. pip 25.3 will enforce this behaviour change. A possible replacement is to use the standardized build interface by setting the `--use-pep517` option, (possibly combined with `--no-build-isolation`), or adding a `pyproject.toml` file to the source tree of 'antlr4-python3-runtime'. Discussion can be found at https://github.com/pypa/pip/issues/6334 2025-06-05T23:20:44.9107783Z  Building wheel for antlr4-python3-runtime (setup.py) ... [?25l- done 2025-06-05T23:20:44.9108975Z [?25h Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.9.3-py3-none-any.whl size=144590 sha256=299cfd842bfc06fc34c8461565f7d34db57d993e21d701150d2960979cf72a0d 2025-06-05T23:20:44.9110174Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/8e/0c/ef/6e1004d7898c3e61c08b70be9a80232ee72e7c55c9a9bffa33 2025-06-05T23:20:44.9110832Z Successfully built antlr4-python3-runtime 2025-06-05T23:20:54.9973042Z Installing collected packages: sentencepiece, antlr4-python3-runtime, xxhash, pycryptodomex, pyarrow, psutil, propcache, omegaconf, multidict, hf-transfer, fsspec, frozenlist, dill, cmake, async-timeout, aiohappyeyeballs, yarl, tiktoken, multiprocess, kagglehub, blobfile, aiosignal, torchdata, aiohttp, timm, datasets, torchtune 2025-06-05T23:20:54.9975029Z [?25l 2025-06-05T23:20:54.9975588Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:20:54.9976273Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:20:54.9976904Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:20:54.9977634Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:20:54.9978234Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:20:54.9978945Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:20:54.9979551Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:20:54.9980139Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:20:54.9980738Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  5/27 [psutil] 2025-06-05T23:20:54.9981656Z  ━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━  8/27 [multidict] 2025-06-05T23:20:54.9982108Z  Attempting uninstall: fsspec 2025-06-05T23:20:54.9982741Z ━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━  8/27 [multidict] 2025-06-05T23:20:54.9983244Z  Found existing installation: fsspec 2025.5.1 2025-06-05T23:20:54.9983799Z ━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━  8/27 [multidict] 2025-06-05T23:20:54.9984251Z  Uninstalling fsspec-2025.5.1: 2025-06-05T23:20:54.9984760Z ━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━  8/27 [multidict] 2025-06-05T23:20:54.9985251Z  Successfully uninstalled fsspec-2025.5.1 2025-06-05T23:20:54.9985894Z ━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━  8/27 [multidict] 2025-06-05T23:20:54.9986529Z  ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 10/27 [fsspec] 2025-06-05T23:20:54.9987118Z  ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 12/27 [dill] 2025-06-05T23:20:54.9987703Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:20:54.9988310Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:20:54.9988883Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:20:54.9989469Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:20:54.9990038Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:20:54.9990648Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 18/27 [multiprocess] 2025-06-05T23:20:54.9991333Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 22/27 [torchdata] 2025-06-05T23:20:54.9991784Z  Attempting uninstall: timm 2025-06-05T23:20:54.9992358Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 22/27 [torchdata] 2025-06-05T23:20:54.9992921Z  Found existing installation: timm 0.6.13 2025-06-05T23:20:54.9993648Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 22/27 [torchdata] 2025-06-05T23:20:54.9994224Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:20:54.9994663Z  Uninstalling timm-0.6.13: 2025-06-05T23:20:54.9995133Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:20:54.9995680Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:20:54.9996142Z  Successfully uninstalled timm-0.6.13 2025-06-05T23:20:54.9996657Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:20:54.9997222Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:20:54.9997942Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:20:54.9998801Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:20:54.9999404Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 25/27 [datasets] 2025-06-05T23:20:54.9999990Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 25/27 [datasets] 2025-06-05T23:20:55.0000591Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 26/27 [torchtune] 2025-06-05T23:20:55.0001169Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 26/27 [torchtune] 2025-06-05T23:20:55.0001749Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27/27 [torchtune] 2025-06-05T23:20:55.0002121Z [?25h 2025-06-05T23:20:55.0004329Z Successfully installed aiohappyeyeballs-2.6.1 aiohttp-3.12.9 aiosignal-1.3.2 antlr4-python3-runtime-4.9.3 async-timeout-5.0.1 blobfile-3.0.0 cmake-3.31.6 datasets-3.6.0 dill-0.3.8 frozenlist-1.6.2 fsspec-2025.3.0 hf-transfer-0.1.9 kagglehub-0.3.12 multidict-6.4.4 multiprocess-0.70.16 omegaconf-2.3.0 propcache-0.3.1 psutil-7.0.0 pyarrow-20.0.0 pycryptodomex-3.23.0 sentencepiece-0.2.0 tiktoken-0.9.0 timm-1.0.7 torchdata-0.11.0 torchtune-0.6.1 xxhash-3.5.0 yarl-1.20.0 2025-06-05T23:20:55.0006229Z Processing ./third-party/ao 2025-06-05T23:20:55.0006608Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:20:55.0007020Z [?25hProcessing ./extension/llm/tokenizers 2025-06-05T23:20:55.0007486Z Preparing metadata (pyproject.toml) ... [?25l- \ done 2025-06-05T23:20:55.0008393Z [?25hRequirement already satisfied: tiktoken in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytorch_tokenizers==0.1.0) (0.9.0) 2025-06-05T23:21:02.5418674Z Requirement already satisfied: tokenizers in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytorch_tokenizers==0.1.0) (0.21.1) 2025-06-05T23:21:02.5420164Z Requirement already satisfied: sentencepiece in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytorch_tokenizers==0.1.0) (0.2.0) 2025-06-05T23:21:02.5421885Z Requirement already satisfied: regex>=2022.1.18 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tiktoken->pytorch_tokenizers==0.1.0) (2024.11.6) 2025-06-05T23:21:02.5423660Z Requirement already satisfied: requests>=2.26.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tiktoken->pytorch_tokenizers==0.1.0) (2.32.3) 2025-06-05T23:21:02.5425740Z Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests>=2.26.0->tiktoken->pytorch_tokenizers==0.1.0) (3.4.2) 2025-06-05T23:21:02.5427819Z Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests>=2.26.0->tiktoken->pytorch_tokenizers==0.1.0) (3.10) 2025-06-05T23:21:02.5429638Z Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests>=2.26.0->tiktoken->pytorch_tokenizers==0.1.0) (2.4.0) 2025-06-05T23:21:02.5431091Z Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests>=2.26.0->tiktoken->pytorch_tokenizers==0.1.0) (2025.4.26) 2025-06-05T23:21:02.5432393Z Requirement already satisfied: huggingface-hub<1.0,>=0.16.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tokenizers->pytorch_tokenizers==0.1.0) (0.32.4) 2025-06-05T23:21:02.5433728Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (3.18.0) 2025-06-05T23:21:02.5435129Z Requirement already satisfied: fsspec>=2023.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (2025.3.0) 2025-06-05T23:21:02.5436518Z Requirement already satisfied: packaging>=20.9 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (25.0) 2025-06-05T23:21:02.5437890Z Requirement already satisfied: pyyaml>=5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (6.0.1) 2025-06-05T23:21:02.5439246Z Requirement already satisfied: tqdm>=4.42.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (4.67.1) 2025-06-05T23:21:02.5440653Z Requirement already satisfied: typing-extensions>=3.7.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (4.14.0) 2025-06-05T23:21:02.5442093Z Requirement already satisfied: hf-xet<2.0.0,>=1.1.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.16.4->tokenizers->pytorch_tokenizers==0.1.0) (1.1.3) 2025-06-05T23:21:02.5443043Z Building wheels for collected packages: torchao, pytorch_tokenizers 2025-06-05T23:21:02.5445591Z  DEPRECATION: Building 'torchao' using the legacy setup.py bdist_wheel mechanism, which will be removed in a future version. pip 25.3 will enforce this behaviour change. A possible replacement is to use the standardized build interface by setting the `--use-pep517` option, (possibly combined with `--no-build-isolation`), or adding a `pyproject.toml` file to the source tree of 'torchao'. Discussion can be found at https://github.com/pypa/pip/issues/6334 2025-06-05T23:21:02.5447677Z  Building wheel for torchao (setup.py) ... [?25l- \ | / - done 2025-06-05T23:21:02.5448821Z [?25h Created wheel for torchao: filename=torchao-0.12.0+gitbc68b11-cp39-abi3-linux_x86_64.whl size=955946 sha256=695621f770422c12d23b55513eee5c94c188c0be5176660cbfb1bbc366cbabcb 2025-06-05T23:21:02.5450154Z Stored in directory: /tmp/pip-ephem-wheel-cache-r7nrlake/wheels/0b/23/ff/2261dc1c4a27252503fe159d9fc88676b133e0e8d621abf36f 2025-06-05T23:21:02.5451065Z Building wheel for pytorch_tokenizers (pyproject.toml) ... [?25l- \ done 2025-06-05T23:21:02.5452220Z [?25h Created wheel for pytorch_tokenizers: filename=pytorch_tokenizers-0.1.0-py3-none-any.whl size=10999 sha256=2032079a0ff95e18445a37df216ccdf4127a36942a9e68a071448d0a3fae9663 2025-06-05T23:21:02.5453418Z Stored in directory: /tmp/pip-ephem-wheel-cache-r7nrlake/wheels/27/7b/a1/358699b32a468639d6f9ef263f9676280bc5ee318b0bd9a0b2 2025-06-05T23:21:02.5454166Z Successfully built torchao pytorch_tokenizers 2025-06-05T23:21:02.5454593Z Installing collected packages: torchao, pytorch_tokenizers 2025-06-05T23:21:02.5454979Z [?25l 2025-06-05T23:21:02.5455374Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:21:02.5455892Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:21:02.5456405Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:21:02.5457019Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2/2 [pytorch_tokenizers] 2025-06-05T23:21:02.5457399Z [?25h 2025-06-05T23:21:02.5457844Z Successfully installed pytorch_tokenizers-0.1.0 torchao-0.12.0+gitbc68b11 2025-06-05T23:21:02.5458475Z Using pip 25.1 from /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pip (python 3.10) 2025-06-05T23:21:02.5459170Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-06-05T23:21:02.5459681Z Processing /pytorch/executorch 2025-06-05T23:21:02.5460022Z Running command Preparing metadata (pyproject.toml) 2025-06-05T23:21:02.5460984Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-06-05T23:21:02.5461865Z !! 2025-06-05T23:21:02.5461984Z 2025-06-05T23:21:02.5462104Z ******************************************************************************** 2025-06-05T23:21:02.5462928Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-06-05T23:21:02.5463630Z 2025-06-05T23:21:02.5463848Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-06-05T23:21:02.5464305Z or your builds will no longer be supported. 2025-06-05T23:21:02.5464533Z 2025-06-05T23:21:02.5464875Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:21:02.5465756Z ******************************************************************************** 2025-06-05T23:21:02.5466007Z 2025-06-05T23:21:02.5466082Z !! 2025-06-05T23:21:02.5466296Z corresp(dist, value, root_dir) 2025-06-05T23:21:02.5467141Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:61: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:21:02.5467959Z !! 2025-06-05T23:21:02.5468075Z 2025-06-05T23:21:02.5468193Z ******************************************************************************** 2025-06-05T23:21:02.5468716Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:21:02.5469137Z 2025-06-05T23:21:02.5469283Z License :: OSI Approved :: BSD License 2025-06-05T23:21:02.5469500Z 2025-06-05T23:21:02.5469857Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:21:02.5470417Z ******************************************************************************** 2025-06-05T23:21:02.5470833Z 2025-06-05T23:21:02.5470907Z !! 2025-06-05T23:21:02.5471109Z dist._finalize_license_expression() 2025-06-05T23:21:02.5471870Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:21:02.5472604Z !! 2025-06-05T23:21:02.5472704Z 2025-06-05T23:21:02.5472827Z ******************************************************************************** 2025-06-05T23:21:02.5473363Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:21:02.5473771Z 2025-06-05T23:21:02.5473888Z License :: OSI Approved :: BSD License 2025-06-05T23:21:02.5474118Z 2025-06-05T23:21:02.5474458Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:21:02.5475029Z ******************************************************************************** 2025-06-05T23:21:02.5475267Z 2025-06-05T23:21:02.5475346Z !! 2025-06-05T23:21:02.5475564Z self._finalize_license_expression() 2025-06-05T23:21:02.5475855Z running dist_info 2025-06-05T23:21:02.5476198Z creating /tmp/pip-modern-metadata-6l49454a/executorch.egg-info 2025-06-05T23:21:02.5476738Z writing /tmp/pip-modern-metadata-6l49454a/executorch.egg-info/PKG-INFO 2025-06-05T23:21:02.5477522Z writing dependency_links to /tmp/pip-modern-metadata-6l49454a/executorch.egg-info/dependency_links.txt 2025-06-05T23:21:02.5478323Z writing entry points to /tmp/pip-modern-metadata-6l49454a/executorch.egg-info/entry_points.txt 2025-06-05T23:21:02.5479056Z writing requirements to /tmp/pip-modern-metadata-6l49454a/executorch.egg-info/requires.txt 2025-06-05T23:21:02.5479796Z writing top-level names to /tmp/pip-modern-metadata-6l49454a/executorch.egg-info/top_level.txt 2025-06-05T23:21:02.5480517Z writing manifest file '/tmp/pip-modern-metadata-6l49454a/executorch.egg-info/SOURCES.txt' 2025-06-05T23:21:02.5481240Z reading manifest file '/tmp/pip-modern-metadata-6l49454a/executorch.egg-info/SOURCES.txt' 2025-06-05T23:21:02.5481747Z adding license file 'LICENSE' 2025-06-05T23:21:03.5253577Z writing manifest file '/tmp/pip-modern-metadata-6l49454a/executorch.egg-info/SOURCES.txt' 2025-06-05T23:21:03.5254377Z creating '/tmp/pip-modern-metadata-6l49454a/executorch-0.7.0a0+bd57234.dist-info' 2025-06-05T23:21:03.5255178Z Preparing metadata (pyproject.toml) ... [?25l[?25hdone 2025-06-05T23:21:03.5255965Z Requirement already satisfied: expecttest in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (0.1.6) 2025-06-05T23:21:03.5256745Z Collecting flatbuffers (from executorch==0.7.0a0+bd57234) 2025-06-05T23:21:03.5257982Z Obtaining dependency information for flatbuffers from https://files.pythonhosted.org/packages/b8/25/155f9f080d5e4bc0082edfda032ea2bc2b8fab3f4d25d46c1e9dd22a1a89/flatbuffers-25.2.10-py2.py3-none-any.whl.metadata 2025-06-05T23:21:03.5259277Z Downloading flatbuffers-25.2.10-py2.py3-none-any.whl.metadata (875 bytes) 2025-06-05T23:21:03.5260157Z Requirement already satisfied: hypothesis in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (6.84.2) 2025-06-05T23:21:03.5261235Z Requirement already satisfied: mpmath==1.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (1.3.0) 2025-06-05T23:21:03.5262298Z Requirement already satisfied: numpy>=2.0.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (2.2.6) 2025-06-05T23:21:03.5263347Z Requirement already satisfied: packaging in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (25.0) 2025-06-05T23:21:03.5264406Z Requirement already satisfied: pandas>=2.2.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (2.2.3) 2025-06-05T23:21:03.5265743Z Requirement already satisfied: parameterized in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (0.9.0) 2025-06-05T23:21:03.5267050Z Requirement already satisfied: pytest in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (7.2.0) 2025-06-05T23:21:03.5267814Z Collecting pytest-xdist (from executorch==0.7.0a0+bd57234) 2025-06-05T23:21:03.5269006Z Obtaining dependency information for pytest-xdist from https://files.pythonhosted.org/packages/0d/b2/0e802fde6f1c5b2f7ae7e9ad42b83fd4ecebac18a8a8c2f2f14e39dce6e1/pytest_xdist-3.7.0-py3-none-any.whl.metadata 2025-06-05T23:21:03.5270236Z Downloading pytest_xdist-3.7.0-py3-none-any.whl.metadata (3.0 kB) 2025-06-05T23:21:03.5270770Z Collecting pytest-rerunfailures (from executorch==0.7.0a0+bd57234) 2025-06-05T23:21:03.5272049Z Obtaining dependency information for pytest-rerunfailures from https://files.pythonhosted.org/packages/f3/30/11d836ff01c938969efa319b4ebe2374ed79d28043a12bfc908577aab9f3/pytest_rerunfailures-15.1-py3-none-any.whl.metadata 2025-06-05T23:21:03.5273378Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl.metadata (20 kB) 2025-06-05T23:21:03.5274215Z Requirement already satisfied: pyyaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (6.0.1) 2025-06-05T23:21:03.5275390Z Requirement already satisfied: ruamel.yaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (0.17.32) 2025-06-05T23:21:03.5276466Z Requirement already satisfied: sympy in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (1.14.0) 2025-06-05T23:21:03.5277182Z Collecting tabulate (from executorch==0.7.0a0+bd57234) 2025-06-05T23:21:03.5278304Z Obtaining dependency information for tabulate from https://files.pythonhosted.org/packages/40/44/4a5f08c96eb108af5cb50b41f76142f0afa346dfa99d5296fe7202a11854/tabulate-0.9.0-py3-none-any.whl.metadata 2025-06-05T23:21:03.5279476Z Downloading tabulate-0.9.0-py3-none-any.whl.metadata (34 kB) 2025-06-05T23:21:03.5280328Z Requirement already satisfied: typing-extensions>=4.10.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==0.7.0a0+bd57234) (4.14.0) 2025-06-05T23:21:03.5281172Z Collecting coremltools==8.3 (from executorch==0.7.0a0+bd57234) 2025-06-05T23:21:03.5282419Z Obtaining dependency information for coremltools==8.3 from https://files.pythonhosted.org/packages/c4/c9/f602c2a7861a9e8a2555a083d9558d37d8811515bacd597eb3b40ba7757d/coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl.metadata 2025-06-05T23:21:03.5283777Z Downloading coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl.metadata (2.6 kB) 2025-06-05T23:21:03.5284424Z Collecting protobuf>=3.1.0 (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:21:03.5285701Z Obtaining dependency information for protobuf>=3.1.0 from https://files.pythonhosted.org/packages/fa/b1/b59d405d64d31999244643d88c45c8241c58f17cc887e73bcb90602327f8/protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl.metadata 2025-06-05T23:21:03.5287018Z Downloading protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl.metadata (593 bytes) 2025-06-05T23:21:03.5287955Z Requirement already satisfied: tqdm in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==8.3->executorch==0.7.0a0+bd57234) (4.67.1) 2025-06-05T23:21:03.5289146Z Requirement already satisfied: attrs>=21.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==8.3->executorch==0.7.0a0+bd57234) (25.3.0) 2025-06-05T23:21:03.5290026Z Collecting cattrs (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:21:03.5291181Z Obtaining dependency information for cattrs from https://files.pythonhosted.org/packages/18/b0/215274ef0d835bbc1056392a367646648b6084e39d489099959aefcca2af/cattrs-25.1.1-py3-none-any.whl.metadata 2025-06-05T23:21:03.5292299Z Downloading cattrs-25.1.1-py3-none-any.whl.metadata (8.4 kB) 2025-06-05T23:21:03.5292818Z Collecting pyaml (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:21:03.5293942Z Obtaining dependency information for pyaml from https://files.pythonhosted.org/packages/aa/7d/1b5061beff826f902285827261485a058b943332eba8a5532a0164735205/pyaml-25.5.0-py3-none-any.whl.metadata 2025-06-05T23:21:03.5295116Z Downloading pyaml-25.5.0-py3-none-any.whl.metadata (12 kB) 2025-06-05T23:21:03.5296038Z Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas>=2.2.2->executorch==0.7.0a0+bd57234) (2.9.0.post0) 2025-06-05T23:21:03.5297280Z Requirement already satisfied: pytz>=2020.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas>=2.2.2->executorch==0.7.0a0+bd57234) (2025.2) 2025-06-05T23:21:03.5298468Z Requirement already satisfied: tzdata>=2022.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas>=2.2.2->executorch==0.7.0a0+bd57234) (2025.2) 2025-06-05T23:21:03.5299741Z Requirement already satisfied: six>=1.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from python-dateutil>=2.8.2->pandas>=2.2.2->executorch==0.7.0a0+bd57234) (1.17.0) 2025-06-05T23:21:03.5301081Z Requirement already satisfied: exceptiongroup>=1.1.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from cattrs->coremltools==8.3->executorch==0.7.0a0+bd57234) (1.3.0) 2025-06-05T23:21:03.5302478Z Requirement already satisfied: sortedcontainers<3.0.0,>=2.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from hypothesis->executorch==0.7.0a0+bd57234) (2.4.0) 2025-06-05T23:21:03.5303694Z Requirement already satisfied: iniconfig in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->executorch==0.7.0a0+bd57234) (2.1.0) 2025-06-05T23:21:03.5304838Z Requirement already satisfied: pluggy<2.0,>=0.12 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->executorch==0.7.0a0+bd57234) (1.6.0) 2025-06-05T23:21:03.5306063Z Requirement already satisfied: tomli>=1.0.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->executorch==0.7.0a0+bd57234) (2.0.1) 2025-06-05T23:21:03.5306824Z Collecting pytest (from executorch==0.7.0a0+bd57234) 2025-06-05T23:21:03.5307932Z Obtaining dependency information for pytest from https://files.pythonhosted.org/packages/2f/de/afa024cbe022b1b318a3d224125aa24939e99b4ff6f22e0ba639a2eaee47/pytest-8.4.0-py3-none-any.whl.metadata 2025-06-05T23:21:03.5309080Z Downloading pytest-8.4.0-py3-none-any.whl.metadata (7.7 kB) 2025-06-05T23:21:03.5309912Z Requirement already satisfied: pygments>=2.7.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->executorch==0.7.0a0+bd57234) (2.19.1) 2025-06-05T23:21:03.5310778Z Collecting execnet>=2.1 (from pytest-xdist->executorch==0.7.0a0+bd57234) 2025-06-05T23:21:03.5311954Z Obtaining dependency information for execnet>=2.1 from https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl.metadata 2025-06-05T23:21:03.5313127Z Downloading execnet-2.1.1-py3-none-any.whl.metadata (2.9 kB) 2025-06-05T23:21:03.5314172Z Requirement already satisfied: ruamel.yaml.clib>=0.2.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ruamel.yaml->executorch==0.7.0a0+bd57234) (0.2.12) 2025-06-05T23:21:03.5315263Z Downloading coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl (2.3 MB) 2025-06-05T23:21:03.5316068Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:21:03.5316751Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 121.8 MB/s eta 0:00:00 2025-06-05T23:21:03.5317416Z [?25hDownloading protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl (321 kB) 2025-06-05T23:21:03.5317927Z Downloading cattrs-25.1.1-py3-none-any.whl (69 kB) 2025-06-05T23:21:03.5318369Z Downloading flatbuffers-25.2.10-py2.py3-none-any.whl (30 kB) 2025-06-05T23:21:05.6950120Z Downloading pyaml-25.5.0-py3-none-any.whl (26 kB) 2025-06-05T23:21:05.6951106Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl (13 kB) 2025-06-05T23:21:05.6951877Z Downloading pytest-8.4.0-py3-none-any.whl (363 kB) 2025-06-05T23:21:05.6952555Z Downloading pytest_xdist-3.7.0-py3-none-any.whl (46 kB) 2025-06-05T23:21:05.6952970Z Downloading execnet-2.1.1-py3-none-any.whl (40 kB) 2025-06-05T23:21:05.6953480Z Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) 2025-06-05T23:21:05.6953883Z Building wheels for collected packages: executorch 2025-06-05T23:21:05.6954341Z Running command Building wheel for executorch (pyproject.toml) 2025-06-05T23:21:05.6955353Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-06-05T23:21:05.6956235Z !! 2025-06-05T23:21:05.6956341Z 2025-06-05T23:21:05.6956461Z ******************************************************************************** 2025-06-05T23:21:05.6957453Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-06-05T23:21:05.6958256Z 2025-06-05T23:21:05.6958535Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-06-05T23:21:05.6958991Z or your builds will no longer be supported. 2025-06-05T23:21:05.6959237Z 2025-06-05T23:21:05.6959923Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:21:05.6960507Z ******************************************************************************** 2025-06-05T23:21:05.6960754Z 2025-06-05T23:21:05.6960850Z !! 2025-06-05T23:21:05.6961151Z corresp(dist, value, root_dir) 2025-06-05T23:21:05.6961988Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:61: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:21:05.6962981Z !! 2025-06-05T23:21:05.6963086Z 2025-06-05T23:21:05.6963207Z ******************************************************************************** 2025-06-05T23:21:05.6963810Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:21:05.6964263Z 2025-06-05T23:21:05.6964424Z License :: OSI Approved :: BSD License 2025-06-05T23:21:05.6964642Z 2025-06-05T23:21:05.6965195Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:21:05.6965875Z ******************************************************************************** 2025-06-05T23:21:05.6966110Z 2025-06-05T23:21:05.6966186Z !! 2025-06-05T23:21:05.6966409Z dist._finalize_license_expression() 2025-06-05T23:21:05.6967340Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:21:05.6968163Z !! 2025-06-05T23:21:05.6968295Z 2025-06-05T23:21:05.6968430Z ******************************************************************************** 2025-06-05T23:21:05.6968969Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:21:05.6969391Z 2025-06-05T23:21:05.6969514Z License :: OSI Approved :: BSD License 2025-06-05T23:21:05.6969733Z 2025-06-05T23:21:05.6970084Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:21:05.6970660Z ******************************************************************************** 2025-06-05T23:21:05.6970895Z 2025-06-05T23:21:05.6970981Z !! 2025-06-05T23:21:05.6971185Z self._finalize_license_expression() 2025-06-05T23:21:05.6971486Z running bdist_wheel 2025-06-05T23:21:05.6971710Z running build 2025-06-05T23:21:05.6971948Z command options for 'CustomBuild': 2025-06-05T23:21:05.6972235Z build_base = pip-out 2025-06-05T23:21:05.6972496Z build_purelib = pip-out/lib 2025-06-05T23:21:05.6972817Z build_platlib = pip-out/lib.linux-x86_64-cpython-310 2025-06-05T23:21:05.6973351Z build_lib = pip-out/lib.linux-x86_64-cpython-310 2025-06-05T23:21:05.6973713Z build_scripts = pip-out/scripts-3.10 2025-06-05T23:21:05.6974058Z build_temp = pip-out/temp.linux-x86_64-cpython-310 2025-06-05T23:21:05.6974410Z plat_name = linux-x86_64 2025-06-05T23:21:05.6974661Z compiler = None 2025-06-05T23:21:05.6974940Z parallel = None 2025-06-05T23:21:05.6975210Z debug = None 2025-06-05T23:21:05.6975420Z force = None 2025-06-05T23:21:05.6975697Z executable = /opt/conda/envs/py_3.10/bin/python 2025-06-05T23:21:05.6976189Z creating /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:21:05.6976813Z clearing /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:21:05.6977268Z Preset CMake variables: 2025-06-05T23:21:05.6977449Z 2025-06-05T23:21:05.6977556Z CMAKE_OSX_DEPLOYMENT_TARGET="12.0" 2025-06-05T23:21:05.6978026Z EXECUTORCH_BUILD_PRESET_FILE="/pytorch/executorch/tools/cmake/preset/pybind.cmake" 2025-06-05T23:21:05.6978426Z 2025-06-05T23:21:05.6978568Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:21:05.6978961Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:21:05.6979302Z -- Detecting C compiler ABI info 2025-06-05T23:21:05.6979622Z -- Detecting C compiler ABI info - done 2025-06-05T23:21:05.6980101Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:21:05.6980496Z -- Detecting C compile features 2025-06-05T23:21:05.6980794Z -- Detecting C compile features - done 2025-06-05T23:21:05.6981119Z -- Detecting CXX compiler ABI info 2025-06-05T23:21:05.6981439Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:21:05.6981830Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:21:05.6982228Z -- Detecting CXX compile features 2025-06-05T23:21:05.6982526Z -- Detecting CXX compile features - done 2025-06-05T23:21:05.6982982Z -- Loading build preset: /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-06-05T23:21:05.6983429Z -- --- Configured Options --- 2025-06-05T23:21:05.6983625Z 2025-06-05T23:21:05.6983742Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:21:05.6984086Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:21:05.6984451Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:21:05.6984882Z -- PYTHON_EXECUTABLE : /opt/conda/envs/py_3.10/bin/python 2025-06-05T23:21:05.6985310Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:21:05.6985831Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:21:05.6986232Z -- BUCK2 : 2025-06-05T23:21:05.6986723Z -- EXECUTORCH_BUILD_PRESET_FILE : /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-06-05T23:21:05.6987229Z -- EXECUTORCH_ENABLE_LOGGING : ON 2025-06-05T23:21:05.6987585Z -- EXECUTORCH_BUILD_COREML : ON 2025-06-05T23:21:05.6987959Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:21:05.6988321Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:21:05.6988865Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:21:05.6989399Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:21:05.6989778Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:21:05.6990140Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:21:05.6990506Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:21:05.6990864Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:21:05.6991211Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : ON 2025-06-05T23:21:05.6991571Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : ON 2025-06-05T23:21:05.6991920Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : ON 2025-06-05T23:21:05.6992289Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : OFF 2025-06-05T23:21:05.6992736Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : ON 2025-06-05T23:21:05.6993096Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:21:05.6993444Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : OFF 2025-06-05T23:21:05.6993805Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : ON 2025-06-05T23:21:05.6994168Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-06-05T23:21:05.6994523Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:21:05.6994890Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:21:05.6995235Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:21:05.6995633Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:21:05.6995973Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:21:05.6996326Z -- EXECUTORCH_BUILD_PYBIND : ON 2025-06-05T23:21:05.6996673Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:21:05.6997019Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : OFF 2025-06-05T23:21:05.6997391Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-06-05T23:21:05.6997733Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-06-05T23:21:05.6998084Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:21:05.6998419Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:21:05.6998833Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:21:05.6999181Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:21:05.6999532Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-06-05T23:21:05.6999879Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:21:05.7000221Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:21:05.7000574Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:21:05.7000906Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:21:05.7001262Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:21:05.7001596Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:21:05.7001957Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:21:05.7002307Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:21:05.7002666Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:21:05.7003022Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:21:05.7003375Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:21:05.7003733Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:21:05.7004084Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:21:05.7004469Z -- -------------------------- 2025-06-05T23:21:05.7004882Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:21:05.7005678Z CMake Deprecation Warning at third-party/pybind11/CMakeLists.txt:13 (cmake_minimum_required): 2025-06-05T23:21:05.7006381Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:21:05.7006784Z CMake. 2025-06-05T23:21:05.7006929Z 2025-06-05T23:21:05.7007242Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:21:05.7007785Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:21:05.7008265Z to work with policies introduced by or earlier. 2025-06-05T23:21:05.7008601Z 2025-06-05T23:21:05.7008605Z 2025-06-05T23:21:05.7008701Z -- pybind11 v2.13.6 2025-06-05T23:21:05.7009258Z -- Found PythonInterp: /opt/conda/envs/py_3.10/bin/python (found suitable version "3.10.16", minimum required is "3.7") 2025-06-05T23:21:05.7010081Z -- Found PythonLibs: /opt/conda/envs/py_3.10/lib/libpython3.10.so 2025-06-05T23:21:05.7010478Z -- Performing Test HAS_FLTO_THIN 2025-06-05T23:21:05.7010800Z -- Performing Test HAS_FLTO_THIN - Success 2025-06-05T23:21:05.7011400Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:21:05.7012044Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:21:05.7012661Z CMake. 2025-06-05T23:21:05.7012788Z 2025-06-05T23:21:05.7013008Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:21:05.7013559Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:21:05.7014103Z to work with policies introduced by or earlier. 2025-06-05T23:21:05.7014373Z 2025-06-05T23:21:05.7014378Z 2025-06-05T23:21:20.5451816Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:21:20.5452700Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:21:20.5453219Z -- Setting Clang compiler options 2025-06-05T23:21:20.5454048Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:21:20.5455158Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:21:20.5455936Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:21:20.5456404Z CMake. 2025-06-05T23:21:20.5456588Z 2025-06-05T23:21:20.5456812Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:21:20.5457371Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:21:20.5458542Z to work with policies introduced by or earlier. 2025-06-05T23:21:20.5458832Z 2025-06-05T23:21:20.5458837Z 2025-06-05T23:21:20.5459227Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:21:20.5459954Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:21:20.5460351Z CMake. 2025-06-05T23:21:20.5460478Z 2025-06-05T23:21:20.5460696Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:21:20.5461232Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:21:20.5461718Z to work with policies introduced by or earlier. 2025-06-05T23:21:20.5461969Z 2025-06-05T23:21:20.5461974Z 2025-06-05T23:21:20.5462107Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:21:20.5462478Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-06-05T23:21:20.5462831Z -- Found Threads: TRUE 2025-06-05T23:21:20.5463394Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:21:20.5464253Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:21:20.5464658Z CMake. 2025-06-05T23:21:20.5464784Z 2025-06-05T23:21:20.5465200Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:21:20.5465826Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:21:20.5466295Z to work with policies introduced by or earlier. 2025-06-05T23:21:20.5466570Z 2025-06-05T23:21:20.5466574Z 2025-06-05T23:21:20.5466710Z -- Resolved buck2 as buck2. 2025-06-05T23:21:20.5466986Z -- Killing buck2 daemon 2025-06-05T23:21:20.5467223Z 'buck2 killall' 2025-06-05T23:21:20.5467471Z -- executorch: Generating source lists 2025-06-05T23:21:20.5468148Z -- executorch: Generating source file list /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/executorch_srcs.cmake 2025-06-05T23:21:20.5469156Z -- executorch: Using sources file /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/executorch_srcs.cmake 2025-06-05T23:21:20.5470174Z '/opt/conda/envs/py_3.10/bin/python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-06-05T23:21:20.5470848Z -- Generating operator lib: 2025-06-05T23:21:20.5471134Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:21:20.5471602Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:21:20.5472018Z -- ROOT_OPS: 2025-06-05T23:21:20.5472388Z -- INCLUDE_ALL_OPS: 2025-06-05T23:21:20.5473705Z Command - /opt/conda/envs/py_3.10/bin/python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/portable/portable_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/portable/functions.yaml" 2025-06-05T23:21:20.5475137Z -- Generating kernel bindings: 2025-06-05T23:21:20.5475424Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:21:20.5475838Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:21:20.5476252Z -- CUSTOM_OPS_YAML: 2025-06-05T23:21:20.5476520Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:21:20.5478427Z Generated files /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/portable/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/portable/portable_ops_lib/Functions.h;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/portable/portable_ops_lib/NativeFunctions.h 2025-06-05T23:21:20.5480359Z -- Generating operator lib: 2025-06-05T23:21:20.5480641Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:21:20.5480922Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:21:20.5481219Z -- DEPS: executorch_core 2025-06-05T23:21:20.5481566Z -- Generating operator lib: 2025-06-05T23:21:20.5481851Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:21:20.5482253Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:21:20.5482678Z -- ROOT_OPS: 2025-06-05T23:21:20.5482905Z -- INCLUDE_ALL_OPS: 2025-06-05T23:21:20.5484211Z Command - /opt/conda/envs/py_3.10/bin/python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/optimized/optimized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/optimized/optimized.yaml" 2025-06-05T23:21:20.5485579Z -- Generating kernel bindings: 2025-06-05T23:21:20.5485865Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:21:20.5486281Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:21:20.5486709Z -- CUSTOM_OPS_YAML: 2025-06-05T23:21:20.5486951Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:21:20.5488896Z Generated files /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/optimized/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/optimized/optimized_ops_lib/Functions.h;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/optimized/optimized_ops_lib/NativeFunctions.h 2025-06-05T23:21:20.5490821Z -- Generating operator lib: 2025-06-05T23:21:20.5491103Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:21:20.5491395Z -- KERNEL_LIBS: optimized_kernels 2025-06-05T23:21:20.5491683Z -- DEPS: executorch_core 2025-06-05T23:21:20.5491959Z -- Merging kernel yaml files: 2025-06-05T23:21:20.5492432Z -- FUNCTIONS_YAML: /pytorch/executorch/configurations/../kernels/optimized/optimized.yaml 2025-06-05T23:21:20.5493143Z -- FALLBACK_YAML: /pytorch/executorch/configurations/../kernels/portable/functions.yaml 2025-06-05T23:21:20.5493865Z -- OUTPUT_DIR: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations 2025-06-05T23:21:20.5494404Z -- Generating operator lib: 2025-06-05T23:21:20.5494704Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:21:20.5495310Z -- OPS_SCHEMA_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-06-05T23:21:20.5495905Z -- ROOT_OPS: 2025-06-05T23:21:20.5496122Z -- INCLUDE_ALL_OPS: 2025-06-05T23:21:20.5497629Z Command - /opt/conda/envs/py_3.10/bin/python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/optimized_native_cpu_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml" 2025-06-05T23:21:20.5499255Z -- Generating kernel bindings: 2025-06-05T23:21:20.5499549Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:21:20.5500174Z -- FUNCTIONS_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-06-05T23:21:20.5500761Z -- CUSTOM_OPS_YAML: 2025-06-05T23:21:20.5501015Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:21:20.5503025Z Generated files /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/optimized_native_cpu_ops_lib/Functions.h;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/optimized_native_cpu_ops_lib/NativeFunctions.h 2025-06-05T23:21:20.5505061Z -- Generating operator lib: 2025-06-05T23:21:20.5505366Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:21:20.5505852Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-06-05T23:21:20.5506242Z -- DEPS: executorch_core 2025-06-05T23:21:20.5506779Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:21:20.5507431Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:21:20.5507847Z CMake. 2025-06-05T23:21:20.5507963Z 2025-06-05T23:21:20.5508184Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:21:20.5508740Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:21:20.5509213Z to work with policies introduced by or earlier. 2025-06-05T23:21:20.5509483Z 2025-06-05T23:21:20.5509487Z 2025-06-05T23:21:20.5509590Z -- Looking for C++ include unistd.h 2025-06-05T23:21:20.5509904Z -- Looking for C++ include unistd.h - found 2025-06-05T23:21:20.5510229Z -- Looking for C++ include stdint.h 2025-06-05T23:21:20.5510553Z -- Looking for C++ include stdint.h - found 2025-06-05T23:21:20.5510870Z -- Looking for C++ include inttypes.h 2025-06-05T23:21:20.5511202Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:21:20.5511531Z -- Looking for C++ include sys/types.h 2025-06-05T23:21:20.5511865Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:21:20.5512191Z -- Looking for C++ include sys/stat.h 2025-06-05T23:21:20.5512518Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:21:20.5512850Z -- Looking for C++ include fnmatch.h 2025-06-05T23:21:20.5513161Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:21:20.5513502Z -- Looking for C++ include stddef.h 2025-06-05T23:21:20.5513808Z -- Looking for C++ include stddef.h - found 2025-06-05T23:21:20.5514133Z -- Check size of uint32_t 2025-06-05T23:21:20.5514401Z -- Check size of uint32_t - done 2025-06-05T23:21:20.5514689Z -- Looking for strtoll 2025-06-05T23:21:20.5514941Z -- Looking for strtoll - found 2025-06-05T23:21:20.5515343Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-06-05T23:21:20.5515813Z -- Found assembler: /opt/cache/bin/cc 2025-06-05T23:21:20.5516153Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-05T23:21:20.5516763Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.16") found components: Interpreter 2025-06-05T23:21:20.5517333Z -- Generating microkernels.cmake 2025-06-05T23:21:20.5517713Z No microkernel found in src/reference/binary-elementwise.cc 2025-06-05T23:21:20.5518131Z No microkernel found in src/reference/packing.cc 2025-06-05T23:21:20.5518548Z No microkernel found in src/reference/unary-elementwise.cc 2025-06-05T23:21:20.5519293Z '/opt/conda/envs/py_3.10/bin/python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-06-05T23:21:20.5520064Z -- MKL_ARCH: None, set to ` intel64` by default 2025-06-05T23:21:21.2511348Z -- MKL_ROOT /opt/conda/envs/py_3.10 2025-06-05T23:21:21.2511997Z -- MKL_LINK: None, set to ` dynamic` by default 2025-06-05T23:21:21.2515941Z -- MKL_INTERFACE_FULL: None, set to ` intel_ilp64` by default 2025-06-05T23:21:21.2517581Z -- MKL_THREADING: None, set to ` intel_thread` by default 2025-06-05T23:21:21.2518296Z -- MKL_MPI: None, set to ` intelmpi` by default 2025-06-05T23:21:21.2519882Z CMake Warning at /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:22 (message): 2025-06-05T23:21:21.2521179Z static library kineto_LIBRARY-NOTFOUND not found. 2025-06-05T23:21:21.2522133Z Call Stack (most recent call first): 2025-06-05T23:21:21.2523830Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:125 (append_torchlib_if_found) 2025-06-05T23:21:21.2525155Z tools/cmake/Utils.cmake:267 (find_package) 2025-06-05T23:21:21.2526165Z CMakeLists.txt:610 (find_package_torch) 2025-06-05T23:21:21.2526548Z 2025-06-05T23:21:21.2526555Z 2025-06-05T23:21:21.2527069Z -- Found Torch: /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/lib/libtorch.so 2025-06-05T23:21:21.2529454Z -- executorch: Using source file list /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/extension/llm/custom_ops/../../../executorch_srcs.cmake 2025-06-05T23:21:21.2531316Z -- Generating operator lib: 2025-06-05T23:21:21.2531826Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:21:21.2532874Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:21:21.2533592Z -- ROOT_OPS: 2025-06-05T23:21:21.2533981Z -- INCLUDE_ALL_OPS: 2025-06-05T23:21:21.2536298Z Command - /opt/conda/envs/py_3.10/bin/python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/quantized/quantized.yaml" 2025-06-05T23:21:21.2538585Z -- Generating kernel bindings: 2025-06-05T23:21:21.2539098Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:21:21.2539608Z -- FUNCTIONS_YAML: 2025-06-05T23:21:21.2540250Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:21:21.2540996Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:21:21.2548953Z Generated files /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/Functions.h;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/NativeFunctions.h;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/RegisterCPUCustomOps.cpp;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/RegisterSchema.cpp;/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_lib/CustomOpsNativeFunctions.h 2025-06-05T23:21:21.2554652Z -- Generating operator lib: 2025-06-05T23:21:21.2554958Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:21:21.2555408Z -- OPS_SCHEMA_YAML: 2025-06-05T23:21:21.2559939Z -- ROOT_OPS: quantized_decomposed::add.out;quantized_decomposed::choose_qparams.Tensor_out;quantized_decomposed::choose_qparams_per_token_asymmetric.out;quantized_decomposed::dequantize_per_channel.out;quantized_decomposed::dequantize_per_tensor.out;quantized_decomposed::dequantize_per_tensor.Tensor_out;quantized_decomposed::dequantize_per_token.out;quantized_decomposed::mixed_linear.out;quantized_decomposed::mixed_mm.out;quantized_decomposed::quantize_per_channel.out;quantized_decomposed::quantize_per_tensor.out;quantized_decomposed::quantize_per_tensor.Tensor_out;quantized_decomposed::quantize_per_token.out 2025-06-05T23:21:21.2565933Z -- INCLUDE_ALL_OPS: 2025-06-05T23:21:21.2572835Z Command - /opt/conda/envs/py_3.10/bin/python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_aot_lib/selected_operators.yaml;--root_ops="quantized_decomposed::add.out;quantized_decomposed::choose_qparams.Tensor_out;quantized_decomposed::choose_qparams_per_token_asymmetric.out;quantized_decomposed::dequantize_per_channel.out;quantized_decomposed::dequantize_per_tensor.out;quantized_decomposed::dequantize_per_tensor.Tensor_out;quantized_decomposed::dequantize_per_token.out;quantized_decomposed::mixed_linear.out;quantized_decomposed::mixed_mm.out;quantized_decomposed::quantize_per_channel.out;quantized_decomposed::quantize_per_tensor.out;quantized_decomposed::quantize_per_tensor.Tensor_out;quantized_decomposed::quantize_per_token.out" 2025-06-05T23:21:21.2579720Z -- Generating kernel bindings: 2025-06-05T23:21:21.2580312Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:21:21.2580860Z -- FUNCTIONS_YAML: 2025-06-05T23:21:21.2581535Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:21:21.2582374Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:21:21.2582920Z -- Generating custom ops aot lib: 2025-06-05T23:21:21.2583654Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:21:21.2584699Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/embeddingxb.cpp 2025-06-05T23:21:21.2586290Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_add.cpp 2025-06-05T23:21:21.2587834Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_choose_qparams.cpp 2025-06-05T23:21:21.2589434Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_dequantize.cpp 2025-06-05T23:21:21.2590990Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding.cpp 2025-06-05T23:21:21.2592473Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding2b.cpp 2025-06-05T23:21:21.2594031Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding4b.cpp 2025-06-05T23:21:21.2595630Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_mixed_linear.cpp 2025-06-05T23:21:21.2597173Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_mixed_mm.cpp 2025-06-05T23:21:21.2598657Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_quantize.cpp 2025-06-05T23:21:21.2600223Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/portable/cpu/util/reduce_util.cpp 2025-06-05T23:21:21.2601836Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../runtime/core/exec_aten/util/tensor_util_aten.cpp 2025-06-05T23:21:21.2602981Z -- Generating operator lib: 2025-06-05T23:21:21.2603502Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:21:21.2604312Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:21:21.2605097Z -- ROOT_OPS: 2025-06-05T23:21:21.2605506Z -- INCLUDE_ALL_OPS: 2025-06-05T23:21:21.2608113Z Command - /opt/conda/envs/py_3.10/bin/python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/quantized_ops_pybind_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/quantized/quantized.yaml" 2025-06-05T23:21:21.2610844Z -- Generating kernel bindings: 2025-06-05T23:21:21.2611411Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:21:21.2611955Z -- FUNCTIONS_YAML: 2025-06-05T23:21:21.2612653Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:21:21.2613473Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:21:21.2614250Z -- Generating operator lib: 2025-06-05T23:21:21.2614793Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:21:21.2615409Z -- KERNEL_LIBS: quantized_pybind_kernels_lib 2025-06-05T23:21:21.2616015Z -- DEPS: portable_lib 2025-06-05T23:21:21.2616485Z -- Generating operator lib: 2025-06-05T23:21:21.2617001Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:21:21.2617528Z -- KERNEL_LIBS: quantized_kernels 2025-06-05T23:21:21.2618086Z -- DEPS: executorch_core 2025-06-05T23:21:21.2618579Z -- Configuring done (16.6s) 2025-06-05T23:21:21.2619085Z -- Generating done (0.4s) 2025-06-05T23:21:21.2620056Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:21:21.2622467Z cmake --build /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out -j7 --config=Release --target portable_lib --target executorchcoreml --target custom_ops_aot_lib --target quantized_ops_aot_lib 2025-06-05T23:21:21.2624525Z [ 0%] Creating directories for 'flatcc_external_project' 2025-06-05T23:21:21.2625335Z [ 0%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:21:21.2626669Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:21:21.2628545Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:21:21.2630163Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:21:21.2631607Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:21:21.2633083Z [ 0%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-06-05T23:21:21.2634410Z [ 0%] No download step for 'flatcc_external_project' 2025-06-05T23:21:21.2635097Z [ 0%] No download step for 'flatbuffers_external_project' 2025-06-05T23:21:21.2635840Z [ 0%] No update step for 'flatcc_external_project' 2025-06-05T23:21:21.2636542Z [ 0%] No update step for 'flatbuffers_external_project' 2025-06-05T23:21:21.2637266Z [ 0%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:21:21.2637949Z [ 0%] No patch step for 'flatcc_external_project' 2025-06-05T23:21:21.2638688Z [ 1%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:21:21.2639582Z [ 1%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:21:21.2640308Z CMake Warning: 2025-06-05T23:21:21.2640848Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:21:21.2641370Z 2025-06-05T23:21:21.2641526Z CMake Warning: 2025-06-05T23:21:22.3958802Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:21:22.3959374Z 2025-06-05T23:21:22.3959430Z 2025-06-05T23:21:22.3959440Z 2025-06-05T23:21:22.3959821Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:21:22.3960422Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:21:22.3960840Z CMake. 2025-06-05T23:21:22.3960953Z 2025-06-05T23:21:22.3961171Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:21:22.3961735Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:21:22.3962207Z to work with policies introduced by or earlier. 2025-06-05T23:21:22.3962470Z 2025-06-05T23:21:22.3962475Z 2025-06-05T23:21:22.3962606Z fatal: No names found, cannot describe anything. 2025-06-05T23:21:22.3962980Z CMake Warning at CMake/Version.cmake:32 (message): 2025-06-05T23:21:22.3963348Z git describe failed with exit code: 128 2025-06-05T23:21:22.3963562Z 2025-06-05T23:21:22.3963747Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-06-05T23:21:22.3964115Z Call Stack (most recent call first): 2025-06-05T23:21:22.3964426Z CMakeLists.txt:5 (include) 2025-06-05T23:21:22.3964890Z 2025-06-05T23:21:22.3964894Z 2025-06-05T23:21:22.3965178Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:21:22.3965771Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-06-05T23:21:22.3966635Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:21:22.3967246Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:21:22.3967805Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:21:22.3968328Z -- Detecting C compiler ABI info 2025-06-05T23:21:22.3968907Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:21:22.3969718Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:21:22.3970469Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:21:22.3971034Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:21:22.3971376Z -- Detecting CXX compiler ABI info 2025-06-05T23:21:22.3971956Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:21:22.3972890Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:21:22.3973474Z [ 2%] Linking C static library libpthreadpool.a 2025-06-05T23:21:22.3973805Z [ 2%] Built target pthreadpool 2025-06-05T23:21:22.3974341Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:21:22.3974916Z -- Detecting C compiler ABI info - done 2025-06-05T23:21:22.3975295Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:21:22.3975761Z -- Detecting C compile features 2025-06-05T23:21:22.3976109Z -- Detecting C compile features - done 2025-06-05T23:21:22.3976491Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:21:22.3976933Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:21:22.3977323Z -- Setting Clang compiler options 2025-06-05T23:21:22.3978023Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:21:22.3978722Z -- Configuring done (0.4s) 2025-06-05T23:21:22.3979466Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-f16c-c8.c.o 2025-06-05T23:21:22.3980896Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-06-05T23:21:22.3982204Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:21:22.3983103Z -- Generating done (0.0s) 2025-06-05T23:21:22.3984451Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/src/flatcc_external_project-build 2025-06-05T23:21:22.3985590Z [ 2%] Performing build step for 'flatcc_external_project' 2025-06-05T23:21:22.3985983Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:21:22.3986523Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:21:22.3986967Z -- Detecting CXX compile features 2025-06-05T23:21:22.3987370Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:21:22.3987809Z -- Detecting CXX compile features - done 2025-06-05T23:21:22.3988115Z -- Looking for strtof_l 2025-06-05T23:21:22.3988692Z [ 2%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-06-05T23:21:22.3989537Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:21:22.3990527Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:21:22.3991184Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:21:22.3991903Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-06-05T23:21:22.3992807Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-06-05T23:21:22.3993510Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:21:22.3994145Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:21:22.3995131Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-f16c-c8.c.o 2025-06-05T23:21:22.3996490Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3-acc2.c.o 2025-06-05T23:21:22.3997567Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-06-05T23:21:22.3998260Z [ 12%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:21:22.3999198Z -- Looking for strtof_l - found 2025-06-05T23:21:22.3999494Z -- Looking for strtoull_l 2025-06-05T23:21:22.4000031Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:21:22.4000900Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-06-05T23:21:22.4001777Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:21:22.4002504Z [ 15%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:21:22.4003139Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-06-05T23:21:22.4003950Z [ 3%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-06-05T23:21:22.4005012Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:21:22.4006108Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:21:22.4006721Z -- Looking for strtoull_l - found 2025-06-05T23:21:22.4007020Z -- Looking for realpath 2025-06-05T23:21:22.4007291Z [ 3%] Built target logging 2025-06-05T23:21:22.4008054Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:21:22.4008770Z [ 18%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:21:22.4009484Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:21:22.4010294Z [ 21%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:21:22.4011235Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3.c.o 2025-06-05T23:21:22.4012506Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3.c.o 2025-06-05T23:21:22.4013277Z [ 21%] Built target flatccrt 2025-06-05T23:21:22.4013819Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:21:22.4014635Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:21:22.4015129Z -- Looking for realpath - found 2025-06-05T23:21:22.4015610Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:21:22.4015958Z -- Configuring done (1.0s) 2025-06-05T23:21:22.4016417Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:21:22.4016918Z -- Generating done (0.0s) 2025-06-05T23:21:22.4017786Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/src/flatbuffers_external_project-build 2025-06-05T23:21:22.4018767Z [ 4%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:21:22.4019417Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-06-05T23:21:22.4020097Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:21:22.4020768Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:21:22.4021591Z [ 4%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-06-05T23:21:22.4022419Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:21:22.4023510Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-u16.c.o 2025-06-05T23:21:22.4024447Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:21:22.4025180Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-06-05T23:21:22.4026054Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-06-05T23:21:23.6653246Z [ 4%] Built target indirection 2025-06-05T23:21:23.6654379Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-06-05T23:21:23.6656222Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-u16.c.o 2025-06-05T23:21:23.6658200Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:21:23.6660153Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-u16.c.o 2025-06-05T23:21:23.6661852Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:21:23.6663582Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-06-05T23:21:23.6665338Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-06-05T23:21:23.6666420Z [ 4%] Linking C static library libcpuinfo.a 2025-06-05T23:21:23.6666987Z [ 4%] Built target cpuinfo 2025-06-05T23:21:23.6668298Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-06-05T23:21:23.6669557Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:21:23.6670469Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:21:23.6671678Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:21:23.6672886Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:21:23.6674171Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-06-05T23:21:23.6675551Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-06-05T23:21:23.6677199Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-u32.c.o 2025-06-05T23:21:23.6679588Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-u16.c.o 2025-06-05T23:21:23.6680870Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:21:23.6682381Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-gemm/gen/f16-f32acc-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:21:23.6683835Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-gemm/gen/f16-f32acc-gemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:21:23.6684935Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-06-05T23:21:23.6685601Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:21:23.6686101Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:21:23.6686578Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:21:23.6687213Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-06-05T23:21:23.6688159Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-06-05T23:21:23.6688839Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:21:23.6689498Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-06-05T23:21:23.6690764Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:21:23.6692192Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:21:23.6693565Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-avx512skx-c64.c.o 2025-06-05T23:21:23.6694498Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:21:23.6695158Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-06-05T23:21:23.6695820Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:21:23.6696334Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:21:23.6696821Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:21:23.6697328Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:21:23.6697822Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:21:23.6698477Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-06-05T23:21:23.6699529Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-f16c-c32.c.o 2025-06-05T23:21:23.6700433Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:21:23.6701104Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-06-05T23:21:23.6701797Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:21:23.6702496Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-06-05T23:21:23.6703299Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:21:23.6703975Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-06-05T23:21:23.6705132Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-avx512skx-u64-acc4.c.o 2025-06-05T23:21:23.6706488Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-f16c-u32-acc4.c.o 2025-06-05T23:21:23.6707430Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:21:23.6708045Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:21:23.6708635Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:21:23.6709342Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-06-05T23:21:23.6710000Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:21:23.6710537Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:21:23.6711064Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:21:23.6711892Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-fma3-c8.c.o 2025-06-05T23:21:23.6720269Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:21:23.6720977Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-06-05T23:21:23.6721704Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:21:23.6722470Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-06-05T23:21:23.6723233Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:21:23.6724170Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-f16c-c8.c.o 2025-06-05T23:21:23.6724981Z [ 7%] Linking CXX static library libeigen_blas.a 2025-06-05T23:21:23.6725458Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:21:23.6725923Z [ 7%] Built target eigen_blas 2025-06-05T23:21:23.6726543Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-06-05T23:21:23.6727461Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-06-05T23:21:23.6728352Z [ 7%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-06-05T23:21:23.6729039Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:21:23.6729928Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-avx2-c8.c.o 2025-06-05T23:21:23.6731174Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-avx2-c8.c.o 2025-06-05T23:21:23.6732078Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:21:23.6732555Z [ 7%] Built target normalization 2025-06-05T23:21:23.6733091Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-06-05T23:21:23.6733804Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:21:23.6734275Z [ 7%] Built target microparams-init 2025-06-05T23:21:23.6735038Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:21:23.6736011Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-06-05T23:21:23.9227146Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:21:23.9228317Z [ 7%] Built target packing 2025-06-05T23:21:23.9229320Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-06-05T23:21:23.9230339Z [ 7%] Built target allocator 2025-06-05T23:21:23.9232012Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.o 2025-06-05T23:21:23.9234603Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/f16-rmax-f16c-u32.c.o 2025-06-05T23:21:23.9237039Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-avx512skx-u64-acc4.c.o 2025-06-05T23:21:23.9238526Z [ 93%] Built target flatcc 2025-06-05T23:21:23.9239243Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:21:23.9240229Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:21:23.9241575Z [ 8%] Built target cache 2025-06-05T23:21:23.9242189Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:21:23.9243089Z [ 8%] Built target datatype 2025-06-05T23:21:23.9243815Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:21:23.9244813Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:21:23.9245864Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:21:23.9246737Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:21:23.9247441Z [100%] Built target flatcc_cli 2025-06-05T23:21:23.9248858Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-06-05T23:21:23.9250463Z [ 8%] Performing install step for 'flatcc_external_project' 2025-06-05T23:21:23.9251162Z [ 21%] Built target flatccrt 2025-06-05T23:21:23.9251664Z [ 93%] Built target flatcc 2025-06-05T23:21:23.9252145Z [100%] Built target flatcc_cli 2025-06-05T23:21:23.9252653Z Install the project... 2025-06-05T23:21:23.9253141Z -- Install configuration: "" 2025-06-05T23:21:23.9254456Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:21:23.9256677Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc.h 2025-06-05T23:21:23.9259078Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_accessors.h 2025-06-05T23:21:23.9261425Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_alloc.h 2025-06-05T23:21:23.9263845Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_assert.h 2025-06-05T23:21:23.9269004Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_builder.h 2025-06-05T23:21:23.9271468Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_emitter.h 2025-06-05T23:21:23.9273742Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_endian.h 2025-06-05T23:21:23.9276138Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_epilogue.h 2025-06-05T23:21:23.9278829Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_flatbuffers.h 2025-06-05T23:21:23.9281276Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_identifier.h 2025-06-05T23:21:23.9283711Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_iov.h 2025-06-05T23:21:23.9286136Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_parser.h 2025-06-05T23:21:23.9288581Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_printer.h 2025-06-05T23:21:23.9291012Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_portable.h 2025-06-05T23:21:23.9293462Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_prologue.h 2025-06-05T23:21:23.9296082Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_refmap.h 2025-06-05T23:21:23.9298519Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_rtconfig.h 2025-06-05T23:21:23.9300954Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_types.h 2025-06-05T23:21:23.9303401Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_unaligned.h 2025-06-05T23:21:23.9305947Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_verifier.h 2025-06-05T23:21:23.9308410Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_version.h 2025-06-05T23:21:23.9310768Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable 2025-06-05T23:21:23.9313064Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/LICENSE 2025-06-05T23:21:23.9315470Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/README.md 2025-06-05T23:21:23.9317830Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_math.h 2025-06-05T23:21:23.9320320Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_parse.h 2025-06-05T23:21:23.9322762Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_print.h 2025-06-05T23:21:23.9325188Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include 2025-06-05T23:21:23.9327656Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/README 2025-06-05T23:21:23.9330161Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux 2025-06-05T23:21:23.9332725Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux/endian.h 2025-06-05T23:21:23.9335290Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std 2025-06-05T23:21:23.9337835Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/inttypes.h 2025-06-05T23:21:23.9340520Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdalign.h 2025-06-05T23:21:23.9343222Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdbool.h 2025-06-05T23:21:23.9345990Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdint.h 2025-06-05T23:21:23.9348606Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/paligned_alloc.h 2025-06-05T23:21:23.9353052Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pattributes.h 2025-06-05T23:21:23.9355464Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pbase64.h 2025-06-05T23:21:23.9357892Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pcrt.h 2025-06-05T23:21:24.2697056Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic.h 2025-06-05T23:21:24.2699517Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_pop.h 2025-06-05T23:21:24.2701795Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_push.h 2025-06-05T23:21:24.2704077Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian.h 2025-06-05T23:21:24.2706451Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian_detect.h 2025-06-05T23:21:24.2708659Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinline.h 2025-06-05T23:21:24.2710809Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinttypes.h 2025-06-05T23:21:24.2713110Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pmemaccess.h 2025-06-05T23:21:24.2715366Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable.h 2025-06-05T23:21:24.2717717Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable_basic.h 2025-06-05T23:21:24.2720056Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparsefp.h 2025-06-05T23:21:24.2722340Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparseint.h 2025-06-05T23:21:24.2724806Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintfp.h 2025-06-05T23:21:24.2727111Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintint.h 2025-06-05T23:21:24.2729408Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/prestrict.h 2025-06-05T23:21:24.2731753Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert.h 2025-06-05T23:21:24.2734138Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert_scope.h 2025-06-05T23:21:24.2736408Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdalign.h 2025-06-05T23:21:24.2738620Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdbool.h 2025-06-05T23:21:24.2741075Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdint.h 2025-06-05T23:21:24.2743342Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/punaligned.h 2025-06-05T23:21:24.2745713Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pversion.h 2025-06-05T23:21:24.2747945Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pwarnings.h 2025-06-05T23:21:24.2750111Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection 2025-06-05T23:21:24.2752142Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/README 2025-06-05T23:21:24.2755480Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_builder.h 2025-06-05T23:21:24.2758058Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_reader.h 2025-06-05T23:21:24.2760584Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_builder.h 2025-06-05T23:21:24.2762996Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_reader.h 2025-06-05T23:21:24.2765722Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_verifier.h 2025-06-05T23:21:24.2767977Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support 2025-06-05T23:21:24.2770060Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support/README 2025-06-05T23:21:24.2772173Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support/cdump.h 2025-06-05T23:21:24.2774401Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support/elapsed.h 2025-06-05T23:21:24.2776980Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support/hexdump.h 2025-06-05T23:21:24.2779234Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc/support/readfile.h 2025-06-05T23:21:24.2781323Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/lib/libflatccrt.a 2025-06-05T23:21:24.2783107Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/lib/libflatcc.a 2025-06-05T23:21:24.2784940Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:21:24.2786317Z [ 8%] Completed 'flatcc_external_project' 2025-06-05T23:21:24.2786910Z [ 8%] Built target flatcc_external_project 2025-06-05T23:21:24.2787847Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-06-05T23:21:24.2789680Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-avx512skx-u64-acc4.c.o 2025-06-05T23:21:24.2791539Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:21:24.2793218Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-06-05T23:21:24.2794969Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:21:24.2795787Z [ 8%] Built target memory 2025-06-05T23:21:24.2797133Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-f16c-u16.c.o 2025-06-05T23:21:24.2799195Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-f16c-u16.c.o 2025-06-05T23:21:24.2800634Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:21:24.2801983Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-f16c-u8.c.o 2025-06-05T23:21:24.2803804Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-f16c-u8.c.o 2025-06-05T23:21:24.2805675Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-06-05T23:21:24.2807149Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-06-05T23:21:24.2808085Z [ 8%] Built target microkernel-utils 2025-06-05T23:21:24.2808971Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:21:24.2810533Z [ 8%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-06-05T23:21:24.2812582Z [ 8%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-06-05T23:21:24.2814053Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:21:25.6264857Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-f16c-u16.c.o 2025-06-05T23:21:25.6266924Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-06-05T23:21:25.6267994Z [ 8%] Built target mutex 2025-06-05T23:21:25.6268966Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-06-05T23:21:25.6270764Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-f16c-u16.c.o 2025-06-05T23:21:25.6272357Z [ 8%] Built target operator-utils 2025-06-05T23:21:25.6273026Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:21:25.6273877Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:21:25.6274568Z [ 8%] Built target reference-ukernels 2025-06-05T23:21:25.6275443Z [ 8%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:21:25.6276953Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-06-05T23:21:25.6278155Z [ 8%] Built target operator-run 2025-06-05T23:21:25.6279171Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-06-05T23:21:25.6280913Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-f16c-u16.c.o 2025-06-05T23:21:25.6282412Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:21:25.6283410Z [ 8%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:21:25.6284301Z [ 8%] Built target hardware-config 2025-06-05T23:21:25.6285233Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:21:25.6286641Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-06-05T23:21:25.6288240Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:21:25.6289509Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:21:25.6291217Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-f16c-u16.c.o 2025-06-05T23:21:25.6293189Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-f16c-u16.c.o 2025-06-05T23:21:25.6295040Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-06-05T23:21:25.6296753Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-06-05T23:21:25.6298296Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:21:25.6299690Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:21:25.6300882Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:21:25.6301878Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:21:25.6302943Z [ 9%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:21:25.6303961Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:21:25.6304980Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:21:25.6305875Z [ 9%] Built target flatccrt 2025-06-05T23:21:25.6307122Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-06-05T23:21:25.6309972Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-06-05T23:21:25.6312019Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-f16c-u16.c.o 2025-06-05T23:21:25.6313972Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-f16c-u16.c.o 2025-06-05T23:21:25.6315937Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-f16c-u16.c.o 2025-06-05T23:21:25.6317852Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-06-05T23:21:25.6319599Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-06-05T23:21:25.6321310Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-06-05T23:21:25.6323067Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-06-05T23:21:25.6324500Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:21:25.6325597Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:21:25.6326660Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:21:25.6327739Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:21:25.6329274Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-f16c-u8.c.o 2025-06-05T23:21:25.6331484Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-06-05T23:21:25.6333549Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-f16c-u16.c.o 2025-06-05T23:21:25.6335779Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-f16c-u16.c.o 2025-06-05T23:21:25.6337362Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:21:25.6338902Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-06-05T23:21:25.6340460Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:21:25.6341974Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-06-05T23:21:25.6343756Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-06-05T23:21:25.6345505Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-06-05T23:21:25.6347596Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-f16c-u16.c.o 2025-06-05T23:21:25.6349840Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-f16c-u16.c.o 2025-06-05T23:21:25.6351944Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-06-05T23:21:25.6354019Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-f16c-u16.c.o 2025-06-05T23:21:25.6356263Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-f16c-u16.c.o 2025-06-05T23:21:25.6358421Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-06-05T23:21:25.6359744Z [100%] Linking CXX executable flatc 2025-06-05T23:21:25.6360919Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-06-05T23:21:25.6362919Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-06-05T23:21:25.6367548Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-f16c-u16.c.o 2025-06-05T23:21:25.6369841Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-u16.c.o 2025-06-05T23:21:25.6372116Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-f16c-u16.c.o 2025-06-05T23:21:25.6374389Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-u16.c.o 2025-06-05T23:21:25.6376766Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-fma3-2x.c.o 2025-06-05T23:21:25.6378908Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-06-05T23:21:25.6380709Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-06-05T23:21:25.6382729Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-f16c-u16.c.o 2025-06-05T23:21:25.6385093Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-f16c-u16.c.o 2025-06-05T23:21:26.3576750Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-f16c-u16.c.o 2025-06-05T23:21:26.3578109Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-f16c-u16.c.o 2025-06-05T23:21:26.3579453Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-06-05T23:21:26.3580597Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-f16c-rsqrt-u32.c.o 2025-06-05T23:21:26.3582013Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-06-05T23:21:26.3583125Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-06-05T23:21:26.3584537Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.o 2025-06-05T23:21:26.3586023Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-f16c-rsqrt-u32.c.o 2025-06-05T23:21:26.3587501Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u72.c.o 2025-06-05T23:21:26.3589175Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-fma3-polynomial-p19h9t2-u32.c.o 2025-06-05T23:21:26.3590518Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-sse2-u16.c.o 2025-06-05T23:21:26.3591377Z [ 14%] Built target operators 2025-06-05T23:21:26.3591956Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-06-05T23:21:26.3592995Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-06-05T23:21:26.3593878Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-06-05T23:21:26.3594841Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-06-05T23:21:26.3595975Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-06-05T23:21:26.3597416Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-sse2-u16.c.o 2025-06-05T23:21:26.3598665Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-06-05T23:21:26.3599923Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-06-05T23:21:26.3601029Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-f16c-u16.c.o 2025-06-05T23:21:26.3602508Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2025-06-05T23:21:26.3603880Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-06-05T23:21:26.3604983Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-06-05T23:21:26.3606319Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-sse2-c4.c.o 2025-06-05T23:21:26.3607876Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-06-05T23:21:26.3609302Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-sse2-c4.c.o 2025-06-05T23:21:26.3610861Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-06-05T23:21:26.3612397Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-06-05T23:21:26.3613451Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-06-05T23:21:26.3614499Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-06-05T23:21:26.3615580Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-06-05T23:21:26.3616739Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-sse2-c4.c.o 2025-06-05T23:21:26.3617966Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:21:26.3618734Z [100%] Built target flatc 2025-06-05T23:21:26.3619461Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:21:26.3620316Z [ 17%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:21:26.3621169Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:21:26.3622311Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-06-05T23:21:26.3623278Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-06-05T23:21:26.3624336Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-sse-c4.c.o 2025-06-05T23:21:26.3625490Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-06-05T23:21:26.3626263Z [100%] Built target flatc 2025-06-05T23:21:26.3626536Z Install the project... 2025-06-05T23:21:26.3626795Z -- Install configuration: "" 2025-06-05T23:21:26.3627651Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:21:26.3628894Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/allocator.h 2025-06-05T23:21:26.3630166Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/array.h 2025-06-05T23:21:26.3631406Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/base.h 2025-06-05T23:21:26.3632634Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer.h 2025-06-05T23:21:26.3633899Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer_ref.h 2025-06-05T23:21:26.3635205Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generator.h 2025-06-05T23:21:26.3636952Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generators.h 2025-06-05T23:21:26.3638300Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/default_allocator.h 2025-06-05T23:21:26.3639641Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/detached_buffer.h 2025-06-05T23:21:26.3640938Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/file_manager.h 2025-06-05T23:21:26.3642280Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffer_builder.h 2025-06-05T23:21:26.3643922Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffers.h 2025-06-05T23:21:26.3645250Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatc.h 2025-06-05T23:21:26.3646532Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flex_flat_util.h 2025-06-05T23:21:26.3647827Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flexbuffers.h 2025-06-05T23:21:26.3649195Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/grpc.h 2025-06-05T23:21:27.1029781Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/hash.h 2025-06-05T23:21:27.1032211Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/idl.h 2025-06-05T23:21:27.1034701Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/minireflect.h 2025-06-05T23:21:27.1037158Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch 2025-06-05T23:21:27.1039709Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/flatc_pch.h 2025-06-05T23:21:27.1042400Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/pch.h 2025-06-05T23:21:27.1044899Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection.h 2025-06-05T23:21:27.1047525Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection_generated.h 2025-06-05T23:21:27.1050065Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/registry.h 2025-06-05T23:21:27.1052628Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/stl_emulation.h 2025-06-05T23:21:27.1055807Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/string.h 2025-06-05T23:21:27.1058317Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/struct.h 2025-06-05T23:21:27.1060983Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/table.h 2025-06-05T23:21:27.1063383Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/util.h 2025-06-05T23:21:27.1067027Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector.h 2025-06-05T23:21:27.1070234Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector_downward.h 2025-06-05T23:21:27.1073338Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/verifier.h 2025-06-05T23:21:27.1076713Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config.cmake 2025-06-05T23:21:27.1080060Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/BuildFlatBuffers.cmake 2025-06-05T23:21:27.1083336Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config-version.cmake 2025-06-05T23:21:27.1085941Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:21:27.1088350Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets.cmake 2025-06-05T23:21:27.1091166Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake 2025-06-05T23:21:27.1092968Z [ 17%] Completed 'flatbuffers_external_project' 2025-06-05T23:21:27.1094644Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-06-05T23:21:27.1096325Z [ 17%] Built target flatbuffers_external_project 2025-06-05T23:21:27.1097555Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-06-05T23:21:27.1099760Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.o 2025-06-05T23:21:27.1102565Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f.c.o 2025-06-05T23:21:27.1105050Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-06-05T23:21:27.1107628Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-06-05T23:21:27.1109802Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-06-05T23:21:27.1111510Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-06-05T23:21:27.1112635Z [ 17%] Generating common_schema headers 2025-06-05T23:21:27.1113206Z [ 18%] Generating xnnpack_schema headers 2025-06-05T23:21:27.1113755Z [ 18%] Built target common_schema 2025-06-05T23:21:27.1114889Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-06-05T23:21:27.1116123Z [ 18%] Built target xnnpack_schema 2025-06-05T23:21:27.1116691Z [ 18%] Generating program_schema headers 2025-06-05T23:21:27.1118353Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-avx.c.o 2025-06-05T23:21:27.1119871Z [ 18%] Built target program_schema 2025-06-05T23:21:27.1121304Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-fma3.c.o 2025-06-05T23:21:27.1123149Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:21:27.1124405Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:21:27.1125870Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:21:27.1127966Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-sse.c.o 2025-06-05T23:21:27.1129936Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:21:27.1132050Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-06-05T23:21:27.1134108Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:21:27.1135938Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-06-05T23:21:27.1137837Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-06-05T23:21:27.1139809Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx.c.o 2025-06-05T23:21:27.1142235Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx512f.c.o 2025-06-05T23:21:27.1144032Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:21:27.1145205Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:21:27.1146534Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:21:27.1148031Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-06-05T23:21:27.1149847Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-06-05T23:21:27.1151811Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-06-05T23:21:27.1153922Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:21:27.1155828Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:21:27.1157161Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:21:27.1158485Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:21:27.1160223Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-06-05T23:21:28.4192152Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:21:28.4194248Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-06-05T23:21:28.4196377Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-06-05T23:21:28.4198249Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:21:28.4200200Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-06-05T23:21:28.4202322Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-06-05T23:21:28.4203996Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:21:28.4205580Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-06-05T23:21:28.4207273Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-06-05T23:21:28.4208847Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-sse.c.o 2025-06-05T23:21:28.4210880Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx.c.o 2025-06-05T23:21:28.4212587Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:21:28.4214050Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-06-05T23:21:28.4215555Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-06-05T23:21:28.4216851Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:21:28.4218099Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:21:28.4219918Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx512f.c.o 2025-06-05T23:21:28.4222299Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-fma3.c.o 2025-06-05T23:21:28.4224737Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-06-05T23:21:28.4226728Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:21:28.4227981Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:21:28.4228893Z [ 22%] Built target subgraph 2025-06-05T23:21:28.4229715Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:21:28.4231280Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:21:28.4233167Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-06-05T23:21:28.4235554Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-sse.c.o 2025-06-05T23:21:28.4238080Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.o 2025-06-05T23:21:28.4240695Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.o 2025-06-05T23:21:28.4243207Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.o 2025-06-05T23:21:28.4245710Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.o 2025-06-05T23:21:28.4248230Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx.c.o 2025-06-05T23:21:28.4250630Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx512f.c.o 2025-06-05T23:21:28.4252237Z [ 22%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:21:28.4252914Z [ 22%] Built target executorch_core 2025-06-05T23:21:28.4253823Z [ 22%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:21:28.4255089Z [ 23%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:21:28.4256373Z [ 23%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:21:28.4258263Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-fma3.c.o 2025-06-05T23:21:28.4260677Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-06-05T23:21:28.4263105Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-06-05T23:21:28.4264950Z [ 24%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-06-05T23:21:28.4266529Z [ 24%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-06-05T23:21:28.4268119Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:21:28.4269916Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:21:28.4271672Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:21:28.4273730Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-sse.c.o 2025-06-05T23:21:28.4275264Z [ 24%] Linking CXX static library libexecutorch.a 2025-06-05T23:21:28.4275848Z [ 24%] Built target executorch 2025-06-05T23:21:28.4276925Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:21:28.4278645Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:21:28.4280031Z [ 25%] Linking CXX static library libextension_tensor.a 2025-06-05T23:21:28.4282086Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:21:28.4284365Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:21:28.4286011Z [ 25%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:21:28.4287059Z [ 25%] Built target extension_tensor 2025-06-05T23:21:28.4288153Z [ 25%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:21:28.4289807Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:21:28.4291429Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:21:28.4293658Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o 2025-06-05T23:21:28.4296502Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.o 2025-06-05T23:21:28.4299479Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.o 2025-06-05T23:21:28.4301743Z [ 25%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:21:28.4303356Z [ 25%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:21:28.4305033Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:21:28.4306839Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:21:28.4308454Z [ 25%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-06-05T23:21:28.4310666Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o 2025-06-05T23:21:28.4312970Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:21:28.4314675Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:21:28.4315893Z [ 25%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:21:28.4316576Z [ 25%] Built target extension_threadpool 2025-06-05T23:21:30.1200496Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:21:30.1202858Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:21:30.1205159Z [ 25%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-06-05T23:21:30.1207410Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.o 2025-06-05T23:21:30.1210234Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:21:30.1211964Z [ 25%] Generating etdump headers 2025-06-05T23:21:30.1213029Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:21:30.1214462Z [ 25%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/etdump_flatcc.cpp.o 2025-06-05T23:21:30.1215734Z [ 25%] Linking CXX static library libextension_data_loader.a 2025-06-05T23:21:30.1216404Z [ 25%] Built target extension_data_loader 2025-06-05T23:21:30.1218215Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:21:30.1221005Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-4x4.c.o 2025-06-05T23:21:30.1223744Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:21:30.1226846Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:21:30.1229695Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4.c.o 2025-06-05T23:21:30.1231868Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:21:30.1233714Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:21:30.1235095Z [ 27%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/emitter.cpp.o 2025-06-05T23:21:30.1235956Z [ 27%] Generating bundled_program headers 2025-06-05T23:21:30.1237038Z [ 27%] Building CXX object devtools/bundled_program/CMakeFiles/bundled_program.dir/bundled_program.cpp.o 2025-06-05T23:21:30.1238948Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-u24.c.o 2025-06-05T23:21:30.1240702Z [ 27%] Building CXX object CMakeFiles/util.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:21:30.1242084Z [ 27%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/buffer_data_sink.cpp.o 2025-06-05T23:21:30.1244034Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-u16.c.o 2025-06-05T23:21:30.1246376Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-u16.c.o 2025-06-05T23:21:30.1248754Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-06-05T23:21:30.1250851Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:21:30.1252314Z [ 27%] Building CXX object CMakeFiles/util.dir/extension/aten_util/aten_bridge.cpp.o 2025-06-05T23:21:30.1253249Z [ 27%] Linking CXX static library libbundled_program.a 2025-06-05T23:21:30.1254859Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-06-05T23:21:30.1256375Z [ 27%] Built target bundled_program 2025-06-05T23:21:30.1257544Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:21:30.1259336Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:21:30.1260940Z [ 28%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/file_data_sink.cpp.o 2025-06-05T23:21:30.1262818Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-u16.c.o 2025-06-05T23:21:30.1265317Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-u8.c.o 2025-06-05T23:21:30.1267092Z [ 28%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:21:30.1267812Z [ 28%] Built target kernels_util_all_deps 2025-06-05T23:21:30.1268774Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-06-05T23:21:30.1270080Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-06-05T23:21:30.1271967Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:21:30.1273510Z [ 28%] Linking CXX static library libetdump.a 2025-06-05T23:21:30.1274097Z [ 28%] Built target etdump 2025-06-05T23:21:30.1275573Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:21:30.1277645Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:21:30.1279341Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:21:30.1280889Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:21:30.1282622Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:21:30.1284704Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:21:30.1286307Z [ 29%] Linking CXX static library libcpublas.a 2025-06-05T23:21:30.1286901Z [ 29%] Built target cpublas 2025-06-05T23:21:30.1288387Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:21:30.1290407Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-06-05T23:21:30.1291496Z [ 29%] Linking CXX static library libutil.a 2025-06-05T23:21:30.1292087Z [ 29%] Built target util 2025-06-05T23:21:30.1293420Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:21:30.1295759Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-06-05T23:21:30.1297682Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:21:30.1299580Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-06-05T23:21:30.1301494Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:21:30.1303159Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:21:30.1304792Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:21:30.1306830Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse-load1.c.o 2025-06-05T23:21:30.1308755Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:21:30.1310261Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:21:30.1311725Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:21:30.1313579Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-06-05T23:21:30.1315851Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-06-05T23:21:30.1317908Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:21:30.1319524Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:21:30.1321105Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:21:30.1322748Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:21:30.1324417Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:21:30.1326409Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-06-05T23:21:33.3248767Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:21:33.3250796Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:21:33.3252935Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-06-05T23:21:33.3254846Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:21:33.3256730Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-06-05T23:21:33.3258550Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:21:33.3259981Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:21:33.3261418Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-06-05T23:21:33.3263335Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2c4-minmax-sse.c.o 2025-06-05T23:21:33.3265470Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:21:33.3267467Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:21:33.3269773Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-06-05T23:21:33.3271683Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-06-05T23:21:33.3273119Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:21:33.3274920Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-06-05T23:21:33.3276730Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:21:33.3278270Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:21:33.3280314Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse-load1.c.o 2025-06-05T23:21:33.3282773Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:21:33.3285291Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-fma3-broadcast.c.o 2025-06-05T23:21:33.3287304Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:21:33.3289093Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:21:33.3291258Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-7x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:21:33.3293866Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-06-05T23:21:33.3296343Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-sse-p8.c.o 2025-06-05T23:21:33.3298694Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-06-05T23:21:33.3300691Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:21:33.3302268Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:21:33.3303704Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-06-05T23:21:33.3305338Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:21:33.3307383Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-sse-c8.c.o 2025-06-05T23:21:33.3309310Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:21:33.3311374Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:21:33.3313955Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:21:33.3316501Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:21:33.3318622Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:21:33.3320222Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:21:33.3322345Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:21:33.3324391Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:21:33.3325857Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:21:33.3327804Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:21:33.3329761Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:21:33.3331164Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:21:33.3333016Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-06-05T23:21:33.3335102Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:21:33.3336692Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:21:33.3338596Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-06-05T23:21:33.3340960Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-load1.c.o 2025-06-05T23:21:33.3342905Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:21:33.3344557Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:21:33.3346554Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-06-05T23:21:33.3348861Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-06-05T23:21:33.3350770Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:21:33.3352600Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-06-05T23:21:33.3355012Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:21:33.3357498Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-06-05T23:21:33.3359542Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:21:33.3361262Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:21:33.3363223Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-06-05T23:21:33.3365951Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2c4-minmax-sse.c.o 2025-06-05T23:21:33.3368318Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:21:33.3370501Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:21:33.3372593Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-06-05T23:21:33.3374870Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-06-05T23:21:38.2785480Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:21:38.2787486Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse-load1.c.o 2025-06-05T23:21:38.2789399Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:21:38.2791448Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:21:38.2793482Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:21:38.2795588Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.o 2025-06-05T23:21:38.2798144Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-7x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:21:38.2800296Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:21:38.2801885Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:21:38.2804060Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:21:38.2806486Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:21:38.2808988Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:21:38.2811326Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:21:38.2813366Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:21:38.2815079Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:21:38.2817172Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:21:38.2819718Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-sse-c4.c.o 2025-06-05T23:21:38.2822318Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:21:38.2824339Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:21:38.2825978Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:21:38.2827365Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:21:38.2828849Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:21:38.2830912Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:21:38.2833673Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:21:38.2835763Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:21:38.2837365Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:21:38.2839424Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:21:38.2841881Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-sse41-dup.c.o 2025-06-05T23:21:38.2843920Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:21:38.2846011Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx-broadcast.c.o 2025-06-05T23:21:38.2848158Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:21:38.2850317Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx2-broadcast.c.o 2025-06-05T23:21:38.2852451Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:21:38.2854591Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-fma3-broadcast.c.o 2025-06-05T23:21:38.2856958Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:21:38.2859024Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:21:38.2861574Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-sse41-dup.c.o 2025-06-05T23:21:38.2863663Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:21:38.2866912Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:21:38.2869096Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:21:38.2871294Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:21:38.2874233Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:21:38.2876389Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:21:38.2878487Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:21:38.2880644Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:21:38.2882792Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:21:38.2885572Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:21:38.2887856Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:21:38.2889516Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:21:38.2891573Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:21:38.2893980Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-sse41-dup.c.o 2025-06-05T23:21:38.2896065Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:21:38.2897610Z [ 40%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:21:38.2899612Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:21:38.2902068Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-sse41-dup.c.o 2025-06-05T23:21:38.2904246Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:21:38.2906458Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:21:38.2908505Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:21:38.2910524Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx2-broadcast.c.o 2025-06-05T23:21:38.2913427Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-fma3-broadcast.c.o 2025-06-05T23:21:40.1844024Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:21:40.1846093Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:21:40.1847829Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-u32.c.o 2025-06-05T23:21:40.1850026Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-u64.c.o 2025-06-05T23:21:40.1851876Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:21:40.1853577Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-u128.c.o 2025-06-05T23:21:40.1855966Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:21:40.1858121Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:21:40.1859940Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:21:40.1861738Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:21:40.1863960Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-u32.c.o 2025-06-05T23:21:40.1867674Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:21:40.1869654Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-u32.c.o 2025-06-05T23:21:40.1872023Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-u32.c.o 2025-06-05T23:21:40.1874071Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-u64.c.o 2025-06-05T23:21:40.1875829Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:21:40.1877571Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-u128.c.o 2025-06-05T23:21:40.1879619Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:21:40.1881769Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:21:40.1883533Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:21:40.1885334Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:21:40.1887264Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:21:40.1888733Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:21:40.1890780Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-u32.c.o 2025-06-05T23:21:40.1893247Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.o 2025-06-05T23:21:40.1894517Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:21:40.1895724Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.o 2025-06-05T23:21:40.1896939Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:21:40.1897746Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:21:40.1899061Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:21:40.1901453Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-06-05T23:21:40.1903968Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:21:40.1906382Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.o 2025-06-05T23:21:40.1908803Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:21:40.1910895Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-avx-c32.c.o 2025-06-05T23:21:40.1912843Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:21:40.1914426Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:21:40.1915977Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:21:40.1917990Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-avx512f-c64.c.o 2025-06-05T23:21:40.1920331Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-06-05T23:21:40.1922313Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:21:40.1923883Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:21:40.1925917Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-sse-c16.c.o 2025-06-05T23:21:40.1928375Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx-u32-acc4.c.o 2025-06-05T23:21:40.1930337Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:21:40.1931983Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:21:40.1933998Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx512f-u64-acc4.c.o 2025-06-05T23:21:40.1936240Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-06-05T23:21:40.1938661Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-sse-u16-acc4.c.o 2025-06-05T23:21:40.1940969Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-avx-u32-acc4.c.o 2025-06-05T23:21:40.1943375Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-avx512f-u64-acc4.c.o 2025-06-05T23:21:40.1945925Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-06-05T23:21:40.1948353Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-sse-u16-acc4.c.o 2025-06-05T23:21:40.1950359Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:21:40.1952337Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx-u32-acc4.c.o 2025-06-05T23:21:40.1954284Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:21:40.1956392Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx512f-u64-acc4.c.o 2025-06-05T23:21:40.1958373Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:21:40.1960321Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-06-05T23:21:40.1962255Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:21:40.1963872Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:21:41.8139197Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-sse-u16-acc4.c.o 2025-06-05T23:21:41.8141288Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:21:41.8142651Z [ 45%] Linking CXX static library liboptimized_kernels.a 2025-06-05T23:21:41.8143864Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:21:41.8145515Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:21:41.8147319Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:21:41.8149262Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-sse.c.o 2025-06-05T23:21:41.8151523Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-06-05T23:21:41.8152966Z [ 45%] Built target optimized_kernels 2025-06-05T23:21:41.8154270Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:21:41.8156472Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-06-05T23:21:41.8158777Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-06-05T23:21:41.8160796Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:21:41.8162679Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx-u16.c.o 2025-06-05T23:21:41.8164863Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:21:41.8167356Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:21:41.8168865Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:21:41.8170839Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx512f-u32.c.o 2025-06-05T23:21:41.8173047Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-06-05T23:21:41.8175251Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-sse-u8.c.o 2025-06-05T23:21:41.8177123Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:21:41.8178673Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:21:41.8180208Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:21:41.8182158Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:21:41.8183900Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:21:41.8186009Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx-u16.c.o 2025-06-05T23:21:41.8187980Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:21:41.8189996Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx512f-u32.c.o 2025-06-05T23:21:41.8192023Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:21:41.8193657Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:21:41.8195521Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-06-05T23:21:41.8197380Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:21:41.8198967Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:21:41.8200529Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:21:41.8202149Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:21:41.8204110Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-sse-u8.c.o 2025-06-05T23:21:41.8206217Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx-u16.c.o 2025-06-05T23:21:41.8208414Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx512f-u32.c.o 2025-06-05T23:21:41.8210626Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-06-05T23:21:41.8212541Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:21:41.8214494Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-sse-u8.c.o 2025-06-05T23:21:41.8216866Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx-u16.c.o 2025-06-05T23:21:41.8218801Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:21:41.8220781Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx512f-u32.c.o 2025-06-05T23:21:41.8222965Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-06-05T23:21:41.8225151Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-sse-u8.c.o 2025-06-05T23:21:41.8227350Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx-u16.c.o 2025-06-05T23:21:41.8229500Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx512f-u32.c.o 2025-06-05T23:21:41.8231482Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:21:41.8233588Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-06-05T23:21:41.8235467Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:21:41.8237261Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-sse-u8.c.o 2025-06-05T23:21:41.8239067Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:21:41.8240629Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:21:41.8242553Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx-u16.c.o 2025-06-05T23:21:41.8244759Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx512f-u32.c.o 2025-06-05T23:21:41.8246724Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:21:41.8248369Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:21:41.8250119Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:21:41.8252160Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-06-05T23:21:41.8254305Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-sse-u8.c.o 2025-06-05T23:21:41.8256503Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx-u16.c.o 2025-06-05T23:21:41.8258656Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx512f-u32.c.o 2025-06-05T23:21:41.8260663Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:21:41.8262466Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:21:41.8264474Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-06-05T23:21:43.4842308Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:21:43.4844705Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-sse-u8.c.o 2025-06-05T23:21:43.4846696Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:21:43.4848372Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:21:43.4850073Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:21:43.4851884Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:21:43.4853945Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx-u16.c.o 2025-06-05T23:21:43.4856221Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx512f-u32.c.o 2025-06-05T23:21:43.4858278Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:21:43.4860147Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:21:43.4862360Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-06-05T23:21:43.4864599Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-sse-u8.c.o 2025-06-05T23:21:43.4866764Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:21:43.4868368Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:21:43.4870287Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-avx-u16.c.o 2025-06-05T23:21:43.4872210Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:21:43.4874183Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-avx512f-u32.c.o 2025-06-05T23:21:43.4876479Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-06-05T23:21:43.4878703Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-sse-u8.c.o 2025-06-05T23:21:43.4881009Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-avx-u16.c.o 2025-06-05T23:21:43.4882947Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:21:43.4884910Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-avx512f-u32.c.o 2025-06-05T23:21:43.4887242Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-06-05T23:21:43.4889664Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-sse-u8.c.o 2025-06-05T23:21:43.4891656Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:21:43.4893688Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-avx-u16.c.o 2025-06-05T23:21:43.4895644Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:21:43.4897820Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-avx512f-u32.c.o 2025-06-05T23:21:43.4900156Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-06-05T23:21:43.4902182Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:21:43.4903900Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:21:43.4905997Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-sse2-u8.c.o 2025-06-05T23:21:43.4908094Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:21:43.4909824Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:21:43.4911453Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:21:43.4913382Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-avx-u16.c.o 2025-06-05T23:21:43.4915881Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-avx512f-u32.c.o 2025-06-05T23:21:43.4918234Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-06-05T23:21:43.4920184Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:21:43.4922132Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-sse2-u8.c.o 2025-06-05T23:21:43.4924407Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-avx-u16.c.o 2025-06-05T23:21:43.4926740Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-avx512f-u32.c.o 2025-06-05T23:21:43.4929093Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-06-05T23:21:43.4931064Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:21:43.4933004Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-sse-u8.c.o 2025-06-05T23:21:43.4935271Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-avx-u16.c.o 2025-06-05T23:21:43.4937296Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:21:43.4939039Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:21:43.4940763Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:21:43.4942471Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:21:43.4944524Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-avx512f-u32.c.o 2025-06-05T23:21:43.4946764Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:21:43.4948536Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:21:43.4950525Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-06-05T23:21:43.4952747Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:21:43.4954787Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-sse2-u8.c.o 2025-06-05T23:21:43.4956729Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:21:43.4958284Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:21:43.4959860Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:21:43.4961778Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-avx-u16.c.o 2025-06-05T23:21:43.4963728Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:21:43.4965899Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-avx512f-u32.c.o 2025-06-05T23:21:43.4968265Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-06-05T23:21:43.4970182Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:21:43.4971590Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:21:45.0814505Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:21:45.0816297Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-sse-u8.c.o 2025-06-05T23:21:45.0817832Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:21:45.0819152Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx-u16.c.o 2025-06-05T23:21:45.0820202Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:21:45.0821243Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx512f-u32.c.o 2025-06-05T23:21:45.0822428Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-06-05T23:21:45.0823573Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-sse-u8.c.o 2025-06-05T23:21:45.0824555Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:21:45.0825376Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:21:45.0826463Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx-u16.c.o 2025-06-05T23:21:45.0827662Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx512f-u32.c.o 2025-06-05T23:21:45.0828703Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:21:45.0829561Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:21:45.0830438Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:21:45.0831469Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-06-05T23:21:45.0832902Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-u8.c.o 2025-06-05T23:21:45.0833953Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:21:45.0834893Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:21:45.0835922Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx-u16.c.o 2025-06-05T23:21:45.0837044Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx512f-u32.c.o 2025-06-05T23:21:45.0838021Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:21:45.0838870Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:21:45.0839757Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:21:45.0840705Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:21:45.0841918Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-06-05T23:21:45.0843262Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:21:45.0844696Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:21:45.0846254Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:21:45.0847604Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:21:45.0848707Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-sse-u8.c.o 2025-06-05T23:21:45.0849750Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:21:45.0850780Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-avx-u16.c.o 2025-06-05T23:21:45.0851923Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-avx512f-u32.c.o 2025-06-05T23:21:45.0852972Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:21:45.0854015Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-06-05T23:21:45.0855139Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-sse-u8.c.o 2025-06-05T23:21:45.0856260Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-avx-u16.c.o 2025-06-05T23:21:45.0857389Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-avx512f-u16.c.o 2025-06-05T23:21:45.0858536Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-06-05T23:21:45.0859549Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:21:45.0860578Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:21:45.0861497Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:21:45.0862418Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:21:45.0863433Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-sse-u8.c.o 2025-06-05T23:21:45.0864442Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:21:45.0865732Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-avx512f-u32.c.o 2025-06-05T23:21:45.0866917Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-fma3-u16.c.o 2025-06-05T23:21:45.0867908Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:21:45.0868805Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:21:45.0869840Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:21:45.0870778Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:21:45.0871724Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:21:45.0872597Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:21:45.0873604Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-06-05T23:21:45.0874724Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-sse-u8.c.o 2025-06-05T23:21:45.0875832Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx.c.o 2025-06-05T23:21:45.0876847Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:21:45.0877886Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx512f.c.o 2025-06-05T23:21:45.0879063Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-06-05T23:21:45.0880275Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-sse2.c.o 2025-06-05T23:21:45.0881335Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:21:45.0882376Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx.c.o 2025-06-05T23:21:46.2802179Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx512f.c.o 2025-06-05T23:21:46.2804314Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:21:46.2806077Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:21:46.2808086Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-06-05T23:21:46.2810641Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-sse2.c.o 2025-06-05T23:21:46.2812893Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx.c.o 2025-06-05T23:21:46.2815228Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx512f.c.o 2025-06-05T23:21:46.2817577Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-06-05T23:21:46.2819970Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-sse2.c.o 2025-06-05T23:21:46.2822365Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-u32.c.o 2025-06-05T23:21:46.2824869Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-u56.c.o 2025-06-05T23:21:46.2826720Z [ 61%] Linking CXX static library liboptimized_portable_kernels.a 2025-06-05T23:21:46.2828583Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-u128.c.o 2025-06-05T23:21:46.2830956Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-06-05T23:21:46.2833437Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-06-05T23:21:46.2835872Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-u12.c.o 2025-06-05T23:21:46.2838198Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-06-05T23:21:46.2840528Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx-rational-12-10-div.c.o 2025-06-05T23:21:46.2842942Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx512f-rational-12-10-nr.c.o 2025-06-05T23:21:46.2845399Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-fma3-rational-12-10-div.c.o 2025-06-05T23:21:46.2847918Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-06-05T23:21:46.2849530Z [ 61%] Built target optimized_portable_kernels 2025-06-05T23:21:46.2851124Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-sse2-rational-12-10-div.c.o 2025-06-05T23:21:46.2853532Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx-u16.c.o 2025-06-05T23:21:46.2855734Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx512f-u16.c.o 2025-06-05T23:21:46.2858065Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-fma3-u16.c.o 2025-06-05T23:21:46.2860367Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-06-05T23:21:46.2861829Z [ 61%] Merging kernel yaml files 2025-06-05T23:21:46.2863200Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-sse-u8.c.o 2025-06-05T23:21:46.2866367Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx2-rational-3-3-div.c.o 2025-06-05T23:21:46.2868858Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx512f-rational-3-3-div.c.o 2025-06-05T23:21:46.2871299Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-fma3-rational-3-3-div.c.o 2025-06-05T23:21:46.2873766Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-06-05T23:21:46.2876091Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-sse2-rational-3-3-div.c.o 2025-06-05T23:21:46.2878352Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-u16.c.o 2025-06-05T23:21:46.2880043Z [ 62%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-06-05T23:21:46.2881697Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-u16.c.o 2025-06-05T23:21:46.2884103Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-06-05T23:21:46.2886362Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-u8.c.o 2025-06-05T23:21:46.2888591Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-u8.c.o 2025-06-05T23:21:46.2890951Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-06-05T23:21:46.2893410Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-sse-2x.c.o 2025-06-05T23:21:46.2895701Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-06-05T23:21:46.2897858Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx-u16.c.o 2025-06-05T23:21:46.2900032Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-u16.c.o 2025-06-05T23:21:46.2902280Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-06-05T23:21:46.2903772Z [ 62%] Generating code for kernel registration 2025-06-05T23:21:46.2905235Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-06-05T23:21:46.2907585Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-sse2-u8.c.o 2025-06-05T23:21:46.2909785Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-sse41-u8.c.o 2025-06-05T23:21:46.2911969Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx-u16.c.o 2025-06-05T23:21:46.2914210Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-u16.c.o 2025-06-05T23:21:46.2916470Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-06-05T23:21:46.2918374Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-06-05T23:21:46.2920514Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse2-u8.c.o 2025-06-05T23:21:46.2922634Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse41-u8.c.o 2025-06-05T23:21:46.2924793Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx-u16.c.o 2025-06-05T23:21:46.2926901Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx512f-u16.c.o 2025-06-05T23:21:46.2929122Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-06-05T23:21:46.2931448Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-06-05T23:21:47.6302503Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-sse2-u8.c.o 2025-06-05T23:21:47.6304864Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-sse41-u8.c.o 2025-06-05T23:21:47.6307024Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx-u16.c.o 2025-06-05T23:21:47.6309051Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-u16.c.o 2025-06-05T23:21:47.6311362Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-06-05T23:21:47.6313716Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-06-05T23:21:47.6316008Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-sse2-u8.c.o 2025-06-05T23:21:47.6318244Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-sse41-u8.c.o 2025-06-05T23:21:47.6320529Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx-rsqrt-u16.c.o 2025-06-05T23:21:47.6322823Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx512f-rsqrt-u32.c.o 2025-06-05T23:21:47.6325092Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-fma3-rsqrt-u16.c.o 2025-06-05T23:21:47.6327372Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-06-05T23:21:47.6329810Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-06-05T23:21:47.6332244Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-sse-rsqrt-u8.c.o 2025-06-05T23:21:47.6334698Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-u40.c.o 2025-06-05T23:21:47.6337304Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-u40.c.o 2025-06-05T23:21:47.6340162Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u64.c.o 2025-06-05T23:21:47.6343075Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.o 2025-06-05T23:21:47.6346189Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-u8.c.o 2025-06-05T23:21:47.6348927Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-u8.c.o 2025-06-05T23:21:47.6351453Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-rsqrt-u16.c.o 2025-06-05T23:21:47.6353858Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-rsqrt-u16.c.o 2025-06-05T23:21:47.6356261Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-rsqrt-u16.c.o 2025-06-05T23:21:47.6358627Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-06-05T23:21:47.6360993Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-sse-rsqrt-u12.c.o 2025-06-05T23:21:47.6363519Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx-rational-9-8-div.c.o 2025-06-05T23:21:47.6366301Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx512f-rational-9-8-nr.c.o 2025-06-05T23:21:47.6368820Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-fma3-rational-9-8-div.c.o 2025-06-05T23:21:47.6371347Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-06-05T23:21:47.6373875Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-sse2-rational-9-8-div.c.o 2025-06-05T23:21:47.6376205Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx.c.o 2025-06-05T23:21:47.6378261Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx512f.c.o 2025-06-05T23:21:47.6380465Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-06-05T23:21:47.6382640Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-sse2.c.o 2025-06-05T23:21:47.6384806Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx.c.o 2025-06-05T23:21:47.6387052Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx512f.c.o 2025-06-05T23:21:47.6389258Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-06-05T23:21:47.6391440Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-sse2.c.o 2025-06-05T23:21:47.6393579Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx.c.o 2025-06-05T23:21:47.6395738Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx512f.c.o 2025-06-05T23:21:47.6397936Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-06-05T23:21:47.6400289Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-sse2.c.o 2025-06-05T23:21:47.6402724Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:21:47.6405439Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:21:47.6408259Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:21:47.6411187Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:21:47.6413999Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:21:47.6416681Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:21:47.6419527Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:21:47.6422301Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:21:47.6425131Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:21:47.6428017Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:21:47.6430797Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld128.c.o 2025-06-05T23:21:47.6433601Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:21:48.6356760Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld128.c.o 2025-06-05T23:21:48.6359847Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:21:48.6362266Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld128.c.o 2025-06-05T23:21:48.6364660Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:21:48.6367171Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:21:48.6369532Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld128.c.o 2025-06-05T23:21:48.6371926Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:21:48.6374398Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:21:48.6377475Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd-prfm.c.o 2025-06-05T23:21:48.6380217Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:21:48.6382813Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:21:48.6385319Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:21:48.6388016Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:21:48.6390686Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:21:48.6393237Z [ 70%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:21:48.6395879Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:21:48.6398322Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:21:48.6400856Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:21:48.6403412Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:21:48.6406077Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-madd-prfm.c.o 2025-06-05T23:21:48.6408727Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:21:48.6411353Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-10x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:21:48.6413936Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:21:48.6415628Z [ 70%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-06-05T23:21:48.6416359Z [ 70%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:21:48.6417990Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:21:48.6420480Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.o 2025-06-05T23:21:48.6422906Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:21:48.6425369Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:21:48.6427974Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:21:48.6430614Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:21:48.6433001Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.o 2025-06-05T23:21:48.6435281Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:21:48.6437750Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:21:48.6440335Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:21:48.6442786Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8c8-minmax-avx2.c.o 2025-06-05T23:21:48.6445334Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:21:48.6447783Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-10x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:21:48.6450430Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:21:48.6453141Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:21:48.6455809Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.o 2025-06-05T23:21:48.6458532Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:21:48.6461377Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:21:48.6463908Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:21:48.6467481Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:21:48.6469767Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.o 2025-06-05T23:21:48.6472121Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:21:48.6474541Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:21:48.6477087Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:21:49.5161341Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8c8-minmax-avx2.c.o 2025-06-05T23:21:49.5164160Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:21:49.5167013Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:21:49.5169479Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:21:49.5172146Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:21:49.5174923Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:49.5177677Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:49.5180599Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:21:49.5183557Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-06-05T23:21:49.5186414Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-06-05T23:21:49.5189225Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:21:49.5191959Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:21:49.5194683Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:21:49.5197347Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:49.5200081Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:49.5202849Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:21:49.5205546Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-06-05T23:21:49.5208345Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-06-05T23:21:49.5210938Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-avx2-u16.c.o 2025-06-05T23:21:49.5213281Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-u32.c.o 2025-06-05T23:21:49.5215607Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-u16.c.o 2025-06-05T23:21:49.5217980Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-u32.c.o 2025-06-05T23:21:49.5220365Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-06-05T23:21:49.5222900Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-06-05T23:21:49.5225229Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-u32.c.o 2025-06-05T23:21:49.5227596Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-u16.c.o 2025-06-05T23:21:49.5230000Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:21:49.5232513Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-06-05T23:21:49.5235257Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:21:49.5238199Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:21:49.5241183Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:21:49.5244138Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:49.5247101Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:49.5250067Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:21:49.5253010Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:21:49.5255878Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:21:49.5258962Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:21:49.5261886Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:21:49.5264804Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:21:49.5268974Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:49.5271923Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:49.5274895Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:21:49.5277840Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:21:49.5280710Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:21:49.5283808Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:21:49.5286768Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:21:49.5289487Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:21:49.5292392Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:49.5295345Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:50.5055057Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:21:50.5057910Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:21:50.5061056Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:21:50.5063914Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:21:50.5067019Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512vnni-prfm.c.o 2025-06-05T23:21:50.5069833Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:50.5072641Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:50.5075390Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:21:50.5078169Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:21:50.5080934Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:21:50.5083789Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:21:50.5086495Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:50.5089273Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:21:50.5092057Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:50.5094833Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:21:50.5097603Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:21:50.5100434Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:21:50.5103188Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:21:50.5106146Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512vnni-prfm.c.o 2025-06-05T23:21:50.5109016Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:21:50.5111865Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:21:50.5114771Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:50.5117776Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:50.5120589Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:21:50.5123372Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:21:50.5126187Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:21:50.5128883Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:21:50.5131625Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:50.5134500Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:21:50.5137276Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:50.5139688Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:21:50.5142356Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:21:50.5145073Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:21:50.5147904Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:21:50.5150597Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:21:50.5153163Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:21:50.5155442Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.o 2025-06-05T23:21:50.5157923Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.o 2025-06-05T23:21:50.5160227Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.o 2025-06-05T23:21:50.5162459Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-06-05T23:21:50.5164566Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx2-u64-acc2.c.o 2025-06-05T23:21:50.5166763Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx512skx-u128-acc2.c.o 2025-06-05T23:21:50.5168690Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx512vnni-u128-acc2.c.o 2025-06-05T23:21:50.5170642Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-06-05T23:21:50.5172578Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-ssse3-u32-acc2.c.o 2025-06-05T23:21:50.5174462Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:21:50.5176464Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:21:50.5178673Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:21:50.5181072Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:21:50.5183298Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-06-05T23:21:51.3913017Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:21:51.3915636Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:21:51.3918242Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:21:51.3920811Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:21:51.3923458Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:21:51.3926023Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:21:51.3928355Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:21:51.3930868Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:21:51.3933431Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:21:51.3935818Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-u32.c.o 2025-06-05T23:21:51.3938281Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-u32.c.o 2025-06-05T23:21:51.3940442Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-06-05T23:21:51.3942589Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-06-05T23:21:51.3944748Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-u32.c.o 2025-06-05T23:21:51.3946985Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-u32.c.o 2025-06-05T23:21:51.3949169Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-ssse3-u32.c.o 2025-06-05T23:21:51.3951370Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-u32.c.o 2025-06-05T23:21:51.3953784Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-u32.c.o 2025-06-05T23:21:51.3956137Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:21:51.3958524Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:21:51.3960787Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-u32.c.o 2025-06-05T23:21:51.3963048Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-u32.c.o 2025-06-05T23:21:51.3966999Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-u32.c.o 2025-06-05T23:21:51.3969500Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:21:51.3972002Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:21:51.3974570Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:21:51.3977598Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:21:51.3980241Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:21:51.3982827Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:21:51.3985383Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:21:51.3988117Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:21:51.3990793Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-06-05T23:21:51.3993420Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.o 2025-06-05T23:21:51.3996344Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-06-05T23:21:51.3998930Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-sse2-c8.c.o 2025-06-05T23:21:51.4001504Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o 2025-06-05T23:21:51.4004126Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:21:51.4006843Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:21:51.4009539Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:51.4012238Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:51.4015170Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:21:51.4017899Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:21:51.4020533Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:21:51.4023124Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o 2025-06-05T23:21:51.4025822Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:21:51.4028518Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:21:51.4031213Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:51.4033917Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:51.4036544Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:21:51.4039280Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:21:51.4041932Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:21:51.4044401Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-u32.c.o 2025-06-05T23:21:51.4046713Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-u16.c.o 2025-06-05T23:21:52.4133109Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-u32.c.o 2025-06-05T23:21:52.4135439Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-06-05T23:21:52.4138035Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-06-05T23:21:52.4140264Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-u32.c.o 2025-06-05T23:21:52.4142402Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-u16.c.o 2025-06-05T23:21:52.4144527Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:21:52.4147038Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:52.4149236Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:21:52.4151541Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:52.4153889Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:21:52.4155909Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:21:52.4157441Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:21:52.4158714Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:52.4160021Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:21:52.4161300Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:52.4162593Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:21:52.4163881Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:21:52.4166670Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:21:52.4167991Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:21:52.4169358Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:21:52.4170702Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:52.4172026Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:52.4173329Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:21:52.4174765Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:21:52.4176228Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:21:52.4177503Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:21:52.4178792Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:21:52.4180106Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:21:52.4181408Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:21:52.4182721Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:21:52.4183996Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:21:52.4185337Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:21:52.4186745Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:21:52.4188020Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-ssse3-c64.c.o 2025-06-05T23:21:52.4189344Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-06-05T23:21:52.4190473Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-avx2-u64-acc2.c.o 2025-06-05T23:21:52.4191588Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-06-05T23:21:52.4192718Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-sse2-u32-acc2.c.o 2025-06-05T23:21:52.4193979Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:21:52.4195230Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:21:52.4196532Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:21:52.4197865Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:21:52.4199038Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-06-05T23:21:52.4200407Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:21:52.4201665Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:21:52.4202941Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:21:52.4204222Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:21:52.4205629Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:21:52.4206917Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:21:52.4208127Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:21:52.4209369Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:21:52.4210663Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:21:52.4211850Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-u32.c.o 2025-06-05T23:21:53.3090920Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-u32.c.o 2025-06-05T23:21:53.3093478Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-06-05T23:21:53.3095621Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-06-05T23:21:53.3097803Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-u32.c.o 2025-06-05T23:21:53.3099944Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-u32.c.o 2025-06-05T23:21:53.3101929Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-u32.c.o 2025-06-05T23:21:53.3104125Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-u32.c.o 2025-06-05T23:21:53.3106388Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-u32.c.o 2025-06-05T23:21:53.3108674Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:21:53.3111080Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:21:53.3113440Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-u32.c.o 2025-06-05T23:21:53.3115751Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-u32.c.o 2025-06-05T23:21:53.3118062Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-u32.c.o 2025-06-05T23:21:53.3120516Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:21:53.3123051Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:21:53.3125589Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:21:53.3128195Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:21:53.3131133Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:21:53.3133706Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:21:53.3136312Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:21:53.3138983Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:21:53.3141457Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-avx2.c.o 2025-06-05T23:21:53.3143719Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-avx512f.c.o 2025-06-05T23:21:53.3146065Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-06-05T23:21:53.3148438Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-06-05T23:21:53.3150770Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-c8.c.o 2025-06-05T23:21:53.3153107Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-c16.c.o 2025-06-05T23:21:53.3155532Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:21:53.3157803Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse2-c16.c.o 2025-06-05T23:21:53.3160201Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse41-c16.c.o 2025-06-05T23:21:53.3162514Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx512skx-u256.c.o 2025-06-05T23:21:53.3164710Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx2-u128.c.o 2025-06-05T23:21:53.3167292Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-06-05T23:21:53.3169475Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse2-u64.c.o 2025-06-05T23:21:53.3171634Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse41-u64.c.o 2025-06-05T23:21:53.3173937Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-06-05T23:21:53.3176307Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-c8.c.o 2025-06-05T23:21:53.3178569Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse41-c16.c.o 2025-06-05T23:21:53.3180849Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-06-05T23:21:53.3183052Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:21:53.3185368Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-sse2-c16.c.o 2025-06-05T23:21:53.3187878Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-06-05T23:21:53.3189950Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-sse2-u16.c.o 2025-06-05T23:21:53.3192041Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx2-u128.c.o 2025-06-05T23:21:53.3194240Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx512skx-u256.c.o 2025-06-05T23:21:53.3196396Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-06-05T23:21:53.3198562Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-sse2-u64.c.o 2025-06-05T23:21:53.3200912Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-avx2-u16-prfm.c.o 2025-06-05T23:21:53.3203682Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x64-gemm-goi-scalar-int-u4.c.o 2025-06-05T23:21:53.3206334Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-switch-avx2.c.o 2025-06-05T23:21:53.3208903Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-06-05T23:21:53.3211526Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-sse2.c.o 2025-06-05T23:21:53.3213993Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-06-05T23:21:53.3216320Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-ssse3.c.o 2025-06-05T23:21:53.3218671Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-avx-u4.c.o 2025-06-05T23:21:53.3221129Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16s4-gemm-goi-avx-u4.c.o 2025-06-05T23:21:54.6993763Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:21:54.6996300Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2c4-gemm-goi-sse2-u4.c.o 2025-06-05T23:21:54.6998757Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x32-gemm-goi-avx512f-u4-prfm.c.o 2025-06-05T23:21:54.7001127Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:21:54.7003602Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-sse2-u4.c.o 2025-06-05T23:21:54.7005951Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-06-05T23:21:54.7008326Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-multi-avx.c.o 2025-06-05T23:21:54.7010583Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-sse.c.o 2025-06-05T23:21:54.7013023Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-06-05T23:21:54.7015066Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-sse2.c.o 2025-06-05T23:21:54.7017049Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-06-05T23:21:54.7018876Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-sse2.c.o 2025-06-05T23:21:54.7020742Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-06-05T23:21:54.7022590Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-sse2.c.o 2025-06-05T23:21:54.7024402Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-06-05T23:21:54.7026350Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-sse2.c.o 2025-06-05T23:21:54.7028565Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-06-05T23:21:54.7030488Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-sse2.c.o 2025-06-05T23:21:54.7032532Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-sse2.c.o 2025-06-05T23:21:54.7034689Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-06-05T23:21:54.7037014Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-multi-avx.c.o 2025-06-05T23:21:54.7038954Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx-u64.c.o 2025-06-05T23:21:54.7040033Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx2-u128.c.o 2025-06-05T23:21:54.7041173Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-u64.c.o 2025-06-05T23:21:54.7042707Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-u128.c.o 2025-06-05T23:21:54.7044238Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-06-05T23:21:54.7045361Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-06-05T23:21:54.7046546Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-06-05T23:21:54.7047789Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-06-05T23:21:54.7049018Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-06-05T23:21:54.7050561Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-06-05T23:21:54.7052537Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-sse2.c.o 2025-06-05T23:21:54.7054787Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-06-05T23:21:54.7056927Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-switch-avx2.c.o 2025-06-05T23:21:54.7058901Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-06-05T23:21:54.7060626Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-sse2.c.o 2025-06-05T23:21:54.7062385Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-06-05T23:21:54.7064239Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-sse2.c.o 2025-06-05T23:21:54.7065899Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-06-05T23:21:54.7066944Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-sse2.c.o 2025-06-05T23:21:54.7068118Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-06-05T23:21:54.7069154Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-sse2.c.o 2025-06-05T23:21:54.7070215Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-06-05T23:21:54.7071404Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-06-05T23:21:54.7072527Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-sse2-u64.c.o 2025-06-05T23:21:54.7073677Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-sse2-u16.c.o 2025-06-05T23:21:54.7074793Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-06-05T23:21:54.7075967Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-06-05T23:21:54.7077115Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-06-05T23:21:54.7078130Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-06-05T23:21:54.7079580Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-06-05T23:21:54.7081284Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-06-05T23:21:54.7082815Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-06-05T23:21:54.7083895Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-06-05T23:21:54.7084952Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-06-05T23:21:54.7086039Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-06-05T23:21:54.7087034Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-06-05T23:21:54.7087832Z [ 97%] Linking C static library libmicrokernels-prod.a 2025-06-05T23:21:54.7088207Z [ 97%] Built target microkernels-prod 2025-06-05T23:21:54.7088514Z [ 97%] Generating build_identifier.c 2025-06-05T23:21:54.7089133Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-06-05T23:22:03.9836800Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-06-05T23:22:03.9838849Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-06-05T23:22:03.9839852Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-06-05T23:22:03.9840790Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-06-05T23:22:03.9841764Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-06-05T23:22:03.9842703Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-06-05T23:22:03.9843635Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-06-05T23:22:03.9844795Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-06-05T23:22:03.9845734Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-06-05T23:22:03.9846702Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-06-05T23:22:03.9847621Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-06-05T23:22:03.9848546Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-06-05T23:22:03.9849660Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-06-05T23:22:03.9850579Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-06-05T23:22:03.9851577Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-06-05T23:22:03.9852548Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-06-05T23:22:03.9853438Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-06-05T23:22:03.9854322Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-06-05T23:22:03.9855216Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-06-05T23:22:03.9856198Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-06-05T23:22:03.9857156Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-06-05T23:22:03.9858072Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-06-05T23:22:03.9858994Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-06-05T23:22:03.9860270Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-06-05T23:22:03.9861589Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-06-05T23:22:03.9863166Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-06-05T23:22:03.9864391Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-06-05T23:22:03.9865789Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-06-05T23:22:03.9867010Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-06-05T23:22:03.9868002Z [100%] Linking CXX static library libXNNPACK.a 2025-06-05T23:22:03.9868491Z [100%] Built target XNNPACK 2025-06-05T23:22:03.9869314Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-06-05T23:22:03.9870574Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-06-05T23:22:03.9871697Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-06-05T23:22:03.9872834Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-06-05T23:22:03.9873922Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-06-05T23:22:03.9875286Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-06-05T23:22:03.9876170Z [100%] Linking CXX static library libxnnpack_backend.a 2025-06-05T23:22:03.9876648Z [100%] Built target xnnpack_backend 2025-06-05T23:22:03.9877318Z [100%] Building CXX object CMakeFiles/portable_lib.dir/extension/pybindings/pybindings.cpp.o 2025-06-05T23:22:03.9878182Z [100%] Linking CXX shared library _portable_lib.cpython-310-x86_64-linux-gnu.so 2025-06-05T23:22:03.9878797Z [100%] Built target portable_lib 2025-06-05T23:22:03.9879482Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_util.dir/runtime/util/json_util.cpp.o 2025-06-05T23:22:03.9880699Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/inmemory_filesystem.cpp.o 2025-06-05T23:22:03.9882049Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_stream.cpp.o 2025-06-05T23:22:03.9883319Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_buffer.cpp.o 2025-06-05T23:22:03.9884656Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/reversed_memory_stream.cpp.o 2025-06-05T23:22:03.9885574Z Linking CXX static library libcoreml_util.a 2025-06-05T23:22:03.9886002Z Built target coreml_util 2025-06-05T23:22:03.9886410Z Linking CXX static library libcoreml_inmemoryfs.a 2025-06-05T23:22:03.9886899Z Built target coreml_inmemoryfs 2025-06-05T23:22:03.9887830Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_py.cpp.o 2025-06-05T23:22:03.9889334Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_utils.cpp.o 2025-06-05T23:22:03.9890483Z Linking CXX shared library executorchcoreml.cpython-310-x86_64-linux-gnu.so 2025-06-05T23:22:03.9891086Z Built target executorchcoreml 2025-06-05T23:22:03.9891530Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:22:03.9892056Z [ 1%] Built target flatcc_external_project 2025-06-05T23:22:03.9892479Z [ 2%] Built target pthreadpool 2025-06-05T23:22:03.9892870Z [ 2%] Built target common_schema 2025-06-05T23:22:03.9893248Z [ 3%] Built target xnnpack_schema 2025-06-05T23:22:03.9893636Z [ 4%] Built target flatccrt 2025-06-05T23:22:03.9893971Z [ 6%] Built target cpuinfo 2025-06-05T23:22:03.9894362Z [ 7%] Built target logging 2025-06-05T23:22:03.9894778Z [ 7%] Built target microparams-init 2025-06-05T23:22:03.9895245Z [ 7%] Built target indirection 2025-06-05T23:22:03.9895693Z [ 8%] Built target eigen_blas 2025-06-05T23:22:03.9896323Z [ 8%] Built target normalization 2025-06-05T23:22:03.9896778Z [ 8%] Built target datatype 2025-06-05T23:22:03.9897181Z [ 8%] Built target operator-utils 2025-06-05T23:22:03.9897673Z [ 8%] Built target reference-ukernels 2025-06-05T23:22:03.9898167Z [ 8%] Built target program_schema 2025-06-05T23:22:03.9898592Z [ 8%] Built target operator-run 2025-06-05T23:22:03.9898874Z [ 8%] Built target hardware-config 2025-06-05T23:22:03.9899172Z [ 8%] Built target packing 2025-06-05T23:22:03.9899429Z [ 8%] Built target allocator 2025-06-05T23:22:03.9899707Z [ 8%] Built target microkernel-utils 2025-06-05T23:22:03.9899991Z [ 8%] Built target cache 2025-06-05T23:22:03.9900245Z [ 8%] Built target memory 2025-06-05T23:22:03.9900503Z [ 8%] Built target mutex 2025-06-05T23:22:03.9900746Z [ 11%] Built target operators 2025-06-05T23:22:03.9901025Z [ 12%] Built target executorch_core 2025-06-05T23:22:03.9901321Z [ 12%] Built target extension_threadpool 2025-06-05T23:22:03.9901634Z [ 14%] Built target subgraph 2025-06-05T23:22:03.9901899Z [ 14%] Built target extension_tensor 2025-06-05T23:22:03.9902194Z [ 16%] Built target executorch 2025-06-05T23:22:03.9902473Z [ 16%] Built target extension_data_loader 2025-06-05T23:22:03.9902790Z [ 16%] Built target bundled_program 2025-06-05T23:22:03.9903175Z [ 17%] Built target cpublas 2025-06-05T23:22:03.9903446Z [ 17%] Built target etdump 2025-06-05T23:22:03.9903728Z [ 18%] Built target kernels_util_all_deps 2025-06-05T23:22:03.9904023Z [ 18%] Built target util 2025-06-05T23:22:03.9904382Z [ 19%] Built target optimized_kernels 2025-06-05T23:22:03.9904774Z [ 34%] Built target optimized_portable_kernels 2025-06-05T23:22:03.9905129Z [ 34%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:22:03.9905457Z [ 97%] Built target microkernels-prod 2025-06-05T23:22:03.9905898Z [100%] Built target XNNPACK 2025-06-05T23:22:03.9906163Z [100%] Built target xnnpack_backend 2025-06-05T23:22:03.9906572Z [100%] Built target portable_lib 2025-06-05T23:22:03.9907193Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fallback.cpp.o 2025-06-05T23:22:03.9908540Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fast_hadamard_transform.cpp.o 2025-06-05T23:22:03.9909872Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa.cpp.o 2025-06-05T23:22:03.9911111Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_update_cache.cpp.o 2025-06-05T23:22:03.9912302Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/spinquant/fast_hadamard_transform.cpp.o 2025-06-05T23:22:03.9913485Z [100%] Building C object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/spinquant/third-party/FFHT/fht_avx.c.o 2025-06-05T23:22:03.9914345Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa_aot.cpp.o 2025-06-05T23:22:03.9915224Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fast_hadamard_transform_aten.cpp.o 2025-06-05T23:22:03.9916082Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop.cpp.o 2025-06-05T23:22:10.9556639Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop_aot.cpp.o 2025-06-05T23:22:10.9557333Z [100%] Linking CXX shared library libcustom_ops_aot_lib.so 2025-06-05T23:22:10.9557716Z [100%] Built target custom_ops_aot_lib 2025-06-05T23:22:10.9558044Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:22:10.9558398Z [ 1%] Built target flatcc_external_project 2025-06-05T23:22:10.9558709Z [ 2%] Built target pthreadpool 2025-06-05T23:22:10.9558997Z [ 3%] Built target cpuinfo 2025-06-05T23:22:10.9559262Z [ 4%] Built target xnnpack_schema 2025-06-05T23:22:10.9559560Z [ 4%] Built target common_schema 2025-06-05T23:22:10.9560431Z [ 6%] Built target eigen_blas 2025-06-05T23:22:10.9560714Z [ 7%] Built target flatccrt 2025-06-05T23:22:10.9560977Z [ 8%] Built target logging 2025-06-05T23:22:10.9561252Z [ 8%] Built target indirection 2025-06-05T23:22:10.9561546Z [ 8%] Built target normalization 2025-06-05T23:22:10.9561929Z [ 8%] Built target microparams-init 2025-06-05T23:22:10.9562238Z [ 8%] Built target datatype 2025-06-05T23:22:10.9562501Z [ 8%] Built target program_schema 2025-06-05T23:22:10.9562806Z [ 8%] Built target reference-ukernels 2025-06-05T23:22:10.9563109Z [ 8%] Built target hardware-config 2025-06-05T23:22:10.9563401Z [ 8%] Built target allocator 2025-06-05T23:22:10.9563656Z [ 8%] Built target packing 2025-06-05T23:22:10.9563921Z [ 8%] Built target cache 2025-06-05T23:22:10.9564210Z [ 8%] Built target memory 2025-06-05T23:22:10.9564472Z [ 8%] Built target microkernel-utils 2025-06-05T23:22:10.9564769Z [ 8%] Built target mutex 2025-06-05T23:22:10.9565220Z [ 8%] Built target operator-utils 2025-06-05T23:22:10.9565650Z [ 8%] Built target operator-run 2025-06-05T23:22:10.9565931Z [ 9%] Built target executorch_core 2025-06-05T23:22:10.9566227Z [ 12%] Built target operators 2025-06-05T23:22:10.9566515Z [ 12%] Built target extension_threadpool 2025-06-05T23:22:10.9566814Z [ 13%] Built target executorch 2025-06-05T23:22:10.9567255Z [ 13%] Built target extension_data_loader 2025-06-05T23:22:10.9567564Z [ 13%] Built target extension_tensor 2025-06-05T23:22:10.9567857Z [ 15%] Built target subgraph 2025-06-05T23:22:10.9568127Z [ 16%] Built target kernels_util_all_deps 2025-06-05T23:22:10.9568506Z [ 16%] Built target bundled_program 2025-06-05T23:22:10.9568844Z [ 18%] Built target cpublas 2025-06-05T23:22:10.9569108Z [ 18%] Built target etdump 2025-06-05T23:22:10.9569380Z [ 19%] Built target optimized_kernels 2025-06-05T23:22:10.9569662Z [ 19%] Built target util 2025-06-05T23:22:10.9569942Z [ 33%] Built target optimized_portable_kernels 2025-06-05T23:22:10.9570290Z [ 33%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:22:10.9570633Z [ 95%] Built target microkernels-prod 2025-06-05T23:22:10.9570925Z [ 97%] Built target XNNPACK 2025-06-05T23:22:10.9571201Z [ 97%] Built target xnnpack_backend 2025-06-05T23:22:10.9571487Z [ 97%] Built target portable_lib 2025-06-05T23:22:10.9572073Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:22:10.9572926Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_add.cpp.o 2025-06-05T23:22:10.9573925Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:22:10.9574895Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:22:10.9575761Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding.cpp.o 2025-06-05T23:22:10.9576811Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:22:10.9577704Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:22:10.9578589Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:22:10.9579462Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:22:10.9580305Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_quantize.cpp.o 2025-06-05T23:22:10.9580982Z [ 98%] Linking CXX static library libquantized_pybind_kernels_lib.a 2025-06-05T23:22:10.9581405Z [ 98%] Built target quantized_pybind_kernels_lib 2025-06-05T23:22:10.9581870Z [ 98%] Generating selected_operators.yaml for quantized_ops_pybind_lib 2025-06-05T23:22:10.9582451Z [ 98%] Generating code for kernel registration 2025-06-05T23:22:10.9583287Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_pybind_lib.dir/quantized_ops_pybind_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:22:10.9584320Z [ 98%] Linking CXX static library libquantized_ops_pybind_lib.a 2025-06-05T23:22:10.9584743Z [ 98%] Built target quantized_ops_pybind_lib 2025-06-05T23:22:10.9585167Z [ 98%] Generating selected_operators.yaml for quantized_ops_aot_lib 2025-06-05T23:22:10.9588105Z quantized_decomposed::add.out quantized_decomposed::choose_qparams.Tensor_out quantized_decomposed::choose_qparams_per_token_asymmetric.out quantized_decomposed::dequantize_per_channel.out quantized_decomposed::dequantize_per_tensor.out quantized_decomposed::dequantize_per_tensor.Tensor_out quantized_decomposed::dequantize_per_token.out quantized_decomposed::mixed_linear.out quantized_decomposed::mixed_mm.out quantized_decomposed::quantize_per_channel.out quantized_decomposed::quantize_per_tensor.out quantized_decomposed::quantize_per_tensor.Tensor_out quantized_decomposed::quantize_per_token.out 2025-06-05T23:22:10.9590849Z [ 98%] Generating code for kernel registration 2025-06-05T23:22:10.9591715Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterCPUCustomOps.cpp.o 2025-06-05T23:22:10.9592735Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterSchema.cpp.o 2025-06-05T23:22:10.9593790Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:22:10.9594598Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_add.cpp.o 2025-06-05T23:22:10.9595403Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:22:10.9596252Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:22:10.9597277Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding.cpp.o 2025-06-05T23:22:10.9598109Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:22:10.9599022Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:22:10.9599851Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:22:10.9600699Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:22:10.9601577Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_quantize.cpp.o 2025-06-05T23:22:10.9602451Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/__/portable/cpu/util/reduce_util.cpp.o 2025-06-05T23:22:10.9603464Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/__/__/runtime/core/exec_aten/util/tensor_util_aten.cpp.o 2025-06-05T23:22:10.9604354Z [100%] Linking CXX shared library libquantized_ops_aot_lib.so 2025-06-05T23:22:10.9604797Z [100%] Built target quantized_ops_aot_lib 2025-06-05T23:22:10.9605099Z running build_py 2025-06-05T23:22:10.9605432Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:22:10.9606146Z copying src/executorch/codegen/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:22:10.9606900Z copying src/executorch/codegen/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:22:10.9607794Z copying src/executorch/codegen/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:22:10.9608551Z copying src/executorch/codegen/parse.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:22:10.9609333Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-06-05T23:22:10.9609982Z copying src/executorch/devtools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-06-05T23:22:10.9610781Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9611398Z copying src/executorch/exir/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9612186Z copying src/executorch/exir/_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9612931Z copying src/executorch/exir/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9613729Z copying src/executorch/exir/control_flow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9614570Z copying src/executorch/exir/delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9615344Z copying src/executorch/exir/dim_order_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9616129Z copying src/executorch/exir/dynamic_shape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9617021Z copying src/executorch/exir/error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9617805Z copying src/executorch/exir/graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9618553Z copying src/executorch/exir/graph_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9619376Z copying src/executorch/exir/lowered_backend_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9620203Z copying src/executorch/exir/memory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9621214Z copying src/executorch/exir/memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9622160Z copying src/executorch/exir/pass_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:10.9622985Z copying src/executorch/exir/pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:11.0021129Z copying src/executorch/exir/print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:11.0022156Z copying src/executorch/exir/scalar_type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:11.0022906Z copying src/executorch/exir/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:11.0023648Z copying src/executorch/exir/sym_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:11.0024367Z copying src/executorch/exir/tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:11.0025099Z copying src/executorch/exir/tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:11.0025902Z copying src/executorch/exir/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:11.0026716Z copying src/executorch/exir/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:11.0027496Z copying src/executorch/exir/wrap.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:11.0028101Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-06-05T23:22:11.0028745Z copying src/executorch/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-06-05T23:22:11.0029385Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:22:11.0030076Z copying src/executorch/util/activation_memory_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:22:11.0030922Z copying src/executorch/util/collect_env.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:22:11.0031698Z copying src/executorch/util/python_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:22:11.0032593Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0033317Z copying src/executorch/backends/arm/arm_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0034226Z copying src/executorch/backends/arm/arm_vela.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0035153Z copying src/executorch/backends/arm/ethosu_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0036118Z copying src/executorch/backends/arm/ethosu_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0037226Z copying src/executorch/backends/arm/process_node.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0038273Z copying src/executorch/backends/arm/tosa_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0039223Z copying src/executorch/backends/arm/tosa_mapping.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0040171Z copying src/executorch/backends/arm/tosa_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0041268Z copying src/executorch/backends/arm/tosa_quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0042233Z copying src/executorch/backends/arm/tosa_specification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0043180Z copying src/executorch/backends/arm/tosa_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0044156Z copying src/executorch/backends/arm/vgf_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0045114Z copying src/executorch/backends/arm/vgf_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:22:11.0045883Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:22:11.0046688Z copying src/executorch/backends/example/example_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:22:11.0047756Z copying src/executorch/backends/example/example_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:22:11.0048825Z copying src/executorch/backends/example/example_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:22:11.0049898Z copying src/executorch/backends/example/test_example_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:22:11.0050724Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:22:11.0051553Z copying src/executorch/backends/mediatek/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:22:11.0052732Z copying src/executorch/backends/mediatek/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:22:11.0053889Z copying src/executorch/backends/mediatek/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:22:11.0054678Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:22:11.0062908Z copying src/executorch/backends/nxp/neutron_node_extraction.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:22:11.0063960Z copying src/executorch/backends/nxp/neutron_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:22:11.0065190Z copying src/executorch/backends/nxp/neutron_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:22:11.0066377Z copying src/executorch/backends/nxp/nxp_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:22:11.0067328Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:22:11.0068117Z copying src/executorch/backends/openvino/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:22:11.0069210Z copying src/executorch/backends/openvino/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:22:11.0070381Z copying src/executorch/backends/openvino/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:22:11.0071534Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-06-05T23:22:11.0072352Z copying src/executorch/backends/qualcomm/qnn_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-06-05T23:22:11.0073173Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0073964Z copying src/executorch/backends/transforms/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0075028Z copying src/executorch/backends/transforms/addmm_mm_to_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0076329Z copying src/executorch/backends/transforms/convert_dtype_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0077540Z copying src/executorch/backends/transforms/decompose_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0078703Z copying src/executorch/backends/transforms/duplicate_dynamic_quant_chain.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0079891Z copying src/executorch/backends/transforms/fuse_batch_norm_with_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0081138Z copying src/executorch/backends/transforms/fuse_conv_with_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0082239Z copying src/executorch/backends/transforms/fuse_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0083303Z copying src/executorch/backends/transforms/mean_to_sum_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0084676Z copying src/executorch/backends/transforms/rank_0_to_rank_1.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0085925Z copying src/executorch/backends/transforms/remove_clone_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0087033Z copying src/executorch/backends/transforms/remove_getitem_op.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0088174Z copying src/executorch/backends/transforms/replace_scalar_with_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0089270Z copying src/executorch/backends/transforms/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0090375Z copying src/executorch/backends/transforms/view_copy_to_squeeze_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:22:11.0091389Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:22:11.0092264Z copying src/executorch/backends/vulkan/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:22:11.0093232Z copying src/executorch/backends/vulkan/custom_ops_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:22:11.0094207Z copying src/executorch/backends/vulkan/op_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:22:11.0095163Z copying src/executorch/backends/vulkan/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:22:11.0096288Z copying src/executorch/backends/vulkan/vulkan_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:22:11.0371553Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:22:11.0372406Z copying src/executorch/backends/xnnpack/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:22:11.0373429Z copying src/executorch/backends/xnnpack/xnnpack_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:22:11.0374267Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:22:11.0375064Z copying src/executorch/backends/apple/mps/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:22:11.0376153Z copying src/executorch/backends/apple/mps/mps_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:22:11.0377210Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-06-05T23:22:11.0378166Z copying src/executorch/backends/apple/coreml/compiler/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-06-05T23:22:11.0379629Z copying src/executorch/backends/apple/coreml/compiler/coreml_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-06-05T23:22:11.0380656Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-06-05T23:22:11.0381619Z copying src/executorch/backends/apple/coreml/partition/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-06-05T23:22:11.0383133Z copying src/executorch/backends/apple/coreml/partition/coreml_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-06-05T23:22:11.0384173Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-06-05T23:22:11.0385130Z copying src/executorch/backends/apple/coreml/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-06-05T23:22:11.0386514Z copying src/executorch/backends/apple/coreml/quantizer/coreml_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-06-05T23:22:11.0387501Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-06-05T23:22:11.0388485Z copying src/executorch/backends/apple/coreml/test/test_coreml_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-06-05T23:22:11.0389966Z copying src/executorch/backends/apple/coreml/test/test_coreml_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-06-05T23:22:11.0390956Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:22:11.0392062Z copying src/executorch/backends/apple/coreml/runtime/test/export_stateful_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:22:11.0393115Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0394035Z copying src/executorch/backends/apple/mps/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0395265Z copying src/executorch/backends/apple/mps/operators/activation_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0396496Z copying src/executorch/backends/apple/mps/operators/binary_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0397717Z copying src/executorch/backends/apple/mps/operators/clamp_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0399079Z copying src/executorch/backends/apple/mps/operators/constant_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0400410Z copying src/executorch/backends/apple/mps/operators/convolution_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0401819Z copying src/executorch/backends/apple/mps/operators/indexing_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0403088Z copying src/executorch/backends/apple/mps/operators/linear_algebra_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0404344Z copying src/executorch/backends/apple/mps/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0405652Z copying src/executorch/backends/apple/mps/operators/normalization_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0406914Z copying src/executorch/backends/apple/mps/operators/op_clone.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0408435Z copying src/executorch/backends/apple/mps/operators/op_getitem.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0409679Z copying src/executorch/backends/apple/mps/operators/op_quant_dequant.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0410911Z copying src/executorch/backends/apple/mps/operators/op_skip_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0412100Z copying src/executorch/backends/apple/mps/operators/pad_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0413332Z copying src/executorch/backends/apple/mps/operators/pooling_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0414672Z copying src/executorch/backends/apple/mps/operators/range_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0415957Z copying src/executorch/backends/apple/mps/operators/reduce_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0417176Z copying src/executorch/backends/apple/mps/operators/shape_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0418377Z copying src/executorch/backends/apple/mps/operators/unary_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:22:11.0419309Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-06-05T23:22:11.0420237Z copying src/executorch/backends/apple/mps/partition/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-06-05T23:22:11.0421449Z copying src/executorch/backends/apple/mps/partition/mps_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-06-05T23:22:11.0422620Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-06-05T23:22:11.0423649Z copying src/executorch/backends/apple/mps/serialization/mps_graph_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-06-05T23:22:11.0425019Z copying src/executorch/backends/apple/mps/serialization/mps_graph_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-06-05T23:22:11.0426110Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:22:11.0426971Z copying src/executorch/backends/apple/mps/test/test_mps.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:22:11.0428270Z copying src/executorch/backends/apple/mps/test/test_mps_binary_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:22:11.0429612Z copying src/executorch/backends/apple/mps/test/test_mps_indexing_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:22:11.0430799Z copying src/executorch/backends/apple/mps/test/test_mps_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:22:11.0431961Z copying src/executorch/backends/apple/mps/test/test_mps_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:22:11.0433113Z copying src/executorch/backends/apple/mps/test/test_mps_unary_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:22:11.0434269Z copying src/executorch/backends/apple/mps/test/test_mps_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:22:11.0435164Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-06-05T23:22:11.0436316Z copying src/executorch/backends/apple/mps/utils/mps_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-06-05T23:22:11.0437477Z copying src/executorch/backends/apple/mps/utils/quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-06-05T23:22:11.0438342Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0439140Z copying src/executorch/backends/arm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0736004Z copying src/executorch/backends/arm/_passes/_debug_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0737182Z copying src/executorch/backends/arm/_passes/annotate_channels_last_dim_order_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0738412Z copying src/executorch/backends/arm/_passes/annotate_decomposed_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0739510Z copying src/executorch/backends/arm/_passes/arm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0740667Z copying src/executorch/backends/arm/_passes/arm_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0741736Z copying src/executorch/backends/arm/_passes/arm_pass_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0742811Z copying src/executorch/backends/arm/_passes/broadcast_args_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0743877Z copying src/executorch/backends/arm/_passes/cast_int64_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0744941Z copying src/executorch/backends/arm/_passes/cast_to_int32_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0746126Z copying src/executorch/backends/arm/_passes/conv1d_unsqueeze_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0747286Z copying src/executorch/backends/arm/_passes/convert_any_default_dim_dims_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0748583Z copying src/executorch/backends/arm/_passes/convert_expand_copy_to_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0749738Z copying src/executorch/backends/arm/_passes/convert_full_like_to_full_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0751064Z copying src/executorch/backends/arm/_passes/convert_int_pow_to_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0752164Z copying src/executorch/backends/arm/_passes/convert_minmax_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0753282Z copying src/executorch/backends/arm/_passes/convert_split_to_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0754596Z copying src/executorch/backends/arm/_passes/convert_squeezes_to_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0755681Z copying src/executorch/backends/arm/_passes/convert_to_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0756842Z copying src/executorch/backends/arm/_passes/decompose_cosine_similarity_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0757997Z copying src/executorch/backends/arm/_passes/decompose_div_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0759082Z copying src/executorch/backends/arm/_passes/decompose_gelu_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0760410Z copying src/executorch/backends/arm/_passes/decompose_groupnorm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0761633Z copying src/executorch/backends/arm/_passes/decompose_layernorm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0762768Z copying src/executorch/backends/arm/_passes/decompose_leaky_relu_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0764037Z copying src/executorch/backends/arm/_passes/decompose_linalg_vector_norm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0765400Z copying src/executorch/backends/arm/_passes/decompose_linear_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0766720Z copying src/executorch/backends/arm/_passes/decompose_meandim_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0767850Z copying src/executorch/backends/arm/_passes/decompose_ne_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0768924Z copying src/executorch/backends/arm/_passes/decompose_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0770014Z copying src/executorch/backends/arm/_passes/decompose_silu_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0771127Z copying src/executorch/backends/arm/_passes/decompose_softmax_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0772418Z copying src/executorch/backends/arm/_passes/decompose_softmax_unstable_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0773612Z copying src/executorch/backends/arm/_passes/decompose_sqrt_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0774991Z copying src/executorch/backends/arm/_passes/decompose_sum_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0776082Z copying src/executorch/backends/arm/_passes/decompose_var_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0777241Z copying src/executorch/backends/arm/_passes/fold_qdq_with_annotated_qparams_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0778413Z copying src/executorch/backends/arm/_passes/fuse_batchnorm2d_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0779668Z copying src/executorch/backends/arm/_passes/fuse_constant_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0781035Z copying src/executorch/backends/arm/_passes/fuse_equal_placeholders_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0782210Z copying src/executorch/backends/arm/_passes/fuse_quantized_activation_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0783360Z copying src/executorch/backends/arm/_passes/insert_rescales_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0784444Z copying src/executorch/backends/arm/_passes/insert_table_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0785514Z copying src/executorch/backends/arm/_passes/match_arg_ranks_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0786730Z copying src/executorch/backends/arm/_passes/match_where_self_arg_dtype_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0787929Z copying src/executorch/backends/arm/_passes/mm_to_bmm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0788973Z copying src/executorch/backends/arm/_passes/remove_clone_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0790074Z copying src/executorch/backends/arm/_passes/replace_inf_values_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0791219Z copying src/executorch/backends/arm/_passes/replace_scalar_with_tensor_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0792385Z copying src/executorch/backends/arm/_passes/scalars_to_attribute_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0793520Z copying src/executorch/backends/arm/_passes/size_adjust_conv2d_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0794656Z copying src/executorch/backends/arm/_passes/unsqueeze_before_repeat_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0795858Z copying src/executorch/backends/arm/_passes/unsqueeze_scalar_placeholders_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:22:11.0796810Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:22:11.0797733Z copying src/executorch/backends/arm/operator_support/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:22:11.0799065Z copying src/executorch/backends/arm/operator_support/convolution_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:22:11.0800555Z copying src/executorch/backends/arm/operator_support/ethos_u55_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:22:11.1133798Z copying src/executorch/backends/arm/operator_support/minmax_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:22:11.1135259Z copying src/executorch/backends/arm/operator_support/pool_2d_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:22:11.1136583Z copying src/executorch/backends/arm/operator_support/reduce_sum_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:22:11.1137936Z copying src/executorch/backends/arm/operator_support/right_shift_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:22:11.1139391Z copying src/executorch/backends/arm/operator_support/sin_cos_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:22:11.1140782Z copying src/executorch/backends/arm/operator_support/slice_copy_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:22:11.1142050Z copying src/executorch/backends/arm/operator_support/to_copy_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:22:11.1143399Z copying src/executorch/backends/arm/operator_support/tosa_supported_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:22:11.1144656Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1145803Z copying src/executorch/backends/arm/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1147117Z copying src/executorch/backends/arm/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1148226Z copying src/executorch/backends/arm/operators/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1149593Z copying src/executorch/backends/arm/operators/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1150655Z copying src/executorch/backends/arm/operators/op_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1151808Z copying src/executorch/backends/arm/operators/op_amin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1153067Z copying src/executorch/backends/arm/operators/op_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1154144Z copying src/executorch/backends/arm/operators/op_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1155237Z copying src/executorch/backends/arm/operators/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1156295Z copying src/executorch/backends/arm/operators/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1157350Z copying src/executorch/backends/arm/operators/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1158623Z copying src/executorch/backends/arm/operators/op_constant_pad_nd.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1159766Z copying src/executorch/backends/arm/operators/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1160863Z copying src/executorch/backends/arm/operators/op_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1162141Z copying src/executorch/backends/arm/operators/op_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1163181Z copying src/executorch/backends/arm/operators/op_erf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1164233Z copying src/executorch/backends/arm/operators/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1165545Z copying src/executorch/backends/arm/operators/op_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1166702Z copying src/executorch/backends/arm/operators/op_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1167819Z copying src/executorch/backends/arm/operators/op_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1169125Z copying src/executorch/backends/arm/operators/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1170250Z copying src/executorch/backends/arm/operators/op_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1171429Z copying src/executorch/backends/arm/operators/op_max_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1172526Z copying src/executorch/backends/arm/operators/op_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1173624Z copying src/executorch/backends/arm/operators/op_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1174685Z copying src/executorch/backends/arm/operators/op_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1175797Z copying src/executorch/backends/arm/operators/op_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1176990Z copying src/executorch/backends/arm/operators/op_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1178227Z copying src/executorch/backends/arm/operators/op_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1179544Z copying src/executorch/backends/arm/operators/op_reciprocal.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1180657Z copying src/executorch/backends/arm/operators/op_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1181758Z copying src/executorch/backends/arm/operators/op_rescale.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1183171Z copying src/executorch/backends/arm/operators/op_rshift_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1184281Z copying src/executorch/backends/arm/operators/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1185372Z copying src/executorch/backends/arm/operators/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1186575Z copying src/executorch/backends/arm/operators/op_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1187630Z copying src/executorch/backends/arm/operators/op_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1188695Z copying src/executorch/backends/arm/operators/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1189757Z copying src/executorch/backends/arm/operators/op_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1190813Z copying src/executorch/backends/arm/operators/op_table.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1191884Z copying src/executorch/backends/arm/operators/op_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1193086Z copying src/executorch/backends/arm/operators/op_to_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1194210Z copying src/executorch/backends/arm/operators/op_to_dim_order_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1195368Z copying src/executorch/backends/arm/operators/op_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1196854Z copying src/executorch/backends/arm/operators/op_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1198317Z copying src/executorch/backends/arm/operators/op_upsample_nearest2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1199660Z copying src/executorch/backends/arm/operators/op_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1200726Z copying src/executorch/backends/arm/operators/op_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1202039Z copying src/executorch/backends/arm/operators/operator_validation_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1203214Z copying src/executorch/backends/arm/operators/ops_binary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1549993Z copying src/executorch/backends/arm/operators/ops_identity.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1551182Z copying src/executorch/backends/arm/operators/ops_unary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:22:11.1552029Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:22:11.1553055Z copying src/executorch/backends/arm/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:22:11.1554168Z copying src/executorch/backends/arm/quantizer/arm_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:22:11.1555308Z copying src/executorch/backends/arm/quantizer/arm_quantizer_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:22:11.1556521Z copying src/executorch/backends/arm/quantizer/quantization_annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:22:11.1557751Z copying src/executorch/backends/arm/quantizer/quantization_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:22:11.1558651Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/scripts 2025-06-05T23:22:11.1559594Z copying src/executorch/backends/arm/scripts/parse_test_names.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/scripts 2025-06-05T23:22:11.1560584Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:22:11.1561420Z copying src/executorch/backends/arm/test/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:22:11.1562415Z copying src/executorch/backends/arm/test/conftest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:22:11.1563412Z copying src/executorch/backends/arm/test/runner_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:22:11.1564425Z copying src/executorch/backends/arm/test/test_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:22:11.1565537Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util 2025-06-05T23:22:11.1566376Z copying src/executorch/backends/arm/util/arm_model_evaluator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util 2025-06-05T23:22:11.1567231Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:22:11.1568131Z copying src/executorch/backends/arm/test/misc/test_bn_relu_folding_qat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:22:11.1569322Z copying src/executorch/backends/arm/test/misc/test_custom_partition.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:22:11.1570680Z copying src/executorch/backends/arm/test/misc/test_debug_feats.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:22:11.1572003Z copying src/executorch/backends/arm/test/misc/test_dim_order_guards.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:22:11.1573171Z copying src/executorch/backends/arm/test/misc/test_lifted_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:22:11.1574336Z copying src/executorch/backends/arm/test/misc/test_model_evaluator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:22:11.1575619Z copying src/executorch/backends/arm/test/misc/test_multiple_delegates.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:22:11.1576891Z copying src/executorch/backends/arm/test/misc/test_multiple_outputs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:22:11.1578088Z copying src/executorch/backends/arm/test/misc/test_non_persistent_buffers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:22:11.1579377Z copying src/executorch/backends/arm/test/misc/test_partition_decomposed_quantized_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:22:11.1580710Z copying src/executorch/backends/arm/test/misc/test_tosa_spec.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:22:11.1581773Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:22:11.1582686Z copying src/executorch/backends/arm/test/models/test_conformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:22:11.1583879Z copying src/executorch/backends/arm/test/models/test_deit_tiny_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:22:11.1585041Z copying src/executorch/backends/arm/test/models/test_dl3_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:22:11.1586261Z copying src/executorch/backends/arm/test/models/test_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:22:11.1587552Z copying src/executorch/backends/arm/test/models/test_lstm_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:22:11.1588748Z copying src/executorch/backends/arm/test/models/test_mobilenet_v2_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:22:11.1589965Z copying src/executorch/backends/arm/test/models/test_mobilenet_v3_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:22:11.1591159Z copying src/executorch/backends/arm/test/models/test_nn_functional.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:22:11.1592462Z copying src/executorch/backends/arm/test/models/test_nn_modules.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:22:11.1593794Z copying src/executorch/backends/arm/test/models/test_torch_functions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:22:11.1594978Z copying src/executorch/backends/arm/test/models/test_w2l_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:22:11.1595860Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1596688Z copying src/executorch/backends/arm/test/ops/test_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1597737Z copying src/executorch/backends/arm/test/ops/test_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1598930Z copying src/executorch/backends/arm/test/ops/test_alias_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1600067Z copying src/executorch/backends/arm/test/ops/test_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1601221Z copying src/executorch/backends/arm/test/ops/test_amin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1602265Z copying src/executorch/backends/arm/test/ops/test_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1603330Z copying src/executorch/backends/arm/test/ops/test_arange.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1604571Z copying src/executorch/backends/arm/test/ops/test_at.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1605636Z copying src/executorch/backends/arm/test/ops/test_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1606888Z copying src/executorch/backends/arm/test/ops/test_batch_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1608060Z copying src/executorch/backends/arm/test/ops/test_bitwise.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1609290Z copying src/executorch/backends/arm/test/ops/test_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1610452Z copying src/executorch/backends/arm/test/ops/test_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1611582Z copying src/executorch/backends/arm/test/ops/test_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1612729Z copying src/executorch/backends/arm/test/ops/test_clone.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1613908Z copying src/executorch/backends/arm/test/ops/test_constant_pad_nd.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1615212Z copying src/executorch/backends/arm/test/ops/test_conv1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1616296Z copying src/executorch/backends/arm/test/ops/test_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1617374Z copying src/executorch/backends/arm/test/ops/test_conv3d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1953371Z copying src/executorch/backends/arm/test/ops/test_conv_combos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1954733Z copying src/executorch/backends/arm/test/ops/test_conv_constant_pad_nd.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1955869Z copying src/executorch/backends/arm/test/ops/test_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1957053Z copying src/executorch/backends/arm/test/ops/test_depthwise_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1958325Z copying src/executorch/backends/arm/test/ops/test_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1959368Z copying src/executorch/backends/arm/test/ops/test_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1960473Z copying src/executorch/backends/arm/test/ops/test_erf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1961604Z copying src/executorch/backends/arm/test/ops/test_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1962723Z copying src/executorch/backends/arm/test/ops/test_expand.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1963988Z copying src/executorch/backends/arm/test/ops/test_eye.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1965409Z copying src/executorch/backends/arm/test/ops/test_full.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1966635Z copying src/executorch/backends/arm/test/ops/test_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1967689Z copying src/executorch/backends/arm/test/ops/test_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1968832Z copying src/executorch/backends/arm/test/ops/test_group_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1970079Z copying src/executorch/backends/arm/test/ops/test_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1971162Z copying src/executorch/backends/arm/test/ops/test_hardsigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1972422Z copying src/executorch/backends/arm/test/ops/test_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1973651Z copying src/executorch/backends/arm/test/ops/test_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1974896Z copying src/executorch/backends/arm/test/ops/test_layer_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1976112Z copying src/executorch/backends/arm/test/ops/test_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1977184Z copying src/executorch/backends/arm/test/ops/test_leaky_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1978414Z copying src/executorch/backends/arm/test/ops/test_linalg_vector_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1979572Z copying src/executorch/backends/arm/test/ops/test_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1980709Z copying src/executorch/backends/arm/test/ops/test_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1981934Z copying src/executorch/backends/arm/test/ops/test_logical.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1983043Z copying src/executorch/backends/arm/test/ops/test_logsoftmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1984139Z copying src/executorch/backends/arm/test/ops/test_lshift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1985336Z copying src/executorch/backends/arm/test/ops/test_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1986636Z copying src/executorch/backends/arm/test/ops/test_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1987823Z copying src/executorch/backends/arm/test/ops/test_max_pool.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1989012Z copying src/executorch/backends/arm/test/ops/test_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1990103Z copying src/executorch/backends/arm/test/ops/test_mean_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1991181Z copying src/executorch/backends/arm/test/ops/test_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1992402Z copying src/executorch/backends/arm/test/ops/test_mm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1993648Z copying src/executorch/backends/arm/test/ops/test_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1994754Z copying src/executorch/backends/arm/test/ops/test_ne.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1995913Z copying src/executorch/backends/arm/test/ops/test_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1997214Z copying src/executorch/backends/arm/test/ops/test_ones.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1998313Z copying src/executorch/backends/arm/test/ops/test_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.1999543Z copying src/executorch/backends/arm/test/ops/test_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2000676Z copying src/executorch/backends/arm/test/ops/test_reciprocal.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2001817Z copying src/executorch/backends/arm/test/ops/test_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2003170Z copying src/executorch/backends/arm/test/ops/test_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2004247Z copying src/executorch/backends/arm/test/ops/test_rshift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2005470Z copying src/executorch/backends/arm/test/ops/test_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2006564Z copying src/executorch/backends/arm/test/ops/test_scalar_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2007744Z copying src/executorch/backends/arm/test/ops/test_scalars.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2008995Z copying src/executorch/backends/arm/test/ops/test_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2010053Z copying src/executorch/backends/arm/test/ops/test_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2011137Z copying src/executorch/backends/arm/test/ops/test_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2012386Z copying src/executorch/backends/arm/test/ops/test_sigmoid_16bit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2013587Z copying src/executorch/backends/arm/test/ops/test_sigmoid_32bit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2014875Z copying src/executorch/backends/arm/test/ops/test_silu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2015926Z copying src/executorch/backends/arm/test/ops/test_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2016980Z copying src/executorch/backends/arm/test/ops/test_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2018217Z copying src/executorch/backends/arm/test/ops/test_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2019282Z copying src/executorch/backends/arm/test/ops/test_split.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2020342Z copying src/executorch/backends/arm/test/ops/test_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2021441Z copying src/executorch/backends/arm/test/ops/test_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2022864Z copying src/executorch/backends/arm/test/ops/test_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2301145Z copying src/executorch/backends/arm/test/ops/test_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2302379Z copying src/executorch/backends/arm/test/ops/test_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2303460Z copying src/executorch/backends/arm/test/ops/test_to_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2304537Z copying src/executorch/backends/arm/test/ops/test_unary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2305673Z copying src/executorch/backends/arm/test/ops/test_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2306838Z copying src/executorch/backends/arm/test/ops/test_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2308048Z copying src/executorch/backends/arm/test/ops/test_upsample_nearest2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2309305Z copying src/executorch/backends/arm/test/ops/test_var.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2310360Z copying src/executorch/backends/arm/test/ops/test_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2311411Z copying src/executorch/backends/arm/test/ops/test_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2312477Z copying src/executorch/backends/arm/test/ops/test_zeros.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:22:11.2313330Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2314280Z copying src/executorch/backends/arm/test/passes/test_broadcast_args_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2315542Z copying src/executorch/backends/arm/test/passes/test_cast_int64_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2316814Z copying src/executorch/backends/arm/test/passes/test_convert_expand_copy_to_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2318259Z copying src/executorch/backends/arm/test/passes/test_convert_int_pow_to_muls.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2319532Z copying src/executorch/backends/arm/test/passes/test_convert_split_to_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2320777Z copying src/executorch/backends/arm/test/passes/test_convert_to_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2322061Z copying src/executorch/backends/arm/test/passes/test_decompose_cosine_similarity_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2323374Z copying src/executorch/backends/arm/test/passes/test_decompose_div_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2324633Z copying src/executorch/backends/arm/test/passes/test_decompose_layernorm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2325955Z copying src/executorch/backends/arm/test/passes/test_decompose_linalg_vector_norm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2327277Z copying src/executorch/backends/arm/test/passes/test_decompose_meandim_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2328646Z copying src/executorch/backends/arm/test/passes/test_decompose_softmax_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2329910Z copying src/executorch/backends/arm/test/passes/test_decompose_var_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2331238Z copying src/executorch/backends/arm/test/passes/test_fold_qdq_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2332449Z copying src/executorch/backends/arm/test/passes/test_fuse_batchnorm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2333698Z copying src/executorch/backends/arm/test/passes/test_fuse_constant_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2335011Z copying src/executorch/backends/arm/test/passes/test_fuse_equal_placeholders_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2336446Z copying src/executorch/backends/arm/test/passes/test_insert_table_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2337796Z copying src/executorch/backends/arm/test/passes/test_ioquantization_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2339039Z copying src/executorch/backends/arm/test/passes/test_remove_clone_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2340253Z copying src/executorch/backends/arm/test/passes/test_rescale_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2341619Z copying src/executorch/backends/arm/test/passes/test_unsqueeze_before_repeat_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:22:11.2342609Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer 2025-06-05T23:22:11.2343597Z copying src/executorch/backends/arm/test/quantizer/test_generic_annotater.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer 2025-06-05T23:22:11.2344566Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:22:11.2345420Z copying src/executorch/backends/arm/test/tester/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:22:11.2346878Z copying src/executorch/backends/arm/test/tester/analyze_output_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:22:11.2348063Z copying src/executorch/backends/arm/test/tester/arm_tester.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:22:11.2349226Z copying src/executorch/backends/arm/test/tester/test_pipeline.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:22:11.2350147Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tosautil 2025-06-05T23:22:11.2351035Z copying src/executorch/backends/arm/test/tosautil/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tosautil 2025-06-05T23:22:11.2352006Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:22:11.2353208Z copying src/executorch/backends/arm/third-party/serialization_lib/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:22:11.2354404Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:22:11.2355769Z copying src/executorch/backends/arm/third-party/serialization_lib/python/serializer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:22:11.2357634Z copying src/executorch/backends/arm/third-party/serialization_lib/python/serializer/tosa_serializer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:22:11.2359027Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2360593Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/ArithmeticRightShiftAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2362398Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/Attribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2364104Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/AxisAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2366230Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/ClampAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2368019Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/CondIfAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2545377Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/ConvAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2547359Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/CustomAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2549092Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/DType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2550783Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/FFTAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2552593Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/FullyConnectedAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2554661Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/MatMulAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2556569Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/MulAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2558327Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/NegateAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2560022Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/Op.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2561676Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/PadAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2563596Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/PoolAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2565875Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/RFFTAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2567639Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/RescaleAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2569434Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/ReshapeAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2571467Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2573213Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeMode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2575034Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/SliceAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2576992Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TableAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2578792Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TileAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2580531Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaBasicBlock.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2582255Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaGraph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2584199Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaOperator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2585966Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaRegion.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2587662Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaTensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2589602Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2591489Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeConvAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2593245Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/Version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2595059Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/WhileLoopAttribute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2596864Z copying src/executorch/backends/arm/third-party/serialization_lib/python/tosa/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:11.2598267Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:22:11.2599719Z copying src/executorch/backends/arm/third-party/serialization_lib/test/scripts/test_npy_fileio.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:22:11.2601281Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:22:11.2602794Z copying src/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit/xunit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:22:11.2604194Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:22:11.2605657Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conanfile.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:22:11.2607498Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:22:11.2609021Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/build.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:22:11.2610575Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:22:11.2612180Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/generate_goldens.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:22:11.2614270Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/golden_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:22:11.2615847Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:22:11.2804650Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:22:11.2806785Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:22:11.2808349Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:22:11.2810017Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/sample_binary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:22:11.2811805Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:11.2813670Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:11.2816019Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check_generate_code.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:11.2818488Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_code.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:11.2820603Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_grpc_examples.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:11.2823155Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:11.2824827Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:11.2826753Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test_generated.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:11.2829020Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_flexbuffers_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:11.2831270Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:11.2832956Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package 2025-06-05T23:22:11.2834683Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package/conanfile.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package 2025-06-05T23:22:11.2836530Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:22:11.2838165Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:22:11.2839813Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:22:11.2842034Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:22:11.2843830Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:22:11.2845475Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:22:11.2847118Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:22:11.2848870Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:22:11.2850609Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:22:11.2852267Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:22:11.2853921Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:22:11.2856035Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:22:11.2857889Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:22:11.2859720Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:22:11.2861537Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:22:11.2863246Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:22:11.2864941Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:22:11.2866825Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:22:11.2868617Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:22:11.2870245Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:22:11.2872192Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:22:11.2873887Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Galaxy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:22:11.2876104Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Universe.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:22:11.2991573Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:22:11.2993709Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:22:11.2995598Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:22:11.2997304Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:22:11.2998963Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:22:11.3000632Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:22:11.3002273Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:22:11.3004007Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:22:11.3005723Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:22:11.3007340Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests/grpctest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:22:11.3009050Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter 2025-06-05T23:22:11.3010940Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/client.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter 2025-06-05T23:22:11.3013481Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/server.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter 2025-06-05T23:22:11.3015569Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:22:11.3017591Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloReply.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:22:11.3020262Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloRequest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:22:11.3022897Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:22:11.3025590Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/greeter_grpc_fb.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:22:11.3027673Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:22:11.3029574Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:22:11.3032075Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:22:11.3034478Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:22:11.3036308Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:22:11.3038299Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:22:11.3040845Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:22:11.3043374Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:22:11.3045875Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:22:11.3047741Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC 2025-06-05T23:22:11.3049649Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC 2025-06-05T23:22:11.3052107Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC 2025-06-05T23:22:11.3054008Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:22:11.3055996Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:22:11.3058612Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:22:11.3061252Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:22:11.3184797Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3186860Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3189585Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3192451Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3195313Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3198045Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3200656Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3203445Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3206041Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3208693Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3211367Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3214181Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3217157Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3219838Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3222436Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3225374Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3228185Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3230902Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3233648Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3236505Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3239152Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3241677Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3244570Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/monster_test_grpc_fb.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:11.3246723Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2 2025-06-05T23:22:11.3248697Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2 2025-06-05T23:22:11.3251335Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2 2025-06-05T23:22:11.3253348Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3255481Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3258290Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Color.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3436451Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/NestedUnionTest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3439565Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3442757Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3445941Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Vec3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3449035Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3451213Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:22:11.3453344Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:22:11.3456395Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:22:11.3459442Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:22:11.3462686Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:22:11.3465926Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:22:11.3468065Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:11.3470029Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:11.3472552Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/_version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:11.3474816Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:11.3477060Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/compat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:11.3479311Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/encode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:11.3481681Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/flexbuffers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:11.3484580Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/number_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:11.3487202Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/packer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:11.3489718Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/table.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:11.3491961Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:11.3493977Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3496105Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/AdvancedFeatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3498809Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/BaseType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3501275Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Enum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3503788Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/EnumVal.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3506720Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Field.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3509284Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/KeyValue.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3511753Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Object.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3610071Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/RPCCall.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3612999Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3615786Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/SchemaFile.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3618966Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Service.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3621660Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3624363Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:11.3626481Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:22:11.3628446Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/InParentNamespace.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:22:11.3631140Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/MonsterExtra.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:22:11.3633891Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:22:11.3635841Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:22:11.3637971Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/generate_annotations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:22:11.3640234Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:11.3642113Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_cpp_tests.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:11.3644653Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_kotlin_tests.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:11.3647144Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_schema_tests.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:11.3649563Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:11.3652047Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_ts_tests.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:11.3654462Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/main.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:11.3656225Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:22:11.3658028Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim/testnim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:22:11.3659954Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:22:11.3661998Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/OptionalByte.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:22:11.3664615Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:22:11.3667362Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:22:11.3669064Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:22:11.3670683Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/TypeScriptTest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:22:11.3672371Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3674257Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Ability.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3676522Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3678873Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3681501Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3684143Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3686666Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3691798Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Color.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3694392Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/LongEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3697161Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Monster.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3699482Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3702238Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Race.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3704851Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Referrable.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3707465Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Stat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3710046Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3712798Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3715192Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3717571Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3719985Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3722417Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3724710Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Vec3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3727061Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3729623Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/monster_test_grpc_fb.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:11.3731437Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:22:11.3733212Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/Monster.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:22:11.3735512Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:22:11.3737420Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3739328Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3742308Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Color.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3744925Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/NestedUnionTest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3747728Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3750555Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3753203Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Vec3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3755731Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:11.3757632Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:22:11.3759767Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:22:11.3762310Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:22:11.3764828Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:22:11.4042988Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:22:11.4045097Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC 2025-06-05T23:22:11.4047018Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC 2025-06-05T23:22:11.4049598Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC 2025-06-05T23:22:11.4051595Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:22:11.4053775Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:22:11.4056676Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:22:11.4059475Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:22:11.4062277Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:22:11.4065177Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:22:11.4066907Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4067718Z copying src/executorch/backends/cadence/aot/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4068756Z copying src/executorch/backends/cadence/aot/compiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4069866Z copying src/executorch/backends/cadence/aot/compiler_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4070961Z copying src/executorch/backends/cadence/aot/decompose_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4072062Z copying src/executorch/backends/cadence/aot/export_example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4073347Z copying src/executorch/backends/cadence/aot/fuse_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4074408Z copying src/executorch/backends/cadence/aot/graph_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4075522Z copying src/executorch/backends/cadence/aot/memory_constraints.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4076763Z copying src/executorch/backends/cadence/aot/memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4077884Z copying src/executorch/backends/cadence/aot/ops_registrations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4078975Z copying src/executorch/backends/cadence/aot/pass_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4080005Z copying src/executorch/backends/cadence/aot/passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4081097Z copying src/executorch/backends/cadence/aot/ref_implementations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4082191Z copying src/executorch/backends/cadence/aot/remove_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4083265Z copying src/executorch/backends/cadence/aot/reorder_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4084333Z copying src/executorch/backends/cadence/aot/replace_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4085542Z copying src/executorch/backends/cadence/aot/simplify_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4086712Z copying src/executorch/backends/cadence/aot/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:11.4087719Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:22:11.4088595Z copying src/executorch/backends/cadence/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:22:11.4089716Z copying src/executorch/backends/cadence/runtime/executor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:22:11.4090924Z copying src/executorch/backends/cadence/runtime/runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:22:11.4092044Z copying src/executorch/backends/cadence/runtime/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:22:11.4092902Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:22:11.4093821Z copying src/executorch/backends/cadence/utils/facto_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:22:11.4095034Z copying src/executorch/backends/cadence/utils/gen_header.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:22:11.4096341Z copying src/executorch/backends/cadence/utils/post_compilation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:22:11.4097330Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:22:11.4098421Z copying src/executorch/backends/cadence/aot/quantizer/fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:22:11.4099690Z copying src/executorch/backends/cadence/aot/quantizer/patterns.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:22:11.4100965Z copying src/executorch/backends/cadence/aot/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:22:11.4102208Z copying src/executorch/backends/cadence/aot/quantizer/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:22:11.4103148Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:22:11.4104239Z copying src/executorch/backends/cadence/aot/tests/test_decompose_ops_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:22:11.4105798Z copying src/executorch/backends/cadence/aot/tests/test_fusion_ops_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:22:11.4107170Z copying src/executorch/backends/cadence/aot/tests/test_graph_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:22:11.4108411Z copying src/executorch/backends/cadence/aot/tests/test_memory_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:22:11.4109633Z copying src/executorch/backends/cadence/aot/tests/test_pass_filter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:22:11.4111001Z copying src/executorch/backends/cadence/aot/tests/test_remove_ops_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:22:11.4330919Z copying src/executorch/backends/cadence/aot/tests/test_reorder_ops_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:22:11.4332231Z copying src/executorch/backends/cadence/aot/tests/test_replace_ops_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:22:11.4333696Z copying src/executorch/backends/cadence/aot/tests/test_simplify_ops_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:22:11.4334894Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO 2025-06-05T23:22:11.4335909Z copying src/executorch/backends/cadence/utils/FACTO/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO 2025-06-05T23:22:11.4336893Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:22:11.4338088Z copying src/executorch/backends/cadence/utils/FACTO/calibrator/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:22:11.4339520Z copying src/executorch/backends/cadence/utils/FACTO/calibrator/runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:22:11.4340710Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:22:11.4341850Z copying src/executorch/backends/cadence/utils/FACTO/examples/example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:22:11.4343291Z copying src/executorch/backends/cadence/utils/FACTO/examples/minimal_example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:22:11.4344730Z copying src/executorch/backends/cadence/utils/FACTO/examples/random_seed.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:22:11.4345896Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:22:11.4347107Z copying src/executorch/backends/cadence/utils/FACTO/facto/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:22:11.4348159Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:22:11.4349311Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:22:11.4350455Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:22:11.4351562Z copying src/executorch/backends/cadence/utils/FACTO/facto/specdb/db.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:22:11.4353330Z copying src/executorch/backends/cadence/utils/FACTO/facto/specdb/default.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:22:11.4354823Z copying src/executorch/backends/cadence/utils/FACTO/facto/specdb/dtypes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:22:11.4356301Z copying src/executorch/backends/cadence/utils/FACTO/facto/specdb/function.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:22:11.4357510Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:22:11.4359018Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:22:11.4360725Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:22:11.4362430Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:22:11.4363774Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:22:11.4365306Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:22:11.4367133Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:22:11.4368820Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:22:11.4370512Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:22:11.4372004Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:22:11.4373322Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:22:11.4375051Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:22:11.4376782Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:22:11.4378506Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/solve.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:22:11.4379812Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:22:11.4381126Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:22:11.4382886Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:22:11.4384137Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:22:11.4385509Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:22:11.4387245Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/random_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:22:11.4388551Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:11.4389838Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:11.4391760Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:11.4393486Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:11.4395258Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/solve.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:11.4396964Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/space.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:11.4398666Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:11.4400523Z copying src/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:11.4401782Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4663336Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4665776Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_generator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4668338Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_attributes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4670082Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_generator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4671707Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4673891Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4676963Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_solver.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4679644Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_constraints.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4681230Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_meta_arg_engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4682987Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_specs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4684620Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_structural_engine.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4686228Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_generation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4687842Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_solving.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4689424Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_space.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4691095Z copying src/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:11.4692194Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-06-05T23:22:11.4693031Z copying src/executorch/backends/cortex_m/ops/operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-06-05T23:22:11.4694320Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-06-05T23:22:11.4695979Z copying src/executorch/backends/cortex_m/passes/replace_quant_nodes_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-06-05T23:22:11.4697027Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test 2025-06-05T23:22:11.4697936Z copying src/executorch/backends/cortex_m/test/test_replace_quant_nodes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test 2025-06-05T23:22:11.4698957Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:22:11.4700194Z copying src/executorch/backends/example/example_backend_delegate_passes/merge_to_dim_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:22:11.4702658Z copying src/executorch/backends/example/example_backend_delegate_passes/permute_memory_formats_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:22:11.4704328Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:22:11.4705411Z copying src/executorch/backends/example/example_operators/adaptive_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:22:11.4706826Z copying src/executorch/backends/example/example_operators/add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:22:11.4708094Z copying src/executorch/backends/example/example_operators/conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:22:11.4709396Z copying src/executorch/backends/example/example_operators/conv_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:22:11.4711124Z copying src/executorch/backends/example/example_operators/dropout.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:22:11.4713213Z copying src/executorch/backends/example/example_operators/flatten.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:22:11.4714678Z copying src/executorch/backends/example/example_operators/linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:22:11.4715976Z copying src/executorch/backends/example/example_operators/op_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:22:11.4717417Z copying src/executorch/backends/example/example_operators/ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:22:11.4719696Z copying src/executorch/backends/example/example_operators/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:22:11.4720693Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:22:11.4721575Z copying src/executorch/backends/mediatek/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:22:11.4723013Z copying src/executorch/backends/mediatek/_passes/decompose_scaled_dot_product_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:22:11.4724013Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:22:11.4725230Z copying src/executorch/backends/mediatek/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:22:11.4727340Z copying src/executorch/backends/mediatek/quantizer/annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:22:11.4728669Z copying src/executorch/backends/mediatek/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:22:11.4729882Z copying src/executorch/backends/mediatek/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:22:11.4730804Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-06-05T23:22:11.4731754Z copying src/executorch/backends/nxp/aten_passes/fuse_batch_norm_with_conv_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-06-05T23:22:11.4733503Z copying src/executorch/backends/nxp/aten_passes/fuse_batch_norm_with_linear_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-06-05T23:22:11.4735607Z copying src/executorch/backends/nxp/aten_passes/neutron_aten_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-06-05T23:22:11.4736541Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:22:11.4737378Z copying src/executorch/backends/nxp/backend/edge_helper.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:22:11.4738507Z copying src/executorch/backends/nxp/backend/edge_program_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:22:11.4740049Z copying src/executorch/backends/nxp/backend/neutron_converter_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:22:11.4742104Z copying src/executorch/backends/nxp/backend/node_format_inference.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:22:11.4743012Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:22:11.4743921Z copying src/executorch/backends/nxp/quantizer/neutron_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:22:11.4995683Z copying src/executorch/backends/nxp/quantizer/patterns.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:22:11.4996970Z copying src/executorch/backends/nxp/quantizer/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:22:11.4998598Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:22:11.5000145Z copying src/executorch/backends/nxp/tests/executorch_pipeline.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:22:11.5001415Z copying src/executorch/backends/nxp/tests/executors.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:22:11.5002606Z copying src/executorch/backends/nxp/tests/exported_program_vizualize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:22:11.5003708Z copying src/executorch/backends/nxp/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:22:11.5004782Z copying src/executorch/backends/nxp/tests/test_batch_norm_fusion.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:22:11.5006272Z copying src/executorch/backends/nxp/tests/test_neutron_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:22:11.5008363Z copying src/executorch/backends/nxp/tests/test_neutron_converter_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:22:11.5009883Z copying src/executorch/backends/nxp/tests/test_node_format_inference.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:22:11.5011301Z copying src/executorch/backends/nxp/tests/test_operator_selector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:22:11.5012438Z copying src/executorch/backends/nxp/tests/test_qdq_clustering_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:22:11.5015224Z copying src/executorch/backends/nxp/tests/test_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:22:11.5016472Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:22:11.5017424Z copying src/executorch/backends/nxp/backend/ir/conversion_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:22:11.5018718Z copying src/executorch/backends/nxp/backend/ir/conversion_context.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:22:11.5020008Z copying src/executorch/backends/nxp/backend/ir/logger.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:22:11.5021855Z copying src/executorch/backends/nxp/backend/ir/tensor_formatting.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:22:11.5023447Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:22:11.5024468Z copying src/executorch/backends/nxp/backend/ir/converter/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:22:11.5026458Z copying src/executorch/backends/nxp/backend/ir/converter/node_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:22:11.5028334Z copying src/executorch/backends/nxp/backend/ir/converter/quantization_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:22:11.5030862Z copying src/executorch/backends/nxp/backend/ir/converter/tensor_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:22:11.5032104Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:22:11.5033030Z copying src/executorch/backends/nxp/backend/ir/lib/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:22:11.5034043Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:22:11.5035396Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:22:11.5036965Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/tflite_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:22:11.5038149Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:11.5039368Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:11.5040884Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/graph_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:11.5042377Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/operator_rules.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:11.5043837Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:11.5045378Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/pattern_matcher.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:11.5046927Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/tensor_rules.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:11.5048264Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:22:11.5049393Z copying src/executorch/backends/nxp/backend/ir/converter/builder/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:22:11.5050931Z copying src/executorch/backends/nxp/backend/ir/converter/builder/aten_model_builder_director.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:22:11.5052526Z copying src/executorch/backends/nxp/backend/ir/converter/builder/model_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:22:11.5054232Z copying src/executorch/backends/nxp/backend/ir/converter/builder/quantization_verification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:22:11.5055465Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:22:11.5067028Z copying src/executorch/backends/nxp/backend/ir/converter/conversion/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:22:11.5068649Z copying src/executorch/backends/nxp/backend/ir/converter/conversion/aten_translator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:22:11.5070234Z copying src/executorch/backends/nxp/backend/ir/converter/conversion/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:22:11.5071949Z copying src/executorch/backends/nxp/backend/ir/converter/conversion/translator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:22:11.5073174Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:22:11.5074415Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:22:11.5075718Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5077372Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5079283Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/addmm_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5081348Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/avg_pool_2d_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5083343Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/constant_pad_nd_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5315660Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/convolution_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5317876Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/max_pool_2d_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5319996Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mm_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5321941Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/permute_copy_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5324013Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_dequantize_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5326093Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_quantize_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5328040Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/relu_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5330148Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/softmax_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5332121Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/view_copy_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:11.5333578Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:22:11.5334983Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/shared/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:22:11.5336817Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/shared/recurrent_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:22:11.5338741Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/shared/reduce_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:22:11.5340698Z copying src/executorch/backends/nxp/backend/ir/converter/node_converters/shared/reshape_transposition.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:22:11.5341986Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5343070Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ATan2Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5344479Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/AbsOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5346134Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ActivationFunctionType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5347623Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/AddNOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5349115Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/AddOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5350560Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ArgMaxOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5352090Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ArgMinOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5353571Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/AssignVariableOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5355078Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BatchMatMulOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5356703Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BatchToSpaceNDOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5358312Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceLSTMOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5359972Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceRNNOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5361575Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BitcastOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5363108Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BitwiseXorOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5364579Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BroadcastToOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5366221Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BucketizeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5367693Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Buffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5369145Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOperator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5370718Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5372197Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5373726Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CallOnceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5375152Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CallOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5376526Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CastOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5378055Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CombinerType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5379554Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ConcatEmbeddingsOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5381185Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ConcatenationOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5382660Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Conv2DOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5384216Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Conv3DOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5385679Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CosOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5387087Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CumsumOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5596967Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CustomOptionsFormat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5598493Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/CustomQuantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5599952Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DensifyOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5601440Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DepthToSpaceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5603076Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DepthwiseConv2DOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5604594Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DequantizeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5606033Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DilateOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5607480Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DimensionMetadata.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5608929Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DimensionType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5610548Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DivOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5612125Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/DynamicUpdateSliceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5613743Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/EmbeddingLookupSparseOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5615258Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/EqualOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5616818Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ExpOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5618248Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ExpandDimsOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5619715Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/FakeQuantOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5621282Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/FillOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5622794Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/FloorDivOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5624231Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/FloorModOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5625807Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5627557Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptionsWeightsFormat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5629147Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/GatherNdOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5630582Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/GatherOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5632030Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/GeluOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5633571Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/GreaterEqualOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5635045Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/GreaterOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5636486Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/HardSwishOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5638104Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/HashtableFindOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5639633Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/HashtableImportOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5641125Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/HashtableOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5642749Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/HashtableSizeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5644273Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/IfOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5645644Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Int32Vector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5647045Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/L2NormOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5648642Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5650125Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5651586Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LSTMKernelType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5653161Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LSTMOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5654586Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LeakyReluOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5656049Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LessEqualOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5657461Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LessOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5659074Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LocalResponseNormalizationOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5660743Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LogSoftmaxOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5662203Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LogicalAndOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5663677Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LogicalNotOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5665448Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/LogicalOrOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5666988Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/MatrixDiagOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5668488Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/MatrixSetDiagOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5670060Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/MaximumMinimumOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5879250Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Metadata.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5880687Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadMode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5882337Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5883830Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5885194Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/MulOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5886583Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/NegOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5888134Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV4Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5889740Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV5Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5891282Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/NotEqualOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5892790Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/OneHotOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5894259Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Operator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5895635Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/OperatorCode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5897044Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/PackOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5898448Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/PadOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5899838Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/PadV2Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5901323Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Padding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5902707Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Pool2DOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5904100Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/PowOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5905623Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/QuantizationDetails.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5907234Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/QuantizationParameters.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5908728Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/QuantizeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5910143Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/RNNOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5911560Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/RandomOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5913021Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/RangeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5914516Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/RankOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5915971Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReadVariableOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5917473Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowFunction.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5918979Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5920433Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReducerOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5921943Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReshapeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5923484Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ResizeBilinearOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5925053Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ResizeNearestNeighborOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5926703Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReverseSequenceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5928210Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ReverseV2Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5929646Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Rfft2dOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5931102Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/RightShiftOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5932549Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/RngAlgorithm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5933941Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SVDFOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5935432Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ScatterNdOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5936905Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SegmentSumOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5938357Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SelectOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5939796Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SelectV2Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5941319Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SequenceRNNOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5942767Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ShapeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5944172Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SignOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5945755Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SignatureDef.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5947199Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SkipGramOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5948643Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SliceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.5950056Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SoftmaxOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6172681Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SpaceToBatchNDOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6174263Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SpaceToDepthOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6175905Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SparseIndexVector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6177550Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SparseToDenseOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6179063Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SparsityParameters.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6180875Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SplitOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6182684Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SplitVOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6184222Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SquareOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6185796Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SquaredDifferenceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6187309Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SqueezeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6188861Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloBroadcastInDimOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6190591Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloCompareOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6192189Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonDirection.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6193764Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6195341Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloConcatenateOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6196947Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloConvolutionOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6198676Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloCustomCallOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6200377Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloDotGeneralOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6201991Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloDynamicSliceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6203565Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloGatherOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6205219Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloIotaOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6206738Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloPadOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6208322Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloPrecisionConfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6209901Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6211512Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceWindowOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6213200Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloRngBitGeneratorOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6214814Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloScatterOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6216410Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloSliceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6218058Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloSortOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6219605Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloTransposeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6221159Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StablehloWhileOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6222663Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/StridedSliceOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6224097Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SubGraph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6225471Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/SubOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6227037Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6228566Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/TensorMap.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6229986Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/TensorType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6231563Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/TileOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6232985Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/TopKV2Options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6234450Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/TransposeConvOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6235940Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/TransposeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6237375Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Uint16Vector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6238766Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/Uint8Vector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6240361Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UnidirectionalSequenceLSTMOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6242062Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UniqueOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6243511Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UnpackOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6245021Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMaxOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6246613Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMinOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6431108Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentProdOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6432752Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentSumOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6434343Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/VarHandleOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6435914Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/VariantSubType.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6437349Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/WhereOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6438756Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/WhileOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6440185Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/ZerosLikeOptions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6441565Z copying src/executorch/backends/nxp/backend/ir/lib/tflite/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:11.6442688Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6443993Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6446027Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/abs_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6447780Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_n_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6449508Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6451516Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_max_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6453276Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_min_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6455141Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/average_pool_2d_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6457176Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/batch_mat_mul_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6459058Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_lstm_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6461166Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_rnn_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6463134Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bitwise_xor_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6464940Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/broadcast_to_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6467126Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cast_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6468923Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/concatenation_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6470732Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_2d_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6472617Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_3d_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6474375Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cum_sum_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6476266Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depth_to_space_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6478363Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depthwise_conv_2d_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6480220Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/dequantize_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6481986Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/div_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6483856Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/equal_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6485600Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/exp_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6487444Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/floor_mod_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6489409Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/fully_connected_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6491218Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_nd_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6492993Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6494734Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gelu_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6496658Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_equal_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6498454Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6500227Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/hard_swish_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6656197Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/leaky_relu_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6658012Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_equal_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6659972Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6661938Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/log_softmax_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6663895Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_and_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6666115Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_not_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6667898Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_or_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6669843Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lrn_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6671588Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lstm_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6673461Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/max_pool_2d_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6675403Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/maximum_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6677159Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mean_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6679017Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/minimum_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6680793Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mirror_pad_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6682736Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mul_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6684513Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/multinomial_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6686271Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/neg_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6688028Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/not_equal_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6689938Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/one_hot_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6691670Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6693409Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_v2_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6695240Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pow_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6697179Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/quantize_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6698953Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/range_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6700730Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_max_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6702611Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_min_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6704520Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_prod_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6706374Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reshape_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6708175Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_bilinear_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6710225Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_nearest_neighbor_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6712115Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reverse_sequence_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6713984Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/scatter_nd_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6715818Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/select_v2_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6717671Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/shape_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6719409Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sign_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6721156Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/slice_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6723074Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/softmax_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6724882Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/space_to_depth_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6884299Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6887207Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_v_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6889507Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/square_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6891431Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squared_difference_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6893991Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squeeze_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6896749Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/strided_slice_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6898590Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sub_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6900656Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sum_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6903430Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/tile_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6905450Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_conv_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6907377Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6910583Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_lstm_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6912753Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_rnn_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:11.6914213Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:22:11.6916621Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/custom_options/flex_transpose_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:22:11.6918294Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:22:11.6919636Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/meta/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:22:11.6921130Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/meta/meta.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:22:11.6922764Z copying src/executorch/backends/nxp/backend/ir/tflite_generator/meta/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:22:11.6924317Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6926678Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6929532Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/base_optimization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6931590Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/combine_hard_sigmoid_and_mul_to_hard_swish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6933959Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/eliminate_dead_branches.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6936717Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_activation_functions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6938722Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_fully_connected_and_add_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6940650Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_quanitze_into_preceding_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6943560Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/keep_one_empty_buffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6947022Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/move_relu_before_concat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6949526Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/permute_fully_connected_weights_after_reshape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6951537Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_cast_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6953910Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_quantize_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6957311Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_reshape_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6959359Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_transpose_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6961331Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/remove_unused_tensors_and_buffers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6964555Z copying src/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/replace_average_pool_before_fully_connected_with_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:11.6967553Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:11.6969234Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_avg_pool2d_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:11.6971029Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_constant_pad_nd_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:11.6973013Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_conv_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:11.7222146Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_linear_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:11.7224471Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_max_pool_2d_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:11.7226972Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_permute_copy_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:11.7228729Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_relu_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:11.7230549Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_softmax_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:11.7233248Z copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_view_copy_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:11.7234635Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:22:11.7235562Z copying src/executorch/backends/openvino/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:22:11.7237000Z copying src/executorch/backends/openvino/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:22:11.7238644Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests 2025-06-05T23:22:11.7239807Z copying src/executorch/backends/openvino/tests/test_runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests 2025-06-05T23:22:11.7240866Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/models 2025-06-05T23:22:11.7241893Z copying src/executorch/backends/openvino/tests/models/test_classification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/models 2025-06-05T23:22:11.7243126Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:22:11.7244845Z copying src/executorch/backends/openvino/tests/ops/base_openvino_op_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:22:11.7246318Z copying src/executorch/backends/openvino/tests/ops/test_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:22:11.7247578Z copying src/executorch/backends/openvino/tests/ops/test_addmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:22:11.7248935Z copying src/executorch/backends/openvino/tests/ops/test_arange.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:22:11.7250935Z copying src/executorch/backends/openvino/tests/ops/test_batch_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:22:11.7252632Z copying src/executorch/backends/openvino/tests/ops/test_convolution.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:22:11.7253952Z copying src/executorch/backends/openvino/tests/ops/test_mean.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:22:11.7255145Z copying src/executorch/backends/openvino/tests/ops/test_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:22:11.7257283Z copying src/executorch/backends/openvino/tests/ops/test_pooling.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:22:11.7258789Z copying src/executorch/backends/openvino/tests/ops/test_unary_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:22:11.7260190Z copying src/executorch/backends/openvino/tests/ops/test_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:22:11.7261140Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7262677Z copying src/executorch/backends/qualcomm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7264352Z copying src/executorch/backends/qualcomm/_passes/annotate_adaptive_avg_pool1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7265944Z copying src/executorch/backends/qualcomm/_passes/annotate_quant_attrs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7267146Z copying src/executorch/backends/qualcomm/_passes/annotate_stack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7269185Z copying src/executorch/backends/qualcomm/_passes/annotate_unbind.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7270780Z copying src/executorch/backends/qualcomm/_passes/build_quant_io.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7272076Z copying src/executorch/backends/qualcomm/_passes/convert_bmm_to_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7273306Z copying src/executorch/backends/qualcomm/_passes/convert_conv1d_to_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7274539Z copying src/executorch/backends/qualcomm/_passes/convert_square_to_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7276649Z copying src/executorch/backends/qualcomm/_passes/decompose_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7279087Z copying src/executorch/backends/qualcomm/_passes/decompose_cdist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7281445Z copying src/executorch/backends/qualcomm/_passes/decompose_einsum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7283825Z copying src/executorch/backends/qualcomm/_passes/decompose_expm1.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7286304Z copying src/executorch/backends/qualcomm/_passes/decompose_linalg_vector_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7288709Z copying src/executorch/backends/qualcomm/_passes/decompose_roll.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7290973Z copying src/executorch/backends/qualcomm/_passes/decompose_silu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7292638Z copying src/executorch/backends/qualcomm/_passes/expand_broadcast_tensor_shape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7293979Z copying src/executorch/backends/qualcomm/_passes/fixed_linear_keep_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7295139Z copying src/executorch/backends/qualcomm/_passes/fold_qdq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7296676Z copying src/executorch/backends/qualcomm/_passes/fuse_consecutive_cast.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7298806Z copying src/executorch/backends/qualcomm/_passes/fuse_consecutive_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7300036Z copying src/executorch/backends/qualcomm/_passes/i64_to_i32.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7301350Z copying src/executorch/backends/qualcomm/_passes/insert_io_qdq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7302526Z copying src/executorch/backends/qualcomm/_passes/insert_requantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7303727Z copying src/executorch/backends/qualcomm/_passes/layout_transform.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7304954Z copying src/executorch/backends/qualcomm/_passes/lift_constant_scalar_operands.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7306258Z copying src/executorch/backends/qualcomm/_passes/qnn_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7307472Z copying src/executorch/backends/qualcomm/_passes/recompose_pixel_unshuffle.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7585339Z copying src/executorch/backends/qualcomm/_passes/recompose_rms_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7586656Z copying src/executorch/backends/qualcomm/_passes/reduce_dynamic_range.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7587885Z copying src/executorch/backends/qualcomm/_passes/remove_0d_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7589070Z copying src/executorch/backends/qualcomm/_passes/remove_redundancy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7590341Z copying src/executorch/backends/qualcomm/_passes/replace_arange_args.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7591568Z copying src/executorch/backends/qualcomm/_passes/replace_index_put_input.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7592785Z copying src/executorch/backends/qualcomm/_passes/replace_inf_values.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7593935Z copying src/executorch/backends/qualcomm/_passes/tag_quant_io.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7595045Z copying src/executorch/backends/qualcomm/_passes/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:22:11.7595903Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7597042Z copying src/executorch/backends/qualcomm/builders/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7598225Z copying src/executorch/backends/qualcomm/builders/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7599385Z copying src/executorch/backends/qualcomm/builders/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7600591Z copying src/executorch/backends/qualcomm/builders/op_adaptive_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7601795Z copying src/executorch/backends/qualcomm/builders/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7603018Z copying src/executorch/backends/qualcomm/builders/op_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7604155Z copying src/executorch/backends/qualcomm/builders/op_and.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7605386Z copying src/executorch/backends/qualcomm/builders/op_arange.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7606548Z copying src/executorch/backends/qualcomm/builders/op_argmin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7607848Z copying src/executorch/backends/qualcomm/builders/op_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7609047Z copying src/executorch/backends/qualcomm/builders/op_batch_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7610208Z copying src/executorch/backends/qualcomm/builders/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7611342Z copying src/executorch/backends/qualcomm/builders/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7612473Z copying src/executorch/backends/qualcomm/builders/op_ceil.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7613708Z copying src/executorch/backends/qualcomm/builders/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7614849Z copying src/executorch/backends/qualcomm/builders/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7615992Z copying src/executorch/backends/qualcomm/builders/op_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7617130Z copying src/executorch/backends/qualcomm/builders/op_cum_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7618309Z copying src/executorch/backends/qualcomm/builders/op_depth_to_space.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7619629Z copying src/executorch/backends/qualcomm/builders/op_dequantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7620794Z copying src/executorch/backends/qualcomm/builders/op_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7621913Z copying src/executorch/backends/qualcomm/builders/op_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7623072Z copying src/executorch/backends/qualcomm/builders/op_embedding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7624225Z copying src/executorch/backends/qualcomm/builders/op_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7625453Z copying src/executorch/backends/qualcomm/builders/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7626749Z copying src/executorch/backends/qualcomm/builders/op_expand.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7627890Z copying src/executorch/backends/qualcomm/builders/op_full.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7629051Z copying src/executorch/backends/qualcomm/builders/op_full_like.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7630228Z copying src/executorch/backends/qualcomm/builders/op_gather.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7631375Z copying src/executorch/backends/qualcomm/builders/op_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7632552Z copying src/executorch/backends/qualcomm/builders/op_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7633768Z copying src/executorch/backends/qualcomm/builders/op_group_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7634929Z copying src/executorch/backends/qualcomm/builders/op_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7636102Z copying src/executorch/backends/qualcomm/builders/op_hardsigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7637383Z copying src/executorch/backends/qualcomm/builders/op_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7638571Z copying src/executorch/backends/qualcomm/builders/op_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7639743Z copying src/executorch/backends/qualcomm/builders/op_index.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7640900Z copying src/executorch/backends/qualcomm/builders/op_index_put.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7642104Z copying src/executorch/backends/qualcomm/builders/op_instance_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7643420Z copying src/executorch/backends/qualcomm/builders/op_layer_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7644579Z copying src/executorch/backends/qualcomm/builders/op_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7645728Z copying src/executorch/backends/qualcomm/builders/op_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7646862Z copying src/executorch/backends/qualcomm/builders/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7648028Z copying src/executorch/backends/qualcomm/builders/op_log_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7649310Z copying src/executorch/backends/qualcomm/builders/op_logical_not.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7650456Z copying src/executorch/backends/qualcomm/builders/op_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7651595Z copying src/executorch/backends/qualcomm/builders/op_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7944206Z copying src/executorch/backends/qualcomm/builders/op_max.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7945429Z copying src/executorch/backends/qualcomm/builders/op_max_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7946741Z copying src/executorch/backends/qualcomm/builders/op_mean_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7947895Z copying src/executorch/backends/qualcomm/builders/op_min.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7949023Z copying src/executorch/backends/qualcomm/builders/op_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7950156Z copying src/executorch/backends/qualcomm/builders/op_ne.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7951293Z copying src/executorch/backends/qualcomm/builders/op_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7952408Z copying src/executorch/backends/qualcomm/builders/op_or.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7953722Z copying src/executorch/backends/qualcomm/builders/op_pad.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7954950Z copying src/executorch/backends/qualcomm/builders/op_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7956282Z copying src/executorch/backends/qualcomm/builders/op_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7957451Z copying src/executorch/backends/qualcomm/builders/op_quantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7958610Z copying src/executorch/backends/qualcomm/builders/op_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7959930Z copying src/executorch/backends/qualcomm/builders/op_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7961991Z copying src/executorch/backends/qualcomm/builders/op_reshape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7963454Z copying src/executorch/backends/qualcomm/builders/op_resize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7964866Z copying src/executorch/backends/qualcomm/builders/op_rms_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7966270Z copying src/executorch/backends/qualcomm/builders/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7967459Z copying src/executorch/backends/qualcomm/builders/op_scalar_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7968674Z copying src/executorch/backends/qualcomm/builders/op_select_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7969855Z copying src/executorch/backends/qualcomm/builders/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7971011Z copying src/executorch/backends/qualcomm/builders/op_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7972456Z copying src/executorch/backends/qualcomm/builders/op_skip_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7973731Z copying src/executorch/backends/qualcomm/builders/op_slice_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7975075Z copying src/executorch/backends/qualcomm/builders/op_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7976308Z copying src/executorch/backends/qualcomm/builders/op_space_to_depth.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7977527Z copying src/executorch/backends/qualcomm/builders/op_split_with_sizes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7978721Z copying src/executorch/backends/qualcomm/builders/op_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7979886Z copying src/executorch/backends/qualcomm/builders/op_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7981372Z copying src/executorch/backends/qualcomm/builders/op_stack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7982529Z copying src/executorch/backends/qualcomm/builders/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7984270Z copying src/executorch/backends/qualcomm/builders/op_sum_int_list.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7986383Z copying src/executorch/backends/qualcomm/builders/op_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7987953Z copying src/executorch/backends/qualcomm/builders/op_to.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7989318Z copying src/executorch/backends/qualcomm/builders/op_topk.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7990605Z copying src/executorch/backends/qualcomm/builders/op_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7991804Z copying src/executorch/backends/qualcomm/builders/op_unbind.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7993345Z copying src/executorch/backends/qualcomm/builders/op_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7995558Z copying src/executorch/backends/qualcomm/builders/op_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7997817Z copying src/executorch/backends/qualcomm/builders/op_upsample_nearest2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.7999564Z copying src/executorch/backends/qualcomm/builders/op_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.8000883Z copying src/executorch/backends/qualcomm/builders/qnn_constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.8002074Z copying src/executorch/backends/qualcomm/builders/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:22:11.8002977Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-06-05T23:22:11.8004506Z copying src/executorch/backends/qualcomm/debugger/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-06-05T23:22:11.8006063Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:22:11.8007043Z copying src/executorch/backends/qualcomm/partition/common_defs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:22:11.8008417Z copying src/executorch/backends/qualcomm/partition/qnn_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:22:11.8009774Z copying src/executorch/backends/qualcomm/partition/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:22:11.8010695Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:22:11.8011642Z copying src/executorch/backends/qualcomm/quantizer/annotators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:22:11.8013037Z copying src/executorch/backends/qualcomm/quantizer/custom_annotation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:22:11.8014388Z copying src/executorch/backends/qualcomm/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:22:11.8015583Z copying src/executorch/backends/qualcomm/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:22:11.8016542Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:22:11.8017560Z copying src/executorch/backends/qualcomm/serialization/qc_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:22:11.8020034Z copying src/executorch/backends/qualcomm/serialization/qc_schema_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:22:11.8021919Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:22:11.8366684Z copying src/executorch/backends/qualcomm/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:22:11.8367893Z copying src/executorch/backends/qualcomm/tests/test_qnn_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:22:11.8369033Z copying src/executorch/backends/qualcomm/tests/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:22:11.8369948Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:22:11.8371089Z copying src/executorch/backends/qualcomm/utils/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:22:11.8372206Z copying src/executorch/backends/qualcomm/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:22:11.8373128Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:22:11.8374274Z copying src/executorch/backends/qualcomm/quantizer/observers/per_block_param_observer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:22:11.8375791Z copying src/executorch/backends/qualcomm/quantizer/observers/per_channel_param_observer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:22:11.8377205Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-06-05T23:22:11.8378973Z copying src/executorch/backends/transforms/test/test_create_delete_constant_placeholder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-06-05T23:22:11.8380824Z copying src/executorch/backends/transforms/test/test_duplicate_dynamic_quant_chain.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-06-05T23:22:11.8382268Z copying src/executorch/backends/transforms/test/test_rank_0_to_rank_1.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-06-05T23:22:11.8383176Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:22:11.8384085Z copying src/executorch/backends/vulkan/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:22:11.8386062Z copying src/executorch/backends/vulkan/_passes/fuse_quantized_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:22:11.8388544Z copying src/executorch/backends/vulkan/_passes/insert_prepack_nodes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:22:11.8390676Z copying src/executorch/backends/vulkan/_passes/int4_weight_only_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:22:11.8392543Z copying src/executorch/backends/vulkan/_passes/remove_asserts.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:22:11.8393729Z copying src/executorch/backends/vulkan/_passes/remove_local_scalar_dense_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:22:11.8394940Z copying src/executorch/backends/vulkan/_passes/remove_redundant_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:22:11.8396167Z copying src/executorch/backends/vulkan/_passes/squeeze_unsqueeze_inputs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:22:11.8398415Z copying src/executorch/backends/vulkan/_passes/tag_memory_meta_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:22:11.8400362Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner 2025-06-05T23:22:11.8402217Z copying src/executorch/backends/vulkan/partitioner/vulkan_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner 2025-06-05T23:22:11.8404056Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-06-05T23:22:11.8405846Z copying src/executorch/backends/vulkan/quantizer/vulkan_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-06-05T23:22:11.8407627Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime 2025-06-05T23:22:11.8409322Z copying src/executorch/backends/vulkan/runtime/gen_vulkan_spv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime 2025-06-05T23:22:11.8410915Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:22:11.8412595Z copying src/executorch/backends/vulkan/serialization/vulkan_graph_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:22:11.8414933Z copying src/executorch/backends/vulkan/serialization/vulkan_graph_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:22:11.8416296Z copying src/executorch/backends/vulkan/serialization/vulkan_graph_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:22:11.8417280Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:22:11.8418160Z copying src/executorch/backends/vulkan/test/test_serialization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:22:11.8419307Z copying src/executorch/backends/vulkan/test/test_vulkan_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:22:11.8420482Z copying src/executorch/backends/vulkan/test/test_vulkan_delegate_header.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:22:11.8421626Z copying src/executorch/backends/vulkan/test/test_vulkan_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:22:11.8422518Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-06-05T23:22:11.8423447Z copying src/executorch/backends/vulkan/test/op_tests/cases.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-06-05T23:22:11.8424663Z copying src/executorch/backends/vulkan/test/op_tests/generate_op_benchmarks.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-06-05T23:22:11.8427041Z copying src/executorch/backends/vulkan/test/op_tests/generate_op_correctness_tests.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-06-05T23:22:11.8429014Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:11.8430958Z copying src/executorch/backends/vulkan/test/op_tests/utils/aten_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:11.8433482Z copying src/executorch/backends/vulkan/test/op_tests/utils/gen_benchmark_vk.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:11.8436067Z copying src/executorch/backends/vulkan/test/op_tests/utils/gen_computegraph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:11.8438733Z copying src/executorch/backends/vulkan/test/op_tests/utils/gen_correctness_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:11.8441183Z copying src/executorch/backends/vulkan/test/op_tests/utils/gen_correctness_vk.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:11.8442785Z copying src/executorch/backends/vulkan/test/op_tests/utils/test_suite.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:11.8443805Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/volk 2025-06-05T23:22:11.8444816Z copying src/executorch/backends/vulkan/third-party/volk/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/volk 2025-06-05T23:22:11.8446187Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:11.8448458Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/apiconventions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:11.8450185Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/cgenerator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:11.8451845Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/conventions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:11.8453588Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/generator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:11.8456456Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/genvk.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:11.8764597Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/reg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:11.8767663Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vkconventions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:11.8769063Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:22:11.8770451Z copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:22:11.8772889Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:22:11.8774849Z copying src/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis/GpuMemDumpVis.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:22:11.8776257Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8777133Z copying src/executorch/backends/xnnpack/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8779001Z copying src/executorch/backends/xnnpack/_passes/channels_last_tagged_reshape_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8780796Z copying src/executorch/backends/xnnpack/_passes/conv1d_unsqueeze_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8781992Z copying src/executorch/backends/xnnpack/_passes/convert_to_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8783147Z copying src/executorch/backends/xnnpack/_passes/convert_to_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8784957Z copying src/executorch/backends/xnnpack/_passes/convert_to_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8786993Z copying src/executorch/backends/xnnpack/_passes/decompose_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8788172Z copying src/executorch/backends/xnnpack/_passes/fuse_activation_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8789487Z copying src/executorch/backends/xnnpack/_passes/fuse_batch_norm_with_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8790699Z copying src/executorch/backends/xnnpack/_passes/prelu_reshape_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8792775Z copying src/executorch/backends/xnnpack/_passes/tag_implicit_q_dq_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8794281Z copying src/executorch/backends/xnnpack/_passes/xnnpack_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:22:11.8795190Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8796102Z copying src/executorch/backends/xnnpack/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8797288Z copying src/executorch/backends/xnnpack/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8799008Z copying src/executorch/backends/xnnpack/operators/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8800818Z copying src/executorch/backends/xnnpack/operators/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8802001Z copying src/executorch/backends/xnnpack/operators/op_addmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8803184Z copying src/executorch/backends/xnnpack/operators/op_avg_pooling2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8804376Z copying src/executorch/backends/xnnpack/operators/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8806218Z copying src/executorch/backends/xnnpack/operators/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8807869Z copying src/executorch/backends/xnnpack/operators/op_ceiling.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8809173Z copying src/executorch/backends/xnnpack/operators/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8810339Z copying src/executorch/backends/xnnpack/operators/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8811682Z copying src/executorch/backends/xnnpack/operators/op_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8813852Z copying src/executorch/backends/xnnpack/operators/op_dynamic_dequantize_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8815205Z copying src/executorch/backends/xnnpack/operators/op_dynamic_quantize_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8816434Z copying src/executorch/backends/xnnpack/operators/op_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8817583Z copying src/executorch/backends/xnnpack/operators/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8819534Z copying src/executorch/backends/xnnpack/operators/op_floor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8821177Z copying src/executorch/backends/xnnpack/operators/op_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8822348Z copying src/executorch/backends/xnnpack/operators/op_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8823547Z copying src/executorch/backends/xnnpack/operators/op_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8824749Z copying src/executorch/backends/xnnpack/operators/op_leaky_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8826828Z copying src/executorch/backends/xnnpack/operators/op_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8828410Z copying src/executorch/backends/xnnpack/operators/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8829650Z copying src/executorch/backends/xnnpack/operators/op_matrix_multiplication.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8830876Z copying src/executorch/backends/xnnpack/operators/op_max_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8832057Z copying src/executorch/backends/xnnpack/operators/op_max_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8833233Z copying src/executorch/backends/xnnpack/operators/op_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8834980Z copying src/executorch/backends/xnnpack/operators/op_mean_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8836799Z copying src/executorch/backends/xnnpack/operators/op_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8837988Z copying src/executorch/backends/xnnpack/operators/op_multiply.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8839169Z copying src/executorch/backends/xnnpack/operators/op_negate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8841126Z copying src/executorch/backends/xnnpack/operators/op_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8843017Z copying src/executorch/backends/xnnpack/operators/op_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8844238Z copying src/executorch/backends/xnnpack/operators/op_quant_dequant.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.8845417Z copying src/executorch/backends/xnnpack/operators/op_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9128023Z copying src/executorch/backends/xnnpack/operators/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9129525Z copying src/executorch/backends/xnnpack/operators/op_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9131551Z copying src/executorch/backends/xnnpack/operators/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9132952Z copying src/executorch/backends/xnnpack/operators/op_skip_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9134330Z copying src/executorch/backends/xnnpack/operators/op_slice_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9135514Z copying src/executorch/backends/xnnpack/operators/op_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9137100Z copying src/executorch/backends/xnnpack/operators/op_square.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9139188Z copying src/executorch/backends/xnnpack/operators/op_square_root.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9140394Z copying src/executorch/backends/xnnpack/operators/op_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9141636Z copying src/executorch/backends/xnnpack/operators/op_static_constant_pad.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9142928Z copying src/executorch/backends/xnnpack/operators/op_static_resize_bilinear_2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9144973Z copying src/executorch/backends/xnnpack/operators/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9146724Z copying src/executorch/backends/xnnpack/operators/op_to_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9147923Z copying src/executorch/backends/xnnpack/operators/quant_params.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:22:11.9148847Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:22:11.9149792Z copying src/executorch/backends/xnnpack/partition/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:22:11.9151142Z copying src/executorch/backends/xnnpack/partition/xnnpack_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:22:11.9152859Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-06-05T23:22:11.9154208Z copying src/executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-06-05T23:22:11.9155494Z copying src/executorch/backends/xnnpack/quantizer/xnnpack_quantizer_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-06-05T23:22:11.9156489Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:22:11.9157717Z copying src/executorch/backends/xnnpack/serialization/xnnpack_graph_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:22:11.9159097Z copying src/executorch/backends/xnnpack/serialization/xnnpack_graph_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:22:11.9160106Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-06-05T23:22:11.9161199Z copying src/executorch/backends/xnnpack/test/test_xnnpack_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-06-05T23:22:11.9163277Z copying src/executorch/backends/xnnpack/test/test_xnnpack_utils_classes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-06-05T23:22:11.9164373Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party 2025-06-05T23:22:11.9165824Z copying src/executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party 2025-06-05T23:22:11.9166856Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:22:11.9167857Z copying src/executorch/backends/xnnpack/utils/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:22:11.9168980Z copying src/executorch/backends/xnnpack/utils/quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:22:11.9170077Z copying src/executorch/backends/xnnpack/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:22:11.9171192Z copying src/executorch/backends/xnnpack/utils/xnnpack_constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:22:11.9172390Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:22:11.9174138Z copying src/executorch/backends/xnnpack/partition/config/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:22:11.9175796Z copying src/executorch/backends/xnnpack/partition/config/gemm_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:22:11.9177209Z copying src/executorch/backends/xnnpack/partition/config/generic_node_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:22:11.9178589Z copying src/executorch/backends/xnnpack/partition/config/node_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:22:11.9179974Z copying src/executorch/backends/xnnpack/partition/config/quant_affine_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:22:11.9181371Z copying src/executorch/backends/xnnpack/partition/config/xnnpack_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:22:11.9182419Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:22:11.9183469Z copying src/executorch/backends/xnnpack/partition/graphs/bilinear_2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:22:11.9184794Z copying src/executorch/backends/xnnpack/partition/graphs/sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:22:11.9185842Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9186795Z copying src/executorch/backends/xnnpack/test/models/deeplab_v3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9188221Z copying src/executorch/backends/xnnpack/test/models/edsr.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9190540Z copying src/executorch/backends/xnnpack/test/models/emformer_rnnt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9191921Z copying src/executorch/backends/xnnpack/test/models/inception_v3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9193153Z copying src/executorch/backends/xnnpack/test/models/inception_v4.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9194416Z copying src/executorch/backends/xnnpack/test/models/llama2_et_example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9195796Z copying src/executorch/backends/xnnpack/test/models/mobilebert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9197656Z copying src/executorch/backends/xnnpack/test/models/mobilenet_v2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9199650Z copying src/executorch/backends/xnnpack/test/models/mobilenet_v3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9201000Z copying src/executorch/backends/xnnpack/test/models/resnet.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9202249Z copying src/executorch/backends/xnnpack/test/models/torchvision_vit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9203509Z copying src/executorch/backends/xnnpack/test/models/very_big_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9205210Z copying src/executorch/backends/xnnpack/test/models/w2l.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:22:11.9206815Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9516658Z copying src/executorch/backends/xnnpack/test/ops/test_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9518216Z copying src/executorch/backends/xnnpack/test/ops/test_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9520287Z copying src/executorch/backends/xnnpack/test/ops/test_avgpool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9521593Z copying src/executorch/backends/xnnpack/test/ops/test_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9522775Z copying src/executorch/backends/xnnpack/test/ops/test_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9523914Z copying src/executorch/backends/xnnpack/test/ops/test_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9525063Z copying src/executorch/backends/xnnpack/test/ops/test_ceil.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9526815Z copying src/executorch/backends/xnnpack/test/ops/test_check_quant_params.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9528995Z copying src/executorch/backends/xnnpack/test/ops/test_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9531069Z copying src/executorch/backends/xnnpack/test/ops/test_conv1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9532387Z copying src/executorch/backends/xnnpack/test/ops/test_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9533552Z copying src/executorch/backends/xnnpack/test/ops/test_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9534261Z copying src/executorch/backends/xnnpack/test/ops/test_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9534778Z copying src/executorch/backends/xnnpack/test/ops/test_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9535312Z copying src/executorch/backends/xnnpack/test/ops/test_floor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9535857Z copying src/executorch/backends/xnnpack/test/ops/test_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9536789Z copying src/executorch/backends/xnnpack/test/ops/test_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9537767Z copying src/executorch/backends/xnnpack/test/ops/test_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9538711Z copying src/executorch/backends/xnnpack/test/ops/test_leaky_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9539414Z copying src/executorch/backends/xnnpack/test/ops/test_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9539946Z copying src/executorch/backends/xnnpack/test/ops/test_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9540460Z copying src/executorch/backends/xnnpack/test/ops/test_lstm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9540981Z copying src/executorch/backends/xnnpack/test/ops/test_max_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9541521Z copying src/executorch/backends/xnnpack/test/ops/test_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9542069Z copying src/executorch/backends/xnnpack/test/ops/test_maxpool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9542600Z copying src/executorch/backends/xnnpack/test/ops/test_mean_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9543167Z copying src/executorch/backends/xnnpack/test/ops/test_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9543701Z copying src/executorch/backends/xnnpack/test/ops/test_multiply.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9544221Z copying src/executorch/backends/xnnpack/test/ops/test_negate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9544854Z copying src/executorch/backends/xnnpack/test/ops/test_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9545813Z copying src/executorch/backends/xnnpack/test/ops/test_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9546743Z copying src/executorch/backends/xnnpack/test/ops/test_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9547792Z copying src/executorch/backends/xnnpack/test/ops/test_quantize_per_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9548664Z copying src/executorch/backends/xnnpack/test/ops/test_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9549616Z copying src/executorch/backends/xnnpack/test/ops/test_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9550537Z copying src/executorch/backends/xnnpack/test/ops/test_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9551234Z copying src/executorch/backends/xnnpack/test/ops/test_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9551783Z copying src/executorch/backends/xnnpack/test/ops/test_slice_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9552360Z copying src/executorch/backends/xnnpack/test/ops/test_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9552873Z copying src/executorch/backends/xnnpack/test/ops/test_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9553407Z copying src/executorch/backends/xnnpack/test/ops/test_square.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9553987Z copying src/executorch/backends/xnnpack/test/ops/test_static_constant_pad.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9554494Z copying src/executorch/backends/xnnpack/test/ops/test_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:11.9554870Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:22:11.9555610Z copying src/executorch/backends/xnnpack/test/passes/test_activation_fusion.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:22:11.9556656Z copying src/executorch/backends/xnnpack/test/passes/test_batch_norm_fusion.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:22:11.9557850Z copying src/executorch/backends/xnnpack/test/passes/test_channels_last_tagged_reshape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:22:11.9558881Z copying src/executorch/backends/xnnpack/test/passes/test_convert_to_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:22:11.9559981Z copying src/executorch/backends/xnnpack/test/passes/test_decompose_cat_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:22:11.9561000Z copying src/executorch/backends/xnnpack/test/passes/test_remove_get_item_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:22:11.9561626Z copying src/executorch/backends/xnnpack/test/passes/test_tag_implicit_q_dq_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:22:11.9561914Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:22:11.9562564Z copying src/executorch/backends/xnnpack/test/quantizer/test_pt2e_quantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:22:11.9563195Z copying src/executorch/backends/xnnpack/test/quantizer/test_representation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:22:11.9563832Z copying src/executorch/backends/xnnpack/test/quantizer/test_xnnpack_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:22:11.9564162Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-06-05T23:22:11.9835745Z copying src/executorch/backends/xnnpack/test/serialization/test_serialization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-06-05T23:22:11.9836634Z copying src/executorch/backends/xnnpack/test/serialization/test_xnnheader.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-06-05T23:22:11.9836933Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-06-05T23:22:11.9837682Z copying src/executorch/backends/xnnpack/test/tester/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-06-05T23:22:11.9838234Z copying src/executorch/backends/xnnpack/test/tester/tester.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-06-05T23:22:11.9838554Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:22:11.9839460Z copying src/executorch/backends/xnnpack/third-party/FP16/configure.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:22:11.9839991Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:22:11.9841080Z copying src/executorch/backends/xnnpack/third-party/FXdiv/configure.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:22:11.9841683Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:22:11.9842495Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/configure.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:22:11.9843083Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:22:11.9843843Z copying src/executorch/backends/xnnpack/third-party/pthreadpool/configure.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:22:11.9844226Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:22:11.9844927Z copying src/executorch/backends/xnnpack/third-party/FP16/include/fp16/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:22:11.9845619Z copying src/executorch/backends/xnnpack/third-party/FP16/include/fp16/avx.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:22:11.9846568Z copying src/executorch/backends/xnnpack/third-party/FP16/include/fp16/avx2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:22:11.9847196Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:22:11.9848394Z copying src/executorch/backends/xnnpack/third-party/FP16/test/peachpy/stubs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:22:11.9849067Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:22:11.9850440Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:22:11.9851876Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_files_changed.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:22:11.9853413Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:22:11.9854814Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:22:11.9855458Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9856936Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9858509Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9860015Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9861529Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9863028Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9864511Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9866161Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9867836Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9869315Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9870741Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9872122Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9873678Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9875141Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9876735Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9878205Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9879610Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9881054Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9882441Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9883859Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9885318Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9887042Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9888525Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9889949Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:11.9891244Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/primes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:12.0451901Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:12.0454229Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/xngen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:12.0456503Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/xnncommon.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:12.0457825Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:22:12.0459051Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:22:12.0461535Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:22:12.0464528Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:22:12.0466406Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:22:12.0467628Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/configure.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:22:12.0468692Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:22:12.0469646Z copying src/executorch/codegen/api/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:22:12.0471224Z copying src/executorch/codegen/api/custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:22:12.0472741Z copying src/executorch/codegen/api/et_cpp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:22:12.0474286Z copying src/executorch/codegen/api/unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:22:12.0475164Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:22:12.0475958Z copying src/executorch/codegen/test/test_executorch_custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:22:12.0477146Z copying src/executorch/codegen/test/test_executorch_gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:22:12.0478172Z copying src/executorch/codegen/test/test_executorch_signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:22:12.0479197Z copying src/executorch/codegen/test/test_executorch_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:22:12.0480438Z copying src/executorch/codegen/test/test_executorch_unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:22:12.0481444Z copying src/executorch/codegen/test/test_selective_build.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:22:12.0482232Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:22:12.0483323Z copying src/executorch/codegen/tools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:22:12.0484925Z copying src/executorch/codegen/tools/gen_all_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:22:12.0486090Z copying src/executorch/codegen/tools/gen_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:22:12.0487010Z copying src/executorch/codegen/tools/gen_ops_def.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:22:12.0488160Z copying src/executorch/codegen/tools/gen_selected_op_variants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:22:12.0489152Z copying src/executorch/codegen/tools/merge_yaml.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:22:12.0490212Z copying src/executorch/codegen/tools/yaml_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:22:12.0490964Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:22:12.0491733Z copying src/executorch/codegen/api/types/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:22:12.0492736Z copying src/executorch/codegen/api/types/signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:22:12.0493873Z copying src/executorch/codegen/api/types/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:22:12.0495212Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:22:12.0496684Z copying src/executorch/codegen/tools/test/test_gen_all_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:22:12.0498594Z copying src/executorch/codegen/tools/test/test_gen_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:22:12.0500021Z copying src/executorch/codegen/tools/test/test_gen_oplist_real_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:22:12.0501273Z copying src/executorch/codegen/tools/test/test_gen_selected_op_variants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:22:12.0502159Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:22:12.0502998Z copying src/executorch/devtools/backend_debug/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:22:12.0504096Z copying src/executorch/devtools/backend_debug/delegation_info.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:22:12.0504960Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:22:12.0505944Z copying src/executorch/devtools/bundled_program/config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:22:12.0507003Z copying src/executorch/devtools/bundled_program/core.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:22:12.0508082Z copying src/executorch/devtools/bundled_program/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:22:12.0509500Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:22:12.0510991Z copying src/executorch/devtools/debug_format/base_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:22:12.0513002Z copying src/executorch/devtools/debug_format/et_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:22:12.0514294Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:22:12.0515144Z copying src/executorch/devtools/etdump/schema_flatcc.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:22:12.0516228Z copying src/executorch/devtools/etdump/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:22:12.0516997Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:22:12.0517774Z copying src/executorch/devtools/etrecord/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:22:12.0519135Z copying src/executorch/devtools/etrecord/_etrecord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:22:12.0520541Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:22:12.0521684Z copying src/executorch/devtools/inspector/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:22:12.0522816Z copying src/executorch/devtools/inspector/_inspector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:22:12.0523995Z copying src/executorch/devtools/inspector/_inspector_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:22:12.0525131Z copying src/executorch/devtools/inspector/_intermediate_output_capturer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:22:12.0526494Z copying src/executorch/devtools/inspector/inspector_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:22:12.0527998Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool 2025-06-05T23:22:12.0529305Z copying src/executorch/devtools/size_analysis_tool/size_analysis_tool.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool 2025-06-05T23:22:12.0530683Z copying src/executorch/devtools/size_analysis_tool/size_analysis_tool_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool 2025-06-05T23:22:12.0531644Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:22:12.0532493Z copying src/executorch/devtools/visualization/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:22:12.0817003Z copying src/executorch/devtools/visualization/visualization_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:22:12.0818761Z copying src/executorch/devtools/visualization/visualization_utils_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:22:12.0820505Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/tests 2025-06-05T23:22:12.0822193Z copying src/executorch/devtools/backend_debug/tests/test_delegation_info.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/tests 2025-06-05T23:22:12.0823747Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:22:12.0824863Z copying src/executorch/devtools/bundled_program/schema/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:22:12.0826317Z copying src/executorch/devtools/bundled_program/schema/bundled_program_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:22:12.0827342Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:22:12.0828996Z copying src/executorch/devtools/bundled_program/serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:22:12.0830778Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-06-05T23:22:12.0831762Z copying src/executorch/devtools/bundled_program/test/test_bundle_data.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-06-05T23:22:12.0833147Z copying src/executorch/devtools/bundled_program/test/test_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-06-05T23:22:12.0834635Z copying src/executorch/devtools/bundled_program/test/test_end2end.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-06-05T23:22:12.0836312Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/util 2025-06-05T23:22:12.0837916Z copying src/executorch/devtools/bundled_program/util/test_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/util 2025-06-05T23:22:12.0839591Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/test 2025-06-05T23:22:12.0840652Z copying src/executorch/devtools/bundled_program/schema/test/test_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/test 2025-06-05T23:22:12.0841886Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:22:12.0842979Z copying src/executorch/devtools/bundled_program/serialize/test/test_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:22:12.0844281Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests 2025-06-05T23:22:12.0845803Z copying src/executorch/devtools/etdump/tests/serialize_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests 2025-06-05T23:22:12.0846989Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests 2025-06-05T23:22:12.0848027Z copying src/executorch/devtools/etrecord/tests/etrecord_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests 2025-06-05T23:22:12.0848915Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:22:12.0849857Z copying src/executorch/devtools/inspector/tests/event_blocks_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:22:12.0851049Z copying src/executorch/devtools/inspector/tests/inspector_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:22:12.0852556Z copying src/executorch/devtools/inspector/tests/inspector_test_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:22:12.0854788Z copying src/executorch/devtools/inspector/tests/inspector_utils_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:22:12.0857039Z copying src/executorch/devtools/inspector/tests/intermediate_output_capturer_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:22:12.0858572Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:22:12.0859490Z copying src/executorch/examples/llm_pte_finetuning/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:22:12.0860628Z copying src/executorch/examples/llm_pte_finetuning/model_exporter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:22:12.0877519Z copying src/executorch/examples/llm_pte_finetuning/model_loading_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:22:12.0878892Z copying src/executorch/examples/llm_pte_finetuning/runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:22:12.0880236Z copying src/executorch/examples/llm_pte_finetuning/training_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:22:12.0881111Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:22:12.0881861Z copying src/executorch/examples/models/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:22:12.0883332Z copying src/executorch/examples/models/checkpoint.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:22:12.0885040Z copying src/executorch/examples/models/model_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:22:12.0886139Z copying src/executorch/examples/models/model_factory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:22:12.0886976Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:22:12.0887898Z copying src/executorch/examples/apple/coreml/llama/export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:22:12.0889147Z copying src/executorch/examples/apple/coreml/llama/llama_transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:22:12.0890577Z copying src/executorch/examples/apple/coreml/llama/run.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:22:12.0892614Z copying src/executorch/examples/apple/coreml/llama/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:22:12.0894127Z copying src/executorch/examples/apple/coreml/llama/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:22:12.0895046Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:22:12.0896034Z copying src/executorch/examples/apple/coreml/scripts/debugger_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:22:12.0897456Z copying src/executorch/examples/apple/coreml/scripts/export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:22:12.0899743Z copying src/executorch/examples/apple/coreml/scripts/extract_coreml_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:22:12.0901137Z copying src/executorch/examples/apple/coreml/scripts/inspector_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:22:12.0902426Z copying src/executorch/examples/apple/coreml/scripts/inspector_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:22:12.0903412Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-06-05T23:22:12.0904345Z copying src/executorch/examples/apple/mps/scripts/bench_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-06-05T23:22:12.0905652Z copying src/executorch/examples/apple/mps/scripts/mps_example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-06-05T23:22:12.0907045Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-06-05T23:22:12.0908606Z copying src/executorch/examples/models/deeplab_v3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-06-05T23:22:12.0909862Z copying src/executorch/examples/models/deeplab_v3/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-06-05T23:22:12.0910719Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:22:12.0911541Z copying src/executorch/examples/models/edsr/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:22:12.0912567Z copying src/executorch/examples/models/edsr/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:22:12.0914068Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-06-05T23:22:12.0915717Z copying src/executorch/examples/models/efficient_sam/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-06-05T23:22:12.1189822Z copying src/executorch/examples/models/efficient_sam/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-06-05T23:22:12.1190869Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-06-05T23:22:12.1191820Z copying src/executorch/examples/models/emformer_rnnt/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-06-05T23:22:12.1193468Z copying src/executorch/examples/models/emformer_rnnt/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-06-05T23:22:12.1195101Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-06-05T23:22:12.1196166Z copying src/executorch/examples/models/inception_v3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-06-05T23:22:12.1197644Z copying src/executorch/examples/models/inception_v3/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-06-05T23:22:12.1198576Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-06-05T23:22:12.1199476Z copying src/executorch/examples/models/inception_v4/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-06-05T23:22:12.1201437Z copying src/executorch/examples/models/inception_v4/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-06-05T23:22:12.1203002Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1204475Z copying src/executorch/examples/models/llama/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1206308Z copying src/executorch/examples/models/llama/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1208226Z copying src/executorch/examples/models/llama/eval_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1209333Z copying src/executorch/examples/models/llama/eval_llama_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1210464Z copying src/executorch/examples/models/llama/export_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1211568Z copying src/executorch/examples/models/llama/export_llama_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1212990Z copying src/executorch/examples/models/llama/fairseq2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1214937Z copying src/executorch/examples/models/llama/hf_download.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1216982Z copying src/executorch/examples/models/llama/install_requirement_helper.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1218531Z copying src/executorch/examples/models/llama/llama_transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1219636Z copying src/executorch/examples/models/llama/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1220722Z copying src/executorch/examples/models/llama/model_args.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1222008Z copying src/executorch/examples/models/llama/norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1223807Z copying src/executorch/examples/models/llama/rope.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1225327Z copying src/executorch/examples/models/llama/static_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:22:12.1226371Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision 2025-06-05T23:22:12.1227315Z copying src/executorch/examples/models/llama3_2_vision/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision 2025-06-05T23:22:12.1228221Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:22:12.1229247Z copying src/executorch/examples/models/llava/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:22:12.1231181Z copying src/executorch/examples/models/llava/export_llava.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:22:12.1233038Z copying src/executorch/examples/models/llava/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:22:12.1234535Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:22:12.1235376Z copying src/executorch/examples/models/lstm/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:22:12.1236406Z copying src/executorch/examples/models/lstm/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:22:12.1237240Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:22:12.1238252Z copying src/executorch/examples/models/mobilebert/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:22:12.1240276Z copying src/executorch/examples/models/mobilebert/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:22:12.1241429Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-06-05T23:22:12.1242369Z copying src/executorch/examples/models/mobilenet_v2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-06-05T23:22:12.1243517Z copying src/executorch/examples/models/mobilenet_v2/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-06-05T23:22:12.1244423Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-06-05T23:22:12.1245862Z copying src/executorch/examples/models/mobilenet_v3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-06-05T23:22:12.1247909Z copying src/executorch/examples/models/mobilenet_v3/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-06-05T23:22:12.1249590Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:22:12.1250735Z copying src/executorch/examples/models/phi-3-mini-lora/export_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:22:12.1251704Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:22:12.1252608Z copying src/executorch/examples/models/phi-3-mini/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:22:12.1253716Z copying src/executorch/examples/models/phi-3-mini/eager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:22:12.1255058Z copying src/executorch/examples/models/phi-3-mini/export_phi-3-mini.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:22:12.1257292Z copying src/executorch/examples/models/phi-3-mini/phi_3_mini.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:22:12.1258541Z copying src/executorch/examples/models/phi-3-mini/static_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:22:12.1259470Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini 2025-06-05T23:22:12.1260341Z copying src/executorch/examples/models/phi_4_mini/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini 2025-06-05T23:22:12.1261633Z copying src/executorch/examples/models/phi_4_mini/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini 2025-06-05T23:22:12.1263266Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-06-05T23:22:12.1264799Z copying src/executorch/examples/models/qwen2_5/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-06-05T23:22:12.1266936Z copying src/executorch/examples/models/qwen2_5/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-06-05T23:22:12.1268394Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:22:12.1269402Z copying src/executorch/examples/models/qwen3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:22:12.1270507Z copying src/executorch/examples/models/qwen3/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:22:12.1271381Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:22:12.1272253Z copying src/executorch/examples/models/resnet/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:22:12.1274124Z copying src/executorch/examples/models/resnet/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:22:12.1275446Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:22:12.1508134Z copying src/executorch/examples/models/smollm2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:22:12.1509487Z copying src/executorch/examples/models/smollm2/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:22:12.1510421Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:22:12.1511258Z copying src/executorch/examples/models/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:22:12.1512296Z copying src/executorch/examples/models/test/test_export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:22:12.1513298Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-06-05T23:22:12.1514322Z copying src/executorch/examples/models/torchvision_vit/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-06-05T23:22:12.1515545Z copying src/executorch/examples/models/torchvision_vit/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-06-05T23:22:12.1516617Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-06-05T23:22:12.1517534Z copying src/executorch/examples/models/toy_model/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-06-05T23:22:12.1518632Z copying src/executorch/examples/models/toy_model/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-06-05T23:22:12.1519593Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:22:12.1520538Z copying src/executorch/examples/models/wav2letter/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:22:12.1521894Z copying src/executorch/examples/models/wav2letter/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:22:12.1522910Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:12.1524293Z copying src/executorch/examples/models/efficient_sam/efficient_sam_core/build_efficient_sam.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:12.1525974Z copying src/executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:12.1527816Z copying src/executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_decoder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:12.1529462Z copying src/executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_encoder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:12.1531155Z copying src/executorch/examples/models/efficient_sam/efficient_sam_core/mlp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:12.1532859Z copying src/executorch/examples/models/efficient_sam/efficient_sam_core/two_way_transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:12.1534058Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-06-05T23:22:12.1535143Z copying src/executorch/examples/models/llama/evaluate/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-06-05T23:22:12.1536477Z copying src/executorch/examples/models/llama/evaluate/eager_eval.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-06-05T23:22:12.1537471Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:22:12.1538617Z copying src/executorch/examples/models/llama/experimental/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:22:12.1540033Z copying src/executorch/examples/models/llama/experimental/load_gguf_q4_0.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:22:12.1541476Z copying src/executorch/examples/models/llama/experimental/subclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:22:12.1543039Z copying src/executorch/examples/models/llama/experimental/test_subclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:22:12.1544053Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-06-05T23:22:12.1545037Z copying src/executorch/examples/models/llama/runner/eager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-06-05T23:22:12.1546389Z copying src/executorch/examples/models/llama/runner/generation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-06-05T23:22:12.1547677Z copying src/executorch/examples/models/llama/runner/native.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-06-05T23:22:12.1548845Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1550024Z copying src/executorch/examples/models/llama/source_transformation/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1551641Z copying src/executorch/examples/models/llama/source_transformation/apply_spin_quant_r1_r2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1553183Z copying src/executorch/examples/models/llama/source_transformation/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1554683Z copying src/executorch/examples/models/llama/source_transformation/attention_sink.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1556335Z copying src/executorch/examples/models/llama/source_transformation/custom_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1557820Z copying src/executorch/examples/models/llama/source_transformation/lora.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1559712Z copying src/executorch/examples/models/llama/source_transformation/pre_quantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1561543Z copying src/executorch/examples/models/llama/source_transformation/prune_vocab.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1563083Z copying src/executorch/examples/models/llama/source_transformation/quantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1564675Z copying src/executorch/examples/models/llama/source_transformation/rms_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1566289Z copying src/executorch/examples/models/llama/source_transformation/rope.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1567735Z copying src/executorch/examples/models/llama/source_transformation/sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1569205Z copying src/executorch/examples/models/llama/source_transformation/spin_quant.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1570848Z copying src/executorch/examples/models/llama/source_transformation/test_attention_sink.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1572717Z copying src/executorch/examples/models/llama/source_transformation/test_quantized_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1574451Z copying src/executorch/examples/models/llama/source_transformation/test_quantized_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1576062Z copying src/executorch/examples/models/llama/source_transformation/test_sdpa_with_quantized_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1577767Z copying src/executorch/examples/models/llama/source_transformation/vulkan_rope.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:12.1578898Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:22:12.1837020Z copying src/executorch/examples/models/llama/tests/test_export_llama_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:22:12.1838385Z copying src/executorch/examples/models/llama/tests/test_pre_quantization_transforms.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:22:12.1839936Z copying src/executorch/examples/models/llama/tests/test_replace_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:22:12.1841308Z copying src/executorch/examples/models/llama/tests/test_ring_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:22:12.1842733Z copying src/executorch/examples/models/llama/tests/test_ring_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:22:12.1844000Z copying src/executorch/examples/models/llama/tests/test_simple_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:22:12.1845270Z copying src/executorch/examples/models/llama/tests/test_static_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:22:12.1846257Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tokenizer 2025-06-05T23:22:12.1847401Z copying src/executorch/examples/models/llama/tokenizer/tiktoken.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tokenizer 2025-06-05T23:22:12.1848516Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:22:12.1849731Z copying src/executorch/examples/models/llama3_2_vision/preprocess/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:22:12.1851203Z copying src/executorch/examples/models/llama3_2_vision/preprocess/export_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:22:12.1852665Z copying src/executorch/examples/models/llama3_2_vision/preprocess/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:22:12.1854131Z copying src/executorch/examples/models/llama3_2_vision/preprocess/test_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:22:12.1855264Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:22:12.1856308Z copying src/executorch/examples/models/llama3_2_vision/runner/eager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:22:12.1857649Z copying src/executorch/examples/models/llama3_2_vision/runner/exported.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:22:12.1859017Z copying src/executorch/examples/models/llama3_2_vision/runner/generation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:22:12.1860365Z copying src/executorch/examples/models/llama3_2_vision/runner/native.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:22:12.1861483Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:22:12.1862893Z copying src/executorch/examples/models/llama3_2_vision/text_decoder/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:22:12.1864236Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:22:12.1865636Z copying src/executorch/examples/models/llama3_2_vision/vision_encoder/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:22:12.1867093Z copying src/executorch/examples/models/llama3_2_vision/vision_encoder/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:22:12.1868259Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:22:12.1869577Z copying src/executorch/examples/models/llama3_2_vision/text_decoder/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:22:12.1871134Z copying src/executorch/examples/models/llama3_2_vision/text_decoder/test/test_text_decoder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:22:12.1872535Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:22:12.1874013Z copying src/executorch/examples/models/llama3_2_vision/vision_encoder/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:22:12.1875732Z copying src/executorch/examples/models/llama3_2_vision/vision_encoder/test/test_vision_encoder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:22:12.1877013Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-06-05T23:22:12.1877988Z copying src/executorch/examples/models/llava/test/test_llava.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-06-05T23:22:12.1879462Z copying src/executorch/examples/models/llava/test/test_pte.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-06-05T23:22:12.1880566Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/moshi/mimi 2025-06-05T23:22:12.1881524Z copying src/executorch/examples/models/moshi/mimi/test_mimi.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/moshi/mimi 2025-06-05T23:22:12.1882455Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:22:12.1883239Z copying src/executorch/exir/_serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:22:12.1884180Z copying src/executorch/exir/_serialize/_cord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:22:12.1885202Z copying src/executorch/exir/_serialize/_dataclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:22:12.1886185Z copying src/executorch/exir/_serialize/_flatbuffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:22:12.1887194Z copying src/executorch/exir/_serialize/_named_data_store.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:22:12.1888291Z copying src/executorch/exir/_serialize/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:22:12.1889374Z copying src/executorch/exir/_serialize/_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:22:12.1890418Z copying src/executorch/exir/_serialize/data_serializer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:22:12.1891424Z copying src/executorch/exir/_serialize/padding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:22:12.1892207Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:22:12.1893004Z copying src/executorch/exir/backend/backend_api.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:22:12.1893994Z copying src/executorch/exir/backend/backend_details.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:22:12.1895081Z copying src/executorch/exir/backend/compile_spec_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:22:12.1896135Z copying src/executorch/exir/backend/operator_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:22:12.1897148Z copying src/executorch/exir/backend/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:22:12.1898242Z copying src/executorch/exir/backend/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:22:12.1899040Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:22:12.1899834Z copying src/executorch/exir/capture/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:22:12.1900834Z copying src/executorch/exir/capture/_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:22:12.1901701Z copying src/executorch/exir/capture/_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:22:12.1902632Z copying src/executorch/exir/capture/_unlift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:22:12.1903343Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:22:12.1904093Z copying src/executorch/exir/dialects/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:22:12.1904974Z copying src/executorch/exir/dialects/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:22:12.1905707Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:22:12.2321485Z copying src/executorch/exir/emit/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:22:12.2322459Z copying src/executorch/exir/emit/_emit_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:22:12.2323294Z copying src/executorch/exir/emit/_emitter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:22:12.2323985Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:22:12.2324706Z copying src/executorch/exir/operator/convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:22:12.2325614Z copying src/executorch/exir/operator/manip.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:22:12.2326549Z copying src/executorch/exir/operator/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:22:12.2327301Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2328052Z copying src/executorch/exir/passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2329000Z copying src/executorch/exir/passes/_quant_patterns_and_replacements.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2330007Z copying src/executorch/exir/passes/const_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2330964Z copying src/executorch/exir/passes/constant_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2331958Z copying src/executorch/exir/passes/debug_handle_generator_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2333050Z copying src/executorch/exir/passes/dim_order_ops_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2334103Z copying src/executorch/exir/passes/dynamic_shape_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2335136Z copying src/executorch/exir/passes/executorch_prim_ops_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2336178Z copying src/executorch/exir/passes/external_constants_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2337152Z copying src/executorch/exir/passes/init_mutable_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2338173Z copying src/executorch/exir/passes/insert_write_back_for_buffers_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2339297Z copying src/executorch/exir/passes/memory_format_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2340449Z copying src/executorch/exir/passes/memory_planning_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2341469Z copying src/executorch/exir/passes/normalize_transpose_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2342541Z copying src/executorch/exir/passes/normalize_view_copy_base_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2343530Z copying src/executorch/exir/passes/pass_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2344502Z copying src/executorch/exir/passes/prune_empty_tensors_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2345476Z copying src/executorch/exir/passes/quant_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2346512Z copying src/executorch/exir/passes/quantize_io_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2347506Z copying src/executorch/exir/passes/remove_graph_asserts_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2348600Z copying src/executorch/exir/passes/remove_mixed_type_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2349598Z copying src/executorch/exir/passes/remove_noop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2350604Z copying src/executorch/exir/passes/remove_unused_parameters_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2351679Z copying src/executorch/exir/passes/replace_aten_with_edge_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2352869Z copying src/executorch/exir/passes/replace_broken_ops_with_function_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2353972Z copying src/executorch/exir/passes/replace_edge_with_backend_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2355009Z copying src/executorch/exir/passes/replace_sym_size_op_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2356053Z copying src/executorch/exir/passes/replace_view_copy_with_view_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2357074Z copying src/executorch/exir/passes/scalar_to_tensor_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2358113Z copying src/executorch/exir/passes/spec_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2359099Z copying src/executorch/exir/passes/sym_shape_eval_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2360057Z copying src/executorch/exir/passes/sym_to_tensor_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2361043Z copying src/executorch/exir/passes/weights_to_outputs_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:22:12.2361814Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:22:12.2362531Z copying src/executorch/exir/program/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:22:12.2363455Z copying src/executorch/exir/program/_fake_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:22:12.2364414Z copying src/executorch/exir/program/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:22:12.2365347Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:22:12.2366022Z copying src/executorch/exir/serde/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:22:12.2367042Z copying src/executorch/exir/serde/export_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:22:12.2367921Z copying src/executorch/exir/serde/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:22:12.2368795Z copying src/executorch/exir/serde/schema_check.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:22:12.2369687Z copying src/executorch/exir/serde/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:22:12.2370568Z copying src/executorch/exir/serde/union.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:22:12.2371304Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2372042Z copying src/executorch/exir/tests/asr_joiner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2372898Z copying src/executorch/exir/tests/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2373794Z copying src/executorch/exir/tests/control_flow_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2374826Z copying src/executorch/exir/tests/dynamic_shape_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2375727Z copying src/executorch/exir/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2376607Z copying src/executorch/exir/tests/test_arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2377633Z copying src/executorch/exir/tests/test_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2378512Z copying src/executorch/exir/tests/test_common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2379381Z copying src/executorch/exir/tests/test_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2380388Z copying src/executorch/exir/tests/test_dim_order_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2381439Z copying src/executorch/exir/tests/test_dynamic_shape_propagation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2382381Z copying src/executorch/exir/tests/test_error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2383261Z copying src/executorch/exir/tests/test_joint_graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2384197Z copying src/executorch/exir/tests/test_memory_format_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2385215Z copying src/executorch/exir/tests/test_memory_format_ops_pass_aten.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2386341Z copying src/executorch/exir/tests/test_memory_format_ops_pass_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2750445Z copying src/executorch/exir/tests/test_memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2751437Z copying src/executorch/exir/tests/test_op_convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2752364Z copying src/executorch/exir/tests/test_pass_infra.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2753241Z copying src/executorch/exir/tests/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2754151Z copying src/executorch/exir/tests/test_print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2755114Z copying src/executorch/exir/tests/test_prune_empty_tensors_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2756328Z copying src/executorch/exir/tests/test_quant_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2757462Z copying src/executorch/exir/tests/test_quantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2758485Z copying src/executorch/exir/tests/test_quantize_io_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2759542Z copying src/executorch/exir/tests/test_remove_unused_parameters_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2760556Z copying src/executorch/exir/tests/test_remove_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2761456Z copying src/executorch/exir/tests/test_serde.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2762324Z copying src/executorch/exir/tests/test_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2763189Z copying src/executorch/exir/tests/test_tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2764097Z copying src/executorch/exir/tests/test_verification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2765290Z copying src/executorch/exir/tests/test_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2766368Z copying src/executorch/exir/tests/transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:22:12.2767150Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:22:12.2768002Z copying src/executorch/exir/verification/arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:22:12.2769012Z copying src/executorch/exir/verification/dev_html.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:22:12.2770036Z copying src/executorch/exir/verification/interpreter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:22:12.2771052Z copying src/executorch/exir/verification/verifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:22:12.2771855Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:22:12.2772637Z copying src/executorch/exir/_serialize/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:22:12.2773627Z copying src/executorch/exir/_serialize/test/test_cord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:22:12.2774787Z copying src/executorch/exir/_serialize/test/test_flatbuffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:22:12.2776035Z copying src/executorch/exir/_serialize/test/test_named_data_store.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:22:12.2777152Z copying src/executorch/exir/_serialize/test/test_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:22:12.2778028Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:22:12.2779102Z copying src/executorch/exir/backend/canonical_partitioners/all_node_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:22:12.2780517Z copying src/executorch/exir/backend/canonical_partitioners/config_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:22:12.2782144Z copying src/executorch/exir/backend/canonical_partitioners/duplicate_constant_node_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:22:12.2784031Z copying src/executorch/exir/backend/canonical_partitioners/duplicate_dequant_node_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:22:12.2785715Z copying src/executorch/exir/backend/canonical_partitioners/pattern_op_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:22:12.2786716Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2787594Z copying src/executorch/exir/backend/test/backend_with_compiler_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2788780Z copying src/executorch/exir/backend/test/backend_with_delegate_mapping_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2789983Z copying src/executorch/exir/backend/test/backend_with_named_data_map.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2791283Z copying src/executorch/exir/backend/test/backend_with_preprocess_all_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2792409Z copying src/executorch/exir/backend/test/hta_partitioner_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2793588Z copying src/executorch/exir/backend/test/op_partitioner_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2794654Z copying src/executorch/exir/backend/test/qnn_backend_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2795747Z copying src/executorch/exir/backend/test/test_backend_with_named_data_map.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2796845Z copying src/executorch/exir/backend/test/test_backends.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2798139Z copying src/executorch/exir/backend/test/test_backends_lifted.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2799416Z copying src/executorch/exir/backend/test/test_backends_nested.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2800509Z copying src/executorch/exir/backend/test/test_compatibility.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2801585Z copying src/executorch/exir/backend/test/test_debug_handle_map.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2802685Z copying src/executorch/exir/backend/test/test_delegate_map_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2803793Z copying src/executorch/exir/backend/test/test_graph_partition.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2804978Z copying src/executorch/exir/backend/test/test_lowered_backend_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2806175Z copying src/executorch/exir/backend/test/test_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2807221Z copying src/executorch/exir/backend/test/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2808287Z copying src/executorch/exir/backend/test/test_to_backend_multi_method.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2809357Z copying src/executorch/exir/backend/test/test_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:22:12.2810160Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos 2025-06-05T23:22:12.2811171Z copying src/executorch/exir/backend/test/demos/test_delegate_aten_mode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos 2025-06-05T23:22:12.2812570Z copying src/executorch/exir/backend/test/demos/test_xnnpack_qnnpack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos 2025-06-05T23:22:12.2813487Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-06-05T23:22:12.2814518Z copying src/executorch/exir/backend/test/demos/rpc/executor_backend_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-06-05T23:22:12.2815879Z copying src/executorch/exir/backend/test/demos/rpc/executor_backend_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-06-05T23:22:12.2817150Z copying src/executorch/exir/backend/test/demos/rpc/test_rpc.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-06-05T23:22:12.2818083Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-06-05T23:22:12.3147617Z copying src/executorch/exir/dialects/backend/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-06-05T23:22:12.3148496Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:22:12.3149282Z copying src/executorch/exir/dialects/edge/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:22:12.3150227Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/test 2025-06-05T23:22:12.3151220Z copying src/executorch/exir/dialects/test/test_exir_dialect_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/test 2025-06-05T23:22:12.3152213Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/test 2025-06-05T23:22:12.3153154Z copying src/executorch/exir/dialects/backend/test/test_backend_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/test 2025-06-05T23:22:12.3154075Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-06-05T23:22:12.3154946Z copying src/executorch/exir/dialects/edge/arg/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-06-05T23:22:12.3156008Z copying src/executorch/exir/dialects/edge/arg/type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-06-05T23:22:12.3156850Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-06-05T23:22:12.3157714Z copying src/executorch/exir/dialects/edge/dtype/runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-06-05T23:22:12.3158981Z copying src/executorch/exir/dialects/edge/dtype/supported.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-06-05T23:22:12.3160235Z copying src/executorch/exir/dialects/edge/dtype/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-06-05T23:22:12.3161088Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-06-05T23:22:12.3161913Z copying src/executorch/exir/dialects/edge/op/api.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-06-05T23:22:12.3162965Z copying src/executorch/exir/dialects/edge/op/sample_input.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-06-05T23:22:12.3163831Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-06-05T23:22:12.3164666Z copying src/executorch/exir/dialects/edge/spec/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-06-05T23:22:12.3165934Z copying src/executorch/exir/dialects/edge/spec/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-06-05T23:22:12.3167101Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test 2025-06-05T23:22:12.3168040Z copying src/executorch/exir/dialects/edge/test/test_edge_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test 2025-06-05T23:22:12.3169409Z copying src/executorch/exir/dialects/edge/test/test_edge_yaml.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test 2025-06-05T23:22:12.3170294Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/test 2025-06-05T23:22:12.3171212Z copying src/executorch/exir/dialects/edge/op/test/test_api.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/test 2025-06-05T23:22:12.3172089Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test 2025-06-05T23:22:12.3172841Z copying src/executorch/exir/emit/test/test_emit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test 2025-06-05T23:22:12.3173592Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test 2025-06-05T23:22:12.3174420Z copying src/executorch/exir/operator/test/test_operator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test 2025-06-05T23:22:12.3175232Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:22:12.3176013Z copying src/executorch/exir/program/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:22:12.3177416Z copying src/executorch/exir/program/test/test_fake_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:22:12.3178468Z copying src/executorch/exir/program/test/test_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:22:12.3179296Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test 2025-06-05T23:22:12.3180170Z copying src/executorch/exir/verification/test/test_verifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test 2025-06-05T23:22:12.3181101Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:22:12.3181926Z copying src/executorch/extension/export_util/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:22:12.3182941Z copying src/executorch/extension/export_util/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:22:12.3183757Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-06-05T23:22:12.3184567Z copying src/executorch/extension/flat_tensor/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-06-05T23:22:12.3185371Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:22:12.3186252Z copying src/executorch/extension/gguf_util/convert_main.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:22:12.3187261Z copying src/executorch/extension/gguf_util/converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:22:12.3188271Z copying src/executorch/extension/gguf_util/load_gguf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:22:12.3189065Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:22:12.3189926Z copying src/executorch/extension/pybindings/portable_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:22:12.3190763Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-06-05T23:22:12.3191755Z copying src/executorch/extension/pytree/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-06-05T23:22:12.3192570Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-06-05T23:22:12.3193348Z copying src/executorch/extension/training/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-06-05T23:22:12.3194188Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:22:12.3195263Z copying src/executorch/extension/flat_tensor/serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:22:12.3196498Z copying src/executorch/extension/flat_tensor/serialize/flat_tensor_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:22:12.3197770Z copying src/executorch/extension/flat_tensor/serialize/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:22:12.3198837Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/test 2025-06-05T23:22:12.3199998Z copying src/executorch/extension/flat_tensor/test/test_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/test 2025-06-05T23:22:12.3201246Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converters 2025-06-05T23:22:12.3202216Z copying src/executorch/extension/gguf_util/converters/llama_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converters 2025-06-05T23:22:12.3203162Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:22:12.3204110Z copying src/executorch/extension/llm/custom_ops/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:22:12.3205205Z copying src/executorch/extension/llm/custom_ops/custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:22:12.3206370Z copying src/executorch/extension/llm/custom_ops/model_sharding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:22:12.3207818Z copying src/executorch/extension/llm/custom_ops/op_tile_crop_aot.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:22:12.3208380Z copying src/executorch/extension/llm/custom_ops/preprocess_custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:22:12.3208950Z copying src/executorch/extension/llm/custom_ops/test_preprocess_custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:22:12.3209485Z copying src/executorch/extension/llm/custom_ops/test_quantized_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:22:12.3210032Z copying src/executorch/extension/llm/custom_ops/test_sdpa_with_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:22:12.3210554Z copying src/executorch/extension/llm/custom_ops/test_update_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:22:12.3210793Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:22:12.3510295Z copying src/executorch/extension/llm/export/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:22:12.3510814Z copying src/executorch/extension/llm/export/builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:22:12.3511464Z copying src/executorch/extension/llm/export/export_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:22:12.3511990Z copying src/executorch/extension/llm/export/partitioner_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:22:12.3512475Z copying src/executorch/extension/llm/export/quantizer_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:22:12.3512993Z copying src/executorch/extension/llm/export/test_export_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:22:12.3513240Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:22:12.3513921Z copying src/executorch/extension/llm/modules/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:22:12.3514726Z copying src/executorch/extension/llm/modules/_position_embeddings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:22:12.3515226Z copying src/executorch/extension/llm/modules/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:22:12.3515868Z copying src/executorch/extension/llm/modules/kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:22:12.3516193Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-06-05T23:22:12.3516690Z copying src/executorch/extension/llm/tokenizers/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-06-05T23:22:12.3517117Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:22:12.3517872Z copying src/executorch/extension/llm/custom_ops/spinquant/special_hadamard_code_gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:22:12.3518260Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:22:12.3519129Z copying src/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:22:12.3519871Z copying src/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:22:12.3520237Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-06-05T23:22:12.3520781Z copying src/executorch/extension/llm/export/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-06-05T23:22:12.3521341Z copying src/executorch/extension/llm/export/test/test_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-06-05T23:22:12.3521607Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:22:12.3522126Z copying src/executorch/extension/llm/modules/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:22:12.3522693Z copying src/executorch/extension/llm/modules/test/test_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:22:12.3523332Z copying src/executorch/extension/llm/modules/test/test_kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:22:12.3524028Z copying src/executorch/extension/llm/modules/test/test_position_embeddings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:22:12.3524455Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:22:12.3525297Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:22:12.3526062Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:22:12.3526972Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/hf_tokenizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:22:12.3527677Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/llama2c.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:22:12.3528446Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/tiktoken.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:22:12.3528825Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-06-05T23:22:12.3529491Z copying src/executorch/extension/llm/tokenizers/test/test_tiktoken.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-06-05T23:22:12.3529928Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:22:12.3530674Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:22:12.3531087Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:22:12.3531907Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:22:12.3532730Z copying src/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:22:12.3533157Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:22:12.3533918Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/conanfile.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:22:12.3534647Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/create_lts.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:22:12.3535043Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:22:12.3536184Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:22:12.3536613Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:22:12.3537603Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/copts.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:22:12.3538532Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/generate_copts.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:22:12.3539020Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:22:12.3539933Z copying src/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts/check_structure.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:22:12.3540401Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:22:12.3541321Z copying src/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl/filterbr.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:22:12.3541740Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:22:12.3542616Z copying src/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate/amalgamate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:22:12.3543181Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:22:12.3783716Z copying src/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:22:12.3784215Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:22:12.3785132Z copying src/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis/generate_natvis.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:22:12.3785668Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:22:12.3786547Z copying src/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header/serve_header.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:22:12.3786939Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:12.3788163Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateCommon.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:12.3789079Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateTest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:12.3789860Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcd.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:12.3790662Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpHeader.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:12.3791461Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpTables.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:12.3792330Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateCommon.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:12.3793091Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateDates.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:12.3793868Z copying src/executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateRelease.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:12.3794264Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:22:12.3795032Z copying src/executorch/extension/llm/tokenizers/third-party/re2/benchlog/benchplot.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:22:12.3795397Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:22:12.3796256Z copying src/executorch/extension/llm/tokenizers/third-party/re2/python/re2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:22:12.3796979Z copying src/executorch/extension/llm/tokenizers/third-party/re2/python/re2_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:22:12.3797846Z copying src/executorch/extension/llm/tokenizers/third-party/re2/python/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:22:12.3798309Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:22:12.3799064Z copying src/executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_casefold.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:22:12.3799814Z copying src/executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_groups.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:22:12.3800513Z copying src/executorch/extension/llm/tokenizers/third-party/re2/re2/unicode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:22:12.3800939Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:22:12.3801811Z copying src/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:22:12.3802286Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:22:12.3803114Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:22:12.3803569Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:22:12.3804445Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:22:12.3805528Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/sentencepiece_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:22:12.3806054Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:22:12.3807064Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:22:12.3808091Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/_version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:22:12.3809196Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_model_pb2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:22:12.3810272Z copying src/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_pb2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:22:12.3810715Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:22:12.3811609Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:22:12.3812411Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:22:12.3813287Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/hf_tokenizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:22:12.3814077Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/llama2c.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:22:12.3814872Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tiktoken.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:22:12.3815318Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:22:12.3816153Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:22:12.3816633Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:22:13.6391760Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:22:13.6393784Z copying src/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:22:13.6395128Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/module/test/resources 2025-06-05T23:22:13.6396381Z copying src/executorch/extension/module/test/resources/gen_bundled_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/module/test/resources 2025-06-05T23:22:13.6397458Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:22:13.6398362Z copying src/executorch/extension/pybindings/test/make_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:22:13.6399588Z copying src/executorch/extension/pybindings/test/test_backend_pybinding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:22:13.6400858Z copying src/executorch/extension/pybindings/test/test_pybindings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:22:13.6401868Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-06-05T23:22:13.6402837Z copying src/executorch/extension/pytree/test/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-06-05T23:22:13.6403754Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:22:13.6404727Z copying src/executorch/extension/training/pybindings/_training_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:22:13.6405717Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-06-05T23:22:13.6406820Z copying src/executorch/extension/training/examples/XOR/export_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-06-05T23:22:13.6408217Z copying src/executorch/extension/training/examples/XOR/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-06-05T23:22:13.6409289Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/test 2025-06-05T23:22:13.6410357Z copying src/executorch/extension/training/examples/XOR/test/test_export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/test 2025-06-05T23:22:13.6411576Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/test 2025-06-05T23:22:13.6412604Z copying src/executorch/extension/training/pybindings/test/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/test 2025-06-05T23:22:13.6413543Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:22:13.6414426Z copying src/executorch/kernels/quantized/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:22:13.6415389Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-06-05T23:22:13.6416342Z copying src/executorch/kernels/quantized/test/test_out_variants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-06-05T23:22:13.6417542Z copying src/executorch/kernels/quantized/test/test_quant_dequant_per_token.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-06-05T23:22:13.6418426Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-06-05T23:22:13.6419167Z copying src/executorch/runtime/test/test_runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-06-05T23:22:13.6419767Z running egg_info 2025-06-05T23:22:13.6420091Z creating executorch.egg-info 2025-06-05T23:22:13.6420396Z writing executorch.egg-info/PKG-INFO 2025-06-05T23:22:13.6420816Z writing dependency_links to executorch.egg-info/dependency_links.txt 2025-06-05T23:22:13.6421337Z writing entry points to executorch.egg-info/entry_points.txt 2025-06-05T23:22:13.6421850Z writing requirements to executorch.egg-info/requires.txt 2025-06-05T23:22:13.6422404Z writing top-level names to executorch.egg-info/top_level.txt 2025-06-05T23:22:13.6422851Z writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:22:13.6423341Z reading manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:22:13.6423706Z adding license file 'LICENSE' 2025-06-05T23:22:13.6424053Z writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:22:13.6424653Z copying src/executorch/exir/delegate.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:22:13.6425287Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:22:13.6425995Z copying src/executorch/schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:22:13.6426791Z copying src/executorch/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:22:13.6427811Z copying src/executorch/backends/apple/coreml/executorchcoreml.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml 2025-06-05T23:22:13.6429338Z copying src/executorch/backends/apple/mps/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-06-05T23:22:13.6430446Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:22:13.6431658Z copying src/executorch/backends/arm/third-party/serialization_lib/schema/tosa.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:22:13.6433399Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/pnpm-lock.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:22:13.6434971Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:22:13.6436646Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/analysis_options.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:22:13.6438909Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/pubspec.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:22:13.6440905Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/py.typed -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:22:13.6442777Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:22:13.6444429Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection/reflection.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:22:13.6446519Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/monster.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:22:13.6448939Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:13.6450610Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:22:13.6452171Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap/snapcraft.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:22:13.6454447Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MutatingBool.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6456572Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/alignment_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6458616Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/arrays_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6460773Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/dictionary_lookup.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6628211Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/included_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6630382Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/includer_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6632434Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/keyword_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6634715Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_extra.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6637040Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6639091Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/more_defaults.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6641189Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nan_inf_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6643339Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_inline_table_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6645440Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_type_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6647652Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_union_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6649823Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6651931Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/private_annotation_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6654138Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/required_strings.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6656354Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/rust_namer_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6658412Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6660439Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/type_field_collsion.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6662566Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_underlying_type_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6664837Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_value_collision.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6667205Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/vector_has_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:13.6668961Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs 2025-06-05T23:22:13.6670775Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs/animal.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs 2025-06-05T23:22:13.6672665Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers 2025-06-05T23:22:13.6674618Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers 2025-06-05T23:22:13.6676374Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:22:13.6677996Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/bool_structs.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:22:13.6680334Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/list_of_enums.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:22:13.6682456Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/monster_test.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:22:13.6684097Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:22:13.6685890Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/hero.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:22:13.6688107Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/net.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:22:13.6689759Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:22:13.6691432Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema/basic.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:22:13.6693753Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/greeter.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples 2025-06-05T23:22:13.6695590Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter 2025-06-05T23:22:13.6697361Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter/greeter.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter 2025-06-05T23:22:13.6805683Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector 2025-06-05T23:22:13.6807798Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector/union_vector.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector 2025-06-05T23:22:13.6809654Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:22:13.6811450Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/test_64bit.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:22:13.6813769Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:22:13.6816180Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary_old.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:22:13.6818278Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:22:13.6820067Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:22:13.6822375Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:22:13.6824839Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/enum_val_attributes.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:13.6827074Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:13.6829168Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo_with_ns.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:13.6831023Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:22:13.6832762Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/include_test1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:22:13.6834997Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/order.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:22:13.6836832Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field 2025-06-05T23:22:13.6838584Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field/key_field_sample.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field 2025-06-05T23:22:13.6840369Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums 2025-06-05T23:22:13.6842129Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums/enums.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums 2025-06-05T23:22:13.6844065Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:22:13.6845847Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:22:13.6848157Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:22:13.6850616Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:22:13.6853029Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:22:13.6855338Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test 2025-06-05T23:22:13.6857878Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test 2025-06-05T23:22:13.6859693Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:22:13.6861581Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:22:13.6864287Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:22:13.6867043Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test3.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:22:13.6868878Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.6870915Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.6873796Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_id.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.6876381Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.6981707Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include_id.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.6984072Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.6986778Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix_id.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.6989149Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.6991424Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_id.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.6993886Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.6996721Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include_id.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.6999073Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.7001717Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix_id.golden.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:13.7003994Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/typescript_keywords.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:22:13.7005681Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector 2025-06-05T23:22:13.7007620Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector/union_vector.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector 2025-06-05T23:22:13.7009855Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:22:13.7011625Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v1.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:22:13.7013878Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:22:13.7015870Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:22:13.7017542Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:22:13.7019785Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_foo.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:22:13.7022239Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_ns.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:22:13.7023950Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz 2025-06-05T23:22:13.7025747Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz 2025-06-05T23:22:13.7028012Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz_with_ns.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz 2025-06-05T23:22:13.7029978Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub 2025-06-05T23:22:13.7031775Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/include_test2.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub 2025-06-05T23:22:13.7034111Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/no_namespace.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub 2025-06-05T23:22:13.7035986Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests 2025-06-05T23:22:13.7038028Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_import.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests 2025-06-05T23:22:13.7040899Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_no_include.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests 2025-06-05T23:22:13.7043105Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers 2025-06-05T23:22:13.7045394Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers/fuzzer.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers 2025-06-05T23:22:13.7047703Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex 2025-06-05T23:22:13.7049759Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex/arrays_test_complex.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex 2025-06-05T23:22:13.7051861Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:22:13.7054001Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/one.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:22:13.7278182Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/pnpm-lock.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:22:13.7280720Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/two.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:22:13.7282790Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir 2025-06-05T23:22:13.7284725Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_include.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir 2025-06-05T23:22:13.7287075Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_transitive_include.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir 2025-06-05T23:22:13.7288841Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas 2025-06-05T23:22:13.7289795Z copying src/executorch/backends/arm/tosa/schemas/tosa_0.80.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas 2025-06-05T23:22:13.7290949Z copying src/executorch/backends/arm/tosa/schemas/tosa_1.0.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas 2025-06-05T23:22:13.7292070Z copying src/executorch/backends/cadence/aot/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:13.7293184Z copying src/executorch/backends/cadence/aot/functions_fusion_g3.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:13.7294563Z copying src/executorch/backends/cadence/aot/functions_hifi.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:22:13.7295721Z copying src/executorch/backends/cortex_m/ops/operators.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-06-05T23:22:13.7297105Z copying src/executorch/backends/qualcomm/serialization/qc_compiler_spec.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:22:13.7298114Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/aot/ir 2025-06-05T23:22:13.7299045Z copying src/executorch/backends/qualcomm/aot/ir/qcir.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/aot/ir 2025-06-05T23:22:13.7300329Z copying src/executorch/backends/vulkan/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:22:13.7301391Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7302793Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7304362Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_texture3d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7306134Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_optimized.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7307723Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/arange.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7309436Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/avg_pool2d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7311014Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/batchnorm.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7312574Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/binary_op.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7314226Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/bitw8_image_to_nchw_nobitw8buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7316056Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7317521Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_nchw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7318966Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/clone.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7320387Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv1d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7321976Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7323470Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7324954Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_output_tile.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7326494Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_prepack_weights.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7328258Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_sned_output_tile.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7329832Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_prepack_weights.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7331324Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7332783Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_s1p0.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7334269Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7335845Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d_prepack_weights.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7337489Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/copy_channel_offset.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7339206Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/copy_offset.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7340766Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/copy_packed_dim_offset.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7342272Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/embedding.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7343698Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/flip.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7345097Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/full.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7346594Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/grid_priors.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7348283Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/image_to_nchw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7611694Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/index_select.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7613235Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/index_select_channel.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7614750Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/kv_cache_update.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7616327Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7617972Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_coop.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7619468Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7620975Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_coop.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7622756Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7624339Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/max_pool2d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7625880Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/native_layer_norm.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7627452Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_bitw8_image_nobitw8buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7629090Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7630654Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_image.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7632484Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/no_op.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7634201Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/pack_int4_linear_weight_transposed_interleaved.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7636089Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/pad_channel.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7637617Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/pad_height_width.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7639112Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/permute.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7640554Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/reduce.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7642263Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/repeat.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7643776Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_channel.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7645288Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_interleave.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7646796Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/rotary_embedding.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7648360Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weight_scale_and_mask.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7650122Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/softmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7651677Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/tan.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7653129Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7654745Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_texture.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7656208Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/unary_op.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7657676Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/upsample_2d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7659287Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/var_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7660777Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/var_texture3d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7662224Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/view.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7663705Z copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/where.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:13.7664731Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-06-05T23:22:13.7665867Z copying src/executorch/backends/vulkan/test/glsl/all_shaders.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-06-05T23:22:13.7667202Z copying src/executorch/backends/vulkan/test/glsl/dynamic_dispatch_test.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-06-05T23:22:13.7668670Z copying src/executorch/backends/vulkan/test/glsl/reference_matmul_common.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-06-05T23:22:13.7669701Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:13.7670766Z copying src/executorch/backends/vulkan/tools/gpuinfo/glsl/buf_bandwidth.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:13.7672187Z copying src/executorch/backends/vulkan/tools/gpuinfo/glsl/buf_cacheline_size.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:13.7673584Z copying src/executorch/backends/vulkan/tools/gpuinfo/glsl/reg_count.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:13.7675084Z copying src/executorch/backends/vulkan/tools/gpuinfo/glsl/tex_bandwidth.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:13.7676575Z copying src/executorch/backends/vulkan/tools/gpuinfo/glsl/tex_cacheline_concurr.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:13.7677993Z copying src/executorch/backends/vulkan/tools/gpuinfo/glsl/warp_size.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:13.7679329Z copying src/executorch/backends/xnnpack/serialization/runtime_schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:22:13.7680628Z copying src/executorch/backends/xnnpack/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:22:13.7682122Z copying src/executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party 2025-06-05T23:22:13.7683523Z copying src/executorch/backends/xnnpack/third-party/FP16/confu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:22:13.7922981Z copying src/executorch/backends/xnnpack/third-party/FXdiv/confu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:22:13.7924421Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/confu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:22:13.7926082Z copying src/executorch/backends/xnnpack/third-party/pthreadpool/confu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:22:13.7928740Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:22:13.7930563Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:22:13.7931770Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7934029Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7935903Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-conv-hwc2chw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7937505Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-dwconv2d-chw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7939910Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7941938Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-igemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7943579Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rdsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7945672Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7947981Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7949580Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear-chw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7951174Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7953814Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-igemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7955545Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-raddstoreexpminusmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7957141Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7959070Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmin.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7961466Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rminmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7962963Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7964496Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-spmm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7966492Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-vmulcaddc-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7969018Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-argmaxpool.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7970659Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7972382Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc2chw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7974709Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-dwconv2d-chw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7976806Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-goi-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7978429Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7980755Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-relu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7982709Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7984278Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemminc-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7986516Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear-chw.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7988736Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7990296Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7991867Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-relu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7994363Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7996117Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ppmm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7997834Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.7999473Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8001525Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-relu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8003860Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8005421Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddexpminusmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8007037Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddextexp.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8222511Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddstoreexpminusmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8224502Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rdsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8226218Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8228032Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmin.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8229827Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rminmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8231685Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8233369Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-spmm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8235268Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vmulcaddc-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8237197Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleexpminusmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8239141Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleextexp.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8240980Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qb4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8242876Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8244791Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8246738Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-igemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8248823Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qb4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8250798Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8252656Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8254591Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-igemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8256489Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qb4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8258529Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc4w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8260379Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-gemm-minmax-fp32.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8262294Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-igemm-minmax-fp32.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8264013Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rdsum-minmax-fp32.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8265847Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8267643Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-fp32.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8269289Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-rndnu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8271105Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-fp32.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8273033Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-rndnu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8274869Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rdsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8276624Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rsum.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8278158Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/s8-ibilinear.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8279665Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/u8-ibilinear.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8281168Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/u8-lut32norm.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8282787Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/u8-rmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8284525Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/x8-lut.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:13.8286200Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.8288074Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.8289761Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.8291902Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.8301787Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.8303627Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.8305252Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.8306962Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.8308878Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9281794Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9284784Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9287801Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9290928Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9294077Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9297165Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9300138Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9303027Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9306278Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9308997Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9310647Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9312313Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9314021Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9316050Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9317632Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:13.9319421Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:22:13.9322169Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:22:13.9323854Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:22:13.9325460Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/confu.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:22:13.9327017Z copying src/executorch/devtools/etdump/etdump_schema_flatcc.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:22:13.9328814Z copying src/executorch/devtools/etdump/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:22:13.9330919Z copying src/executorch/devtools/bundled_program/schema/bundled_program_schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:22:13.9333313Z copying src/executorch/devtools/bundled_program/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:22:13.9335535Z copying src/executorch/examples/llm_pte_finetuning/llama3_config.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:22:13.9337774Z copying src/executorch/examples/llm_pte_finetuning/phi3_alpaca_code_config.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:22:13.9340009Z copying src/executorch/examples/llm_pte_finetuning/phi3_config.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:22:13.9342129Z copying src/executorch/examples/llm_pte_finetuning/qwen_05b_config.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:22:13.9344243Z copying src/executorch/examples/models/phi-3-mini/export_phi-3-mini.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:22:13.9346485Z copying src/executorch/exir/dialects/edge/edge.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:22:13.9348409Z copying src/executorch/extension/pybindings/pybindings.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:22:13.9350546Z copying src/executorch/extension/flat_tensor/serialize/flat_tensor.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:22:13.9352813Z copying src/executorch/extension/flat_tensor/serialize/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:22:13.9355558Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:22:13.9358987Z copying src/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:22:13.9362150Z copying src/executorch/extension/training/pybindings/_training_lib.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:22:13.9364266Z copying src/executorch/kernels/quantized/quantized.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:22:13.9366364Z copying src/executorch/kernels/quantized/test/supported_features_def.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-06-05T23:22:13.9367961Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-06-05T23:22:13.9369369Z copying src/executorch/runtime/kernel/test/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-06-05T23:22:13.9370979Z copying schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:22:13.9372226Z copying schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:22:13.9373977Z copying devtools/bundled_program/schema/bundled_program_schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:22:13.9376115Z copying devtools/bundled_program/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:22:13.9377589Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake 2025-06-05T23:22:13.9379023Z copying tools/cmake/executorch-wheel-config.cmake -> pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake/executorch-config.cmake 2025-06-05T23:22:13.9380654Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9382029Z copying runtime/core/array_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9383656Z copying runtime/core/data_loader.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9385248Z copying runtime/core/defines.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9386870Z copying runtime/core/error.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9388403Z copying runtime/core/evalue.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9390019Z copying runtime/core/event_tracer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9415316Z copying runtime/core/event_tracer_hooks.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9417383Z copying runtime/core/event_tracer_hooks_delegate.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9419167Z copying runtime/core/freeable_buffer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9420399Z copying runtime/core/function_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9421373Z copying runtime/core/hierarchical_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9422373Z copying runtime/core/memory_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9423325Z copying runtime/core/named_data_map.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9424428Z copying runtime/core/result.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9426012Z copying runtime/core/span.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9427513Z copying runtime/core/tag.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9429290Z copying runtime/core/tensor_layout.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9431021Z copying runtime/core/tensor_shape_dynamism.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:22:13.9432572Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:22:13.9433526Z copying runtime/core/exec_aten/exec_aten.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:22:13.9434518Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:22:13.9435754Z copying runtime/core/exec_aten/testing_util/tensor_factory.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:22:13.9437463Z copying runtime/core/exec_aten/testing_util/tensor_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:22:13.9439379Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:22:13.9441225Z copying runtime/core/exec_aten/util/dim_order_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:22:13.9443414Z copying runtime/core/exec_aten/util/scalar_type_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:22:13.9445667Z copying runtime/core/exec_aten/util/tensor_dimension_limit.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:22:13.9447975Z copying runtime/core/exec_aten/util/tensor_shape_to_c_string.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:22:13.9450218Z copying runtime/core/exec_aten/util/tensor_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:22:13.9452090Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9453925Z copying runtime/core/portable_type/bfloat16.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9456082Z copying runtime/core/portable_type/bfloat16_math.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9458161Z copying runtime/core/portable_type/bits_types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9459600Z copying runtime/core/portable_type/complex.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9460755Z copying runtime/core/portable_type/device.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9461889Z copying runtime/core/portable_type/half.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9463029Z copying runtime/core/portable_type/optional.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9464673Z copying runtime/core/portable_type/qint_types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9466755Z copying runtime/core/portable_type/scalar.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9467954Z copying runtime/core/portable_type/scalar_type.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9469259Z copying runtime/core/portable_type/string_view.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9470427Z copying runtime/core/portable_type/tensor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9472328Z copying runtime/core/portable_type/tensor_impl.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9474432Z copying runtime/core/portable_type/tensor_options.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:13.9476415Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:22:13.9478586Z copying runtime/core/portable_type/c10/c10/macros/Export.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:22:13.9481156Z copying runtime/core/portable_type/c10/c10/macros/Macros.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:22:13.9483329Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9485318Z copying runtime/core/portable_type/c10/c10/util/BFloat16-inl.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9486793Z copying runtime/core/portable_type/c10/c10/util/BFloat16-math.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9488235Z copying runtime/core/portable_type/c10/c10/util/BFloat16.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9489637Z copying runtime/core/portable_type/c10/c10/util/Half-inl.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9491123Z copying runtime/core/portable_type/c10/c10/util/Half.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9493641Z copying runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9496260Z copying runtime/core/portable_type/c10/c10/util/bit_cast.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9498956Z copying runtime/core/portable_type/c10/c10/util/complex.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9501510Z copying runtime/core/portable_type/c10/c10/util/complex_math.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9504121Z copying runtime/core/portable_type/c10/c10/util/complex_utils.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9506605Z copying runtime/core/portable_type/c10/c10/util/floating_point_utils.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9509018Z copying runtime/core/portable_type/c10/c10/util/irange.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:13.9510811Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:22:13.9512272Z copying runtime/kernel/kernel_includes.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:22:14.0191153Z copying runtime/kernel/kernel_runtime_context.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:22:14.0193179Z copying runtime/kernel/operator_registry.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:22:14.0195113Z copying runtime/kernel/thread_parallel_interface.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:22:14.0196862Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:22:14.0198497Z copying runtime/kernel/test/test_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:22:14.0200112Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.0201667Z copying runtime/platform/abort.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.0203367Z copying runtime/platform/assert.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.0205089Z copying runtime/platform/clock.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.0206879Z copying runtime/platform/compat_unistd.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.0208697Z copying runtime/platform/compiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.0210447Z copying runtime/platform/log.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.0212181Z copying runtime/platform/platform.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.0213938Z copying runtime/platform/profiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.0215712Z copying runtime/platform/runtime.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.0217448Z copying runtime/platform/system.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.0219173Z copying runtime/platform/types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.0220738Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:22:14.0222363Z copying runtime/platform/test/pal_spy.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:22:14.0224606Z copying runtime/platform/test/stub_platform.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:22:14.0226379Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:22:14.0228163Z copying extension/kernel_util/make_boxed_from_unboxed_functor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:22:14.0230307Z copying extension/kernel_util/meta_programming.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:22:14.0232268Z copying extension/kernel_util/type_list.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:22:14.0233861Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:22:14.0235390Z copying extension/tensor/tensor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:22:14.0237168Z copying extension/tensor/tensor_accessor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:22:14.0239091Z copying extension/tensor/tensor_ptr.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:22:14.0240918Z copying extension/tensor/tensor_ptr_maker.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:22:14.0242519Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:22:14.0244225Z copying extension/threadpool/cpuinfo_utils.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:22:14.0246148Z copying extension/threadpool/threadpool.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:22:14.0248161Z copying extension/threadpool/threadpool_guard.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:22:14.0249444Z running build_ext 2025-06-05T23:22:14.0250164Z creating /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin 2025-06-05T23:22:14.0252342Z copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/bin/flatc -> /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin 2025-06-05T23:22:14.0254879Z copying tools/wheel/pip_data_bin_init.py.in -> /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin/__init__.py 2025-06-05T23:22:14.0257227Z copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/_portable_lib.cpython-310-x86_64-linux-gnu.so -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:22:14.0260358Z copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/backends/apple/coreml/executorchcoreml.cpython-310-x86_64-linux-gnu.so -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml 2025-06-05T23:22:14.0263783Z copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/extension/llm/custom_ops/libcustom_ops_aot_lib.so -> /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:22:14.0267275Z copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/kernels/quantized/libquantized_ops_aot_lib.so -> /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:22:14.0269202Z installing to pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:22:14.0269780Z running install 2025-06-05T23:22:14.0270160Z running install_lib 2025-06-05T23:22:14.0270595Z creating pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:22:14.0271437Z creating pip-out/bdist.linux-x86_64/wheel/executorch 2025-06-05T23:22:14.0272175Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen 2025-06-05T23:22:14.0273511Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen 2025-06-05T23:22:14.0275324Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen 2025-06-05T23:22:14.0277150Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen 2025-06-05T23:22:14.0279017Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/parse.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen 2025-06-05T23:22:14.0280370Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api 2025-06-05T23:22:14.0281790Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api 2025-06-05T23:22:14.0283828Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/custom_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api 2025-06-05T23:22:14.0286016Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/et_cpp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api 2025-06-05T23:22:14.0288016Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/unboxing.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api 2025-06-05T23:22:14.0289544Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api/types 2025-06-05T23:22:14.0291120Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api/types 2025-06-05T23:22:14.0293364Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types/signatures.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api/types 2025-06-05T23:22:14.0295641Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types/types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/api/types 2025-06-05T23:22:14.0297156Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/test 2025-06-05T23:22:14.0298778Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test/test_executorch_custom_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/test 2025-06-05T23:22:14.0301048Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test/test_executorch_gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/test 2025-06-05T23:22:14.0303364Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test/test_executorch_signatures.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/test 2025-06-05T23:22:14.0305808Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test/test_executorch_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/test 2025-06-05T23:22:14.0308183Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test/test_executorch_unboxing.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/test 2025-06-05T23:22:14.0310470Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test/test_selective_build.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/test 2025-06-05T23:22:14.0312037Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools 2025-06-05T23:22:14.0313534Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:22:14.0315680Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/gen_all_oplist.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:22:14.0317844Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/gen_oplist.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:22:14.0320122Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/gen_ops_def.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:22:14.0322311Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/gen_selected_op_variants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:22:14.0324596Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/merge_yaml.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:22:14.0326710Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/yaml_util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-06-05T23:22:14.0328243Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools/test 2025-06-05T23:22:14.0329979Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test/test_gen_all_oplist.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools/test 2025-06-05T23:22:14.0332406Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test/test_gen_oplist.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools/test 2025-06-05T23:22:14.0334937Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test/test_gen_oplist_real_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools/test 2025-06-05T23:22:14.0337535Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test/test_gen_selected_op_variants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools/test 2025-06-05T23:22:14.0339268Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools 2025-06-05T23:22:14.0340652Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools 2025-06-05T23:22:14.0342145Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug 2025-06-05T23:22:14.0343859Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/backend_debug 2025-06-05T23:22:14.0346382Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/delegation_info.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/backend_debug 2025-06-05T23:22:14.0348253Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug/tests 2025-06-05T23:22:14.0350146Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/tests/test_delegation_info.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/backend_debug/tests 2025-06-05T23:22:14.0352108Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program 2025-06-05T23:22:14.0353844Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program 2025-06-05T23:22:14.0356263Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/core.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program 2025-06-05T23:22:14.0358647Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program 2025-06-05T23:22:14.0360472Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema 2025-06-05T23:22:14.0362546Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/schema 2025-06-05T23:22:14.0366331Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/bundled_program_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/schema 2025-06-05T23:22:14.0368439Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema/test 2025-06-05T23:22:14.0370712Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/test/test_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/schema/test 2025-06-05T23:22:14.0373629Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/bundled_program_schema.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/schema 2025-06-05T23:22:14.0376468Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/schema 2025-06-05T23:22:14.0378417Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize 2025-06-05T23:22:14.0380401Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/serialize 2025-06-05T23:22:14.0382481Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:22:14.0384740Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/test/test_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/serialize/test 2025-06-05T23:22:14.0388653Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/bundled_program_schema.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/serialize 2025-06-05T23:22:14.0391669Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/serialize 2025-06-05T23:22:14.0393705Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/test 2025-06-05T23:22:14.0395576Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test/test_bundle_data.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/test 2025-06-05T23:22:14.0398235Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test/test_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/test 2025-06-05T23:22:14.0400938Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test/test_end2end.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/test 2025-06-05T23:22:14.0402859Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/util 2025-06-05T23:22:14.0404769Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/util/test_util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/bundled_program/util 2025-06-05T23:22:14.0406564Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/debug_format 2025-06-05T23:22:14.0408216Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format/base_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/debug_format 2025-06-05T23:22:14.0410594Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format/et_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/debug_format 2025-06-05T23:22:14.0412205Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump 2025-06-05T23:22:14.0413828Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/schema_flatcc.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etdump 2025-06-05T23:22:14.0416117Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etdump 2025-06-05T23:22:14.0417778Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump/tests 2025-06-05T23:22:14.0419575Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests/serialize_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etdump/tests 2025-06-05T23:22:14.0422217Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/etdump_schema_flatcc.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etdump 2025-06-05T23:22:14.0424565Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etdump 2025-06-05T23:22:14.0426258Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord 2025-06-05T23:22:14.0427875Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etrecord 2025-06-05T23:22:14.0430106Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/_etrecord.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etrecord 2025-06-05T23:22:14.0431778Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord/tests 2025-06-05T23:22:14.0433605Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests/etrecord_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/etrecord/tests 2025-06-05T23:22:14.0435395Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector 2025-06-05T23:22:14.0437144Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector 2025-06-05T23:22:14.0439443Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/_inspector.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector 2025-06-05T23:22:14.0441822Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/_inspector_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector 2025-06-05T23:22:14.0444355Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/_intermediate_output_capturer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector 2025-06-05T23:22:14.0446860Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/inspector_cli.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector 2025-06-05T23:22:14.0448630Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector/tests 2025-06-05T23:22:14.0450506Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/event_blocks_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-06-05T23:22:14.0453117Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/inspector_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-06-05T23:22:14.0455732Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/inspector_test_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-06-05T23:22:14.0458435Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/inspector_utils_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-06-05T23:22:14.0461304Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/intermediate_output_capturer_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-06-05T23:22:14.0463352Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/size_analysis_tool 2025-06-05T23:22:14.0465392Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool/size_analysis_tool.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/size_analysis_tool 2025-06-05T23:22:14.0468130Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool/size_analysis_tool_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/size_analysis_tool 2025-06-05T23:22:14.0470032Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/visualization 2025-06-05T23:22:14.0471939Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/visualization 2025-06-05T23:22:14.0474486Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization/visualization_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/visualization 2025-06-05T23:22:14.0477129Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization/visualization_utils_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/visualization 2025-06-05T23:22:14.0478921Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir 2025-06-05T23:22:14.0480188Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0481906Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_warnings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0483701Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/common.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0485515Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/control_flow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0487524Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/delegate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0489315Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dim_order_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0491129Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dynamic_shape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0492944Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/error.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0494643Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/graph.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0496413Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/graph_module.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0498323Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/lowered_backend_module.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0500184Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/memory.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0501919Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/memory_planning.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0503774Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/pass_base.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0505604Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0507460Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/print_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0509285Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/scalar_type.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0511080Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0512808Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/sym_util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0514586Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0516351Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tracer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0518272Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0520033Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0521800Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/wrap.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0523135Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize 2025-06-05T23:22:14.0524660Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:22:14.0526777Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/_cord.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:22:14.0528917Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/_dataclass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:22:14.0531057Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/_flatbuffer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:22:14.0533377Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/_named_data_store.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:22:14.0535550Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:22:14.0537662Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:22:14.0539823Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/data_serializer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:22:14.0542026Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/padding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:22:14.0543658Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize/test 2025-06-05T23:22:14.0545284Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize/test 2025-06-05T23:22:14.0547582Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test/test_cord.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize/test 2025-06-05T23:22:14.0549924Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test/test_flatbuffer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize/test 2025-06-05T23:22:14.0552324Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test/test_named_data_store.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize/test 2025-06-05T23:22:14.0554673Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test/test_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize/test 2025-06-05T23:22:14.0556950Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:22:14.0559058Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/program.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize 2025-06-05T23:22:14.0560609Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend 2025-06-05T23:22:14.0562129Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/backend_api.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend 2025-06-05T23:22:14.0564271Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/backend_details.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend 2025-06-05T23:22:14.0566743Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/compile_spec_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend 2025-06-05T23:22:14.0568973Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/operator_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend 2025-06-05T23:22:14.0571165Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend 2025-06-05T23:22:14.0573238Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend 2025-06-05T23:22:14.0574892Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/canonical_partitioners 2025-06-05T23:22:14.0577067Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners/all_node_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/canonical_partitioners 2025-06-05T23:22:14.0580104Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners/config_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/canonical_partitioners 2025-06-05T23:22:14.0583345Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners/duplicate_constant_node_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/canonical_partitioners 2025-06-05T23:22:14.0586556Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners/duplicate_dequant_node_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/canonical_partitioners 2025-06-05T23:22:14.0589681Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners/pattern_op_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/canonical_partitioners 2025-06-05T23:22:14.0591733Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test 2025-06-05T23:22:14.0593520Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/backend_with_compiler_demo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0596090Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/backend_with_delegate_mapping_demo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0598722Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/backend_with_named_data_map.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0601322Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/backend_with_preprocess_all_demo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0603875Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/hta_partitioner_demo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0606325Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/op_partitioner_demo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0608758Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/qnn_backend_demo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0611246Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_backend_with_named_data_map.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0613762Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_backends.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0616187Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_backends_lifted.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0618806Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_backends_nested.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0621278Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_compatibility.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0623719Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_debug_handle_map.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0626270Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_delegate_map_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0628758Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_graph_partition.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0631269Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_lowered_backend_module.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0633744Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0636248Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0638643Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_to_backend_multi_method.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0641053Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-06-05T23:22:14.0642675Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos 2025-06-05T23:22:14.0644537Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/test_delegate_aten_mode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test/demos 2025-06-05T23:22:14.0647232Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/test_xnnpack_qnnpack.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test/demos 2025-06-05T23:22:14.0649100Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos/rpc 2025-06-05T23:22:14.0651073Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc/executor_backend_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test/demos/rpc 2025-06-05T23:22:14.0654024Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc/executor_backend_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test/demos/rpc 2025-06-05T23:22:14.0656809Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc/test_rpc.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test/demos/rpc 2025-06-05T23:22:14.0658557Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/capture 2025-06-05T23:22:14.0660049Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/capture 2025-06-05T23:22:14.0662080Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture/_capture.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/capture 2025-06-05T23:22:14.0664080Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture/_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/capture 2025-06-05T23:22:14.0666325Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture/_unlift.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/capture 2025-06-05T23:22:14.0667811Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects 2025-06-05T23:22:14.0669481Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects 2025-06-05T23:22:14.0671509Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects 2025-06-05T23:22:14.0673000Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend 2025-06-05T23:22:14.0674672Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/backend 2025-06-05T23:22:14.0676401Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend/test 2025-06-05T23:22:14.0678303Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/test/test_backend_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/backend/test 2025-06-05T23:22:14.0680198Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge 2025-06-05T23:22:14.0681801Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge 2025-06-05T23:22:14.0683531Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/arg 2025-06-05T23:22:14.0685265Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/arg 2025-06-05T23:22:14.0687584Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg/type.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/arg 2025-06-05T23:22:14.0689308Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/dtype 2025-06-05T23:22:14.0691095Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype/runner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/dtype 2025-06-05T23:22:14.0693627Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype/supported.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/dtype 2025-06-05T23:22:14.0696171Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/dtype 2025-06-05T23:22:14.0697913Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op 2025-06-05T23:22:14.0699590Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/api.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/op 2025-06-05T23:22:14.0701982Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/sample_input.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/op 2025-06-05T23:22:14.0703760Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op/test 2025-06-05T23:22:14.0705680Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/test/test_api.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/op/test 2025-06-05T23:22:14.0707502Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/spec 2025-06-05T23:22:14.0709200Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/spec 2025-06-05T23:22:14.0711603Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/spec 2025-06-05T23:22:14.0713360Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/test 2025-06-05T23:22:14.0715154Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test/test_edge_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/test 2025-06-05T23:22:14.0717830Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test/test_edge_yaml.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge/test 2025-06-05T23:22:14.0720244Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/edge.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/edge 2025-06-05T23:22:14.0721889Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/test 2025-06-05T23:22:14.0723637Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/test/test_exir_dialect_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/dialects/test 2025-06-05T23:22:14.0725314Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit 2025-06-05T23:22:14.0726706Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/emit 2025-06-05T23:22:14.0728635Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/_emit_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/emit 2025-06-05T23:22:14.0730619Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/_emitter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/emit 2025-06-05T23:22:14.0732046Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit/test 2025-06-05T23:22:14.0733640Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test/test_emit.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/emit/test 2025-06-05T23:22:14.0735173Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator 2025-06-05T23:22:14.0736678Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/convert.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/operator 2025-06-05T23:22:14.0738791Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/manip.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/operator 2025-06-05T23:22:14.0740847Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/operator 2025-06-05T23:22:14.0742336Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator/test 2025-06-05T23:22:14.0744004Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test/test_operator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/operator/test 2025-06-05T23:22:14.0745747Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/passes 2025-06-05T23:22:14.0747135Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0749284Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/_quant_patterns_and_replacements.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0751486Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/const_prop_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0753671Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/constant_prop_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0755921Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/debug_handle_generator_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0758203Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/dim_order_ops_registry.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0760455Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/dynamic_shape_prop_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0762780Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/executorch_prim_ops_registry.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0765492Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/external_constants_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0767728Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/init_mutable_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0770007Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/insert_write_back_for_buffers_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0772346Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/memory_format_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0774600Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/memory_planning_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0776911Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/normalize_transpose_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0779325Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/normalize_view_copy_base_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0781777Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/pass_registry.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0783976Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/prune_empty_tensors_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0786247Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/quant_fusion_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0788412Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/quantize_io_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0790668Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/remove_graph_asserts_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0793043Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/remove_mixed_type_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0795313Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/remove_noop_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0797551Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/remove_unused_parameters_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0799947Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/replace_aten_with_edge_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0802377Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/replace_broken_ops_with_function_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0804868Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/replace_edge_with_backend_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0807228Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/replace_sym_size_op_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0809471Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/replace_view_copy_with_view_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0811814Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/scalar_to_tensor_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0814026Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/spec_prop_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0816350Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/sym_shape_eval_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0818531Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/sym_to_tensor_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0820781Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/weights_to_outputs_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-06-05T23:22:14.0822369Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program 2025-06-05T23:22:14.0823849Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/program 2025-06-05T23:22:14.0826043Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/_fake_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/program 2025-06-05T23:22:14.0828159Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/program 2025-06-05T23:22:14.0829698Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program/test 2025-06-05T23:22:14.0831407Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/program/test 2025-06-05T23:22:14.0833668Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test/test_fake_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/program/test 2025-06-05T23:22:14.0836030Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test/test_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/program/test 2025-06-05T23:22:14.0837635Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/serde 2025-06-05T23:22:14.0839005Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/serde 2025-06-05T23:22:14.0841061Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde/export_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/serde 2025-06-05T23:22:14.0843174Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde/schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/serde 2025-06-05T23:22:14.0845210Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde/schema_check.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/serde 2025-06-05T23:22:14.0847246Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde/serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/serde 2025-06-05T23:22:14.0849267Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde/union.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/serde 2025-06-05T23:22:14.0850713Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/tests 2025-06-05T23:22:14.0852180Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/asr_joiner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0854204Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/common.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0856298Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/control_flow_models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0858505Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/dynamic_shape_models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0860607Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0862688Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_arg_validator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0864905Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_capture.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0867097Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_common.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0869147Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_delegate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0871268Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_dim_order_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0873513Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_dynamic_shape_propagation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0875733Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_error.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0877834Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_joint_graph.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0880202Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_memory_format_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0882517Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_memory_format_ops_pass_aten.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0884879Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_memory_format_ops_pass_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0887134Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_memory_planning.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0889294Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_op_convert.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0891312Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_pass_infra.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0893349Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0895486Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_print_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0897734Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_prune_empty_tensors_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0899984Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_quant_fusion_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0902184Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_quantization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0904379Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_quantize_io_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0906737Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_remove_unused_parameters_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0909034Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_remove_view_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0911130Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_serde.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0913082Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0915274Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_tracer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0917356Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_verification.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0919498Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_warnings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0921594Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/transformer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-06-05T23:22:14.0923092Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification 2025-06-05T23:22:14.0924778Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/arg_validator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/verification 2025-06-05T23:22:14.0927094Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/dev_html.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/verification 2025-06-05T23:22:14.0929542Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/interpreter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/verification 2025-06-05T23:22:14.0931860Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/verifier.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/verification 2025-06-05T23:22:14.0933528Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification/test 2025-06-05T23:22:14.0935329Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test/test_verifier.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/verification/test 2025-06-05T23:22:14.0937512Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/delegate.pyi -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-06-05T23:22:14.0938866Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime 2025-06-05T23:22:14.0940220Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/runtime 2025-06-05T23:22:14.0941619Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/test 2025-06-05T23:22:14.0943157Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test/test_runtime.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/runtime/test 2025-06-05T23:22:14.0944709Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel 2025-06-05T23:22:14.0945748Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel/test 2025-06-05T23:22:14.0947464Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test/functions.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/runtime/kernel/test 2025-06-05T23:22:14.0949084Z creating pip-out/bdist.linux-x86_64/wheel/executorch/util 2025-06-05T23:22:14.0950571Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/util/activation_memory_profiler.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/util 2025-06-05T23:22:14.0952581Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/util/collect_env.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/util 2025-06-05T23:22:14.0954469Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/util/python_profiler.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/util 2025-06-05T23:22:14.0955871Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends 2025-06-05T23:22:14.0956742Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm 2025-06-05T23:22:14.0958265Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/arm_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0960350Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/arm_vela.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0962636Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/ethosu_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0964893Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/ethosu_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0967236Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/process_node.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0969385Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0971518Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa_mapping.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0973682Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0975894Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa_quant_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0978232Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa_specification.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0980417Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0982554Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0984735Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-06-05T23:22:14.0986435Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/_passes 2025-06-05T23:22:14.0988089Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.0990404Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/_debug_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.0992980Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/annotate_channels_last_dim_order_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.0995662Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/annotate_decomposed_matmul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.0998127Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/arm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1000492Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/arm_pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1002943Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/arm_pass_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1005328Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/broadcast_args_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1007720Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/cast_int64_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1010132Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/cast_to_int32_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1012799Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/conv1d_unsqueeze_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1015403Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_any_default_dim_dims_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1017993Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_expand_copy_to_repeat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1020543Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_full_like_to_full_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1023077Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_int_pow_to_mul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1025639Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_minmax_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1028210Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_split_to_slice.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1030680Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_squeezes_to_view.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1033170Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_to_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1035664Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_cosine_similarity_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1038288Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_div_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1040737Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_gelu_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1043198Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_groupnorm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1045782Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_layernorm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1048381Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_leaky_relu_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1051004Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_linalg_vector_norm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1053581Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_linear_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1056098Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_meandim_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1058618Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_ne_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1061076Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_select.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1063700Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_silu_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1066349Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_softmax_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1068719Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_softmax_unstable_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1071274Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_sqrt_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1073758Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_sum_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1076188Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_var_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1078923Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fold_qdq_with_annotated_qparams_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1081567Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fuse_batchnorm2d_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1084107Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fuse_constant_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1086662Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fuse_equal_placeholders_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1089337Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fuse_quantized_activation_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1091887Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/insert_rescales_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1094325Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/insert_table_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1096754Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/match_arg_ranks_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1099320Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/match_where_self_arg_dtype_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1101830Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/mm_to_bmm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1104240Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/remove_clone_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1106807Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/replace_inf_values_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1109359Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/replace_scalar_with_tensor_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1111971Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/scalars_to_attribute_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1114661Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/size_adjust_conv2d_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1117222Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/unsqueeze_before_repeat_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1119909Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/unsqueeze_scalar_placeholders_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-06-05T23:22:14.1121870Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operator_support 2025-06-05T23:22:14.1123760Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:22:14.1126520Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/convolution_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:22:14.1129453Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/ethos_u55_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:22:14.1132216Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/minmax_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:22:14.1134966Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/pool_2d_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:22:14.1137716Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/reduce_sum_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:22:14.1140542Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/right_shift_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:22:14.1143347Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/sin_cos_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:22:14.1146169Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/slice_copy_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:22:14.1148927Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/to_copy_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:22:14.1151723Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/tosa_supported_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-06-05T23:22:14.1153727Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operators 2025-06-05T23:22:14.1155473Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1157915Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/node_visitor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1160378Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_abs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1162767Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1165456Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_amax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1167864Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_amin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1170282Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1172737Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1175175Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_bmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1177586Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1179996Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1182663Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_constant_pad_nd.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1185114Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1187574Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_cos.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1189973Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_eq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1192351Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_erf.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1194740Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_exp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1197135Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_ge.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1199499Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_gt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1201886Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_le.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1204295Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_log.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1206647Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_lt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1209093Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_max_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1211581Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_maximum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1214058Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_minimum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1216499Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_mul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1219071Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_neg.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1221508Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1223951Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_pow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1226500Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_reciprocal.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1228972Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_repeat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1231437Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_rescale.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1233985Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_rshift_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1236428Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1238885Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_sigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1241310Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_sin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1243706Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_slice.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1246139Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1248605Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_sum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1251017Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_table.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1253439Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_tanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1255906Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_to_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1258425Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_to_dim_order_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1260998Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_transpose.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1263618Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_upsample_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1266495Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_upsample_nearest2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1269191Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_view.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1271662Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_where.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1274207Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/operator_validation_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1276751Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/ops_binary.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1279212Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/ops_identity.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1281676Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/ops_unary.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-06-05T23:22:14.1283442Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/quantizer 2025-06-05T23:22:14.1285327Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/quantizer 2025-06-05T23:22:14.1287759Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer/arm_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/quantizer 2025-06-05T23:22:14.1290272Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer/arm_quantizer_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/quantizer 2025-06-05T23:22:14.1292854Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer/quantization_annotator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/quantizer 2025-06-05T23:22:14.1295589Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer/quantization_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/quantizer 2025-06-05T23:22:14.1297452Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/scripts 2025-06-05T23:22:14.1299213Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/scripts/parse_test_names.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/scripts 2025-06-05T23:22:14.1300957Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test 2025-06-05T23:22:14.1302531Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/common.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test 2025-06-05T23:22:14.1304781Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/conftest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test 2025-06-05T23:22:14.1307154Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/runner_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test 2025-06-05T23:22:14.1309424Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/test_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test 2025-06-05T23:22:14.1311012Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/misc 2025-06-05T23:22:14.1312827Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_bn_relu_folding_qat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:22:14.1315468Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_custom_partition.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:22:14.1318102Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_debug_feats.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:22:14.1320847Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_dim_order_guards.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:22:14.1323415Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_lifted_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:22:14.1325994Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_model_evaluator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:22:14.1328653Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_multiple_delegates.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:22:14.1331342Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_multiple_outputs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:22:14.1334049Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_non_persistent_buffers.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:22:14.1337045Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_partition_decomposed_quantized_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:22:14.1339763Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_tosa_spec.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-06-05T23:22:14.1341594Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/models 2025-06-05T23:22:14.1343437Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_conformer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:22:14.1346196Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_deit_tiny_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:22:14.1348811Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_dl3_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:22:14.1351359Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_llama.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:22:14.1353940Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_lstm_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:22:14.1356579Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_mobilenet_v2_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:22:14.1359293Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_mobilenet_v3_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:22:14.1361988Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_nn_functional.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:22:14.1364644Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_nn_modules.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:22:14.1367469Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_torch_functions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:22:14.1370127Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_w2l_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-06-05T23:22:14.1372081Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/ops 2025-06-05T23:22:14.1373764Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_abs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1376141Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1378513Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_alias_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1380955Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_amax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1383286Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_amin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1385739Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1388292Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_arange.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1390664Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_at.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1393047Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1395529Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_batch_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1397989Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_bitwise.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1400409Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_bmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1402774Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1405182Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1407572Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_clone.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1410051Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_constant_pad_nd.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1412568Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_conv1d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1414984Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1417417Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_conv3d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1419845Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_conv_combos.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1422399Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_conv_constant_pad_nd.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1425055Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_cos.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1427568Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_depthwise_conv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1430018Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1432403Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_eq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1434757Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_erf.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1437160Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_exp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1439672Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_expand.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1442067Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_eye.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1444488Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_full.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1446909Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_ge.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1449302Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_gelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1451700Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_group_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1454116Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_gt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1456531Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_hardsigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1459018Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_hardswish.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1461505Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_hardtanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1463961Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_layer_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1466456Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_le.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1468715Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_leaky_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1471192Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_linalg_vector_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1473746Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1476293Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_log.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1478725Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_logical.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1481215Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_logsoftmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1483686Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_lshift.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1486100Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_lt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1488458Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_matmul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1491079Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_max_pool.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1493537Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_maximum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1495952Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_mean_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1498350Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_minimum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1500780Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_mm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1503171Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_mul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1505616Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_ne.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1507978Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_neg.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1510351Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_ones.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1512801Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1515144Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_pow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1517585Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_reciprocal.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1520081Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1522497Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_repeat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1524923Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_rshift.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1527456Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1529915Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_scalar_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1532394Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_scalars.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1534816Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1537219Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_select.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1539716Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1542335Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sigmoid_16bit.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1544830Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sigmoid_32bit.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1547300Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_silu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1549627Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1551970Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_slice.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1554373Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1556833Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_split.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1559247Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1561636Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_squeeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1564048Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1566597Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1568997Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_tanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1571431Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_to_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1573868Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_unary.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1576357Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_unsqueeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1579017Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_upsample_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1581589Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_upsample_nearest2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1584104Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_var.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1586559Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_view.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1588990Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_where.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1591449Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_zeros.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-06-05T23:22:14.1593378Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/passes 2025-06-05T23:22:14.1595313Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_broadcast_args_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1598034Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_cast_int64_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1600814Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_convert_expand_copy_to_repeat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1603685Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_convert_int_pow_to_muls.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1606409Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_convert_split_to_slice.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1609253Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_convert_to_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1612090Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_cosine_similarity_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1614982Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_div_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1617820Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_layernorm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1620670Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_linalg_vector_norm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1623559Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_meandim_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1626441Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_softmax_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1629195Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_var_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1632041Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_fold_qdq_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1634726Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_fuse_batchnorm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1637466Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_fuse_constant_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1640338Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_fuse_equal_placeholders_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1643216Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_insert_table_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1646121Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_ioquantization_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1648871Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_remove_clone_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1651545Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_rescale_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1654265Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_unsqueeze_before_repeat_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-06-05T23:22:14.1656307Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/quantizer 2025-06-05T23:22:14.1658311Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer/test_generic_annotater.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/quantizer 2025-06-05T23:22:14.1660253Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tester 2025-06-05T23:22:14.1662017Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/tester 2025-06-05T23:22:14.1664594Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester/analyze_output_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/tester 2025-06-05T23:22:14.1667412Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester/arm_tester.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/tester 2025-06-05T23:22:14.1669958Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester/test_pipeline.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/tester 2025-06-05T23:22:14.1671784Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tosautil 2025-06-05T23:22:14.1673616Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tosautil/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/tosautil 2025-06-05T23:22:14.1675354Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/util 2025-06-05T23:22:14.1677053Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util/arm_model_evaluator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/util 2025-06-05T23:22:14.1678787Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party 2025-06-05T23:22:14.1680198Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:22:14.1682419Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/setup.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:22:14.1684697Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python 2025-06-05T23:22:14.1686299Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:22:14.1688964Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:22:14.1692777Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer/tosa_serializer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:22:14.1695559Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1698496Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/ArithmeticRightShiftAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1702258Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/Attribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1705923Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/AxisAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1709564Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/ClampAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1713287Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/CondIfAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1716911Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/ConvAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1720659Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/CustomAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1724291Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/DType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1727806Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/FFTAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1731613Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/FullyConnectedAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1735417Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/MatMulAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1739280Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/MulAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1742994Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/NegateAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1746645Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/Op.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1750166Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/PadAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1753984Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/PoolAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1757683Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/RFFTAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1761397Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/RescaleAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1765294Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/ReshapeAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1769002Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1772693Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeMode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1776278Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/SliceAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1779936Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TableAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1801979Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TileAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1805587Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaBasicBlock.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1809201Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaGraph.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1812824Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaOperator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1816654Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaRegion.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1820317Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaTensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1823965Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1827875Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeConvAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1831732Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/Version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1835401Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/WhileLoopAttribute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1839005Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:22:14.1841516Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test 2025-06-05T23:22:14.1843082Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:22:14.1845683Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts/test_npy_fileio.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:22:14.1848390Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:22:14.1851132Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit/xunit.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:22:14.1853841Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party 2025-06-05T23:22:14.1855508Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:22:14.1858385Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conanfile.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:22:14.1861304Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:22:14.1864321Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/build.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:22:14.1867677Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package 2025-06-05T23:22:14.1871195Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package/conanfile.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package 2025-06-05T23:22:14.1874481Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:22:14.1877592Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/generate_goldens.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:22:14.1881861Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/golden_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:22:14.1885050Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:22:14.1888460Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:22:14.1891720Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:22:14.1894982Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:22:14.1898333Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:22:14.1901576Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:22:14.1904805Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:22:14.1907997Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:22:14.1911196Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:22:14.1914477Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:22:14.1917768Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:22:14.1921029Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:22:14.1924369Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:22:14.1927784Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:22:14.1931114Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:22:14.1934382Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:22:14.1937652Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:22:14.1940884Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:22:14.1944214Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:22:14.1947466Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:22:14.1950707Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:22:14.1953881Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Galaxy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:22:14.1958286Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Universe.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:22:14.1962547Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:22:14.1967099Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:22:14.1970294Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:22:14.1973557Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:22:14.1976815Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:22:14.1980108Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:22:14.1983565Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:22:14.1986774Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:22:14.1989979Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:22:14.1993233Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema/basic.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:22:14.1996437Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:22:14.1999665Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:22:14.2003795Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/setup.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:22:14.2006988Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:14.2010404Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:14.2015035Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/_version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:14.2019664Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:14.2024312Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/compat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:14.2029027Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/encode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:14.2033643Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/flexbuffers.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:14.2038365Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/number_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:14.2043172Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/packer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:14.2047807Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/table.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:14.2052308Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:22:14.2055762Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2059671Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/AdvancedFeatures.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2064856Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/BaseType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2069888Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Enum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2074866Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/EnumVal.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2079893Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Field.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2084859Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/KeyValue.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2089858Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Object.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2094854Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/RPCCall.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2099785Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2105071Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/SchemaFile.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2110207Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Service.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2115182Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Type.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2120346Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection 2025-06-05T23:22:14.2124927Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/py.typed -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:22:14.2128001Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:22:14.2131069Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/sample_binary.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:22:14.2135349Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/monster.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:22:14.2138442Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:14.2141585Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check_generate_code.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:14.2145963Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_code.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:14.2150353Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_grpc_examples.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:14.2154549Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:14.2158899Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:22:14.2162233Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2165551Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test_generated.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2169848Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_flexbuffers_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2174050Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2177339Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:22:14.2180689Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/InParentNamespace.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:22:14.2185285Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/MonsterExtra.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:22:14.2189683Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:22:14.2192974Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2196338Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Ability.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2200967Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2205786Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2210698Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2215585Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2220505Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2225234Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Color.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2230027Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/LongEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2234755Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Monster.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2239651Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2244401Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Race.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2249072Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Referrable.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2253787Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Stat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2258524Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2263609Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2268748Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2273499Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2278413Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2283549Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2288318Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Vec3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2292978Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2297882Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/monster_test_grpc_fb.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example 2025-06-05T23:22:14.2301553Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:14.2305334Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:14.2310443Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Color.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:14.2315749Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/NestedUnionTest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:14.2320949Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:14.2326346Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:14.2331727Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Vec3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:14.2336860Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion 2025-06-05T23:22:14.2340673Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:22:14.2344190Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/Monster.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:22:14.2348991Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2 2025-06-05T23:22:14.2352448Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:22:14.2356061Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/generate_annotations.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:22:14.2361133Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:22:14.2366204Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary_old.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary 2025-06-05T23:22:14.2369769Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:14.2373069Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_cpp_tests.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:14.2377595Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_kotlin_tests.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:14.2382142Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_schema_tests.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:14.2386704Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:14.2391149Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_ts_tests.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:14.2395576Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/main.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:14.2400192Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/enum_val_attributes.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:14.2404677Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:14.2409051Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo_with_ns.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:22:14.2412334Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:22:14.2415649Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:22:14.2420310Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_foo.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:22:14.2424857Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_ns.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar 2025-06-05T23:22:14.2428286Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz 2025-06-05T23:22:14.2431643Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz 2025-06-05T23:22:14.2436272Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz_with_ns.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz 2025-06-05T23:22:14.2439642Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:22:14.2442807Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim/testnim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:22:14.2446124Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:22:14.2449656Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/OptionalByte.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:22:14.2454503Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:22:14.2459406Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars 2025-06-05T23:22:14.2462768Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:22:14.2466152Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/TypeScriptTest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:22:14.2470594Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/typescript_keywords.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:22:14.2474021Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex 2025-06-05T23:22:14.2477864Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex/arrays_test_complex.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex 2025-06-05T23:22:14.2481653Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:22:14.2485379Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/one.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:22:14.2490507Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/pnpm-lock.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:22:14.2495612Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/two.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir 2025-06-05T23:22:14.2499238Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir 2025-06-05T23:22:14.2502695Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_include.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir 2025-06-05T23:22:14.2507617Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_transitive_include.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir 2025-06-05T23:22:14.2511171Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test 2025-06-05T23:22:14.2513464Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:22:14.2517415Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:22:14.2522548Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:22:14.2527709Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:22:14.2532983Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA 2025-06-05T23:22:14.2536816Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:22:14.2540940Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:22:14.2546658Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:22:14.2552344Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:22:14.2558033Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:22:14.2563603Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB 2025-06-05T23:22:14.2567525Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC 2025-06-05T23:22:14.2571213Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC 2025-06-05T23:22:14.2576221Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC 2025-06-05T23:22:14.2581305Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test 2025-06-05T23:22:14.2586018Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test 2025-06-05T23:22:14.2590445Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MutatingBool.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2594843Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/alignment_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2599088Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/arrays_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2603379Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/dictionary_lookup.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2607628Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/included_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2611932Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/includer_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2616195Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/keyword_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2620429Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_extra.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2624739Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2629056Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/more_defaults.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2633280Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nan_inf_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2637736Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_inline_table_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2642097Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_type_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2646419Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_union_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2650730Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2655238Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/private_annotation_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2659627Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/required_strings.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2663946Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/rust_namer_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2668979Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2673257Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/type_field_collsion.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2677667Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_underlying_type_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2682093Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_value_collision.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2686454Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/vector_has_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:22:14.2689611Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:22:14.2692872Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/test_64bit.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:22:14.2696386Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:22:14.2699867Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:22:14.2704503Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution 2025-06-05T23:22:14.2708023Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:22:14.2711667Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:22:14.2716435Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test 2025-06-05T23:22:14.2719911Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:22:14.2723331Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/include_test1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:22:14.2727996Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/order.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test 2025-06-05T23:22:14.2731429Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub 2025-06-05T23:22:14.2734843Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/include_test2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub 2025-06-05T23:22:14.2739620Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/no_namespace.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub 2025-06-05T23:22:14.2743098Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field 2025-06-05T23:22:14.2746400Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field/key_field_sample.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field 2025-06-05T23:22:14.2749809Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums 2025-06-05T23:22:14.2753339Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums/enums.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums 2025-06-05T23:22:14.2756720Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:22:14.2760135Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:22:14.2764883Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:22:14.2769859Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:22:14.2774500Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test 2025-06-05T23:22:14.2778015Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:22:14.2781743Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test1.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:22:14.2786925Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test2.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:22:14.2791937Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test3.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test 2025-06-05T23:22:14.2795562Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2798845Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2803422Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_id.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2808111Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2813001Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include_id.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2817732Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2822328Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix_id.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2827229Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2831967Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_id.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2836693Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2841457Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include_id.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2846250Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2850983Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix_id.golden.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:22:14.2854439Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector 2025-06-05T23:22:14.2857819Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector/union_vector.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector 2025-06-05T23:22:14.2861186Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift 2025-06-05T23:22:14.2863254Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests 2025-06-05T23:22:14.2865714Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests 2025-06-05T23:22:14.2869829Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_import.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests 2025-06-05T23:22:14.2875320Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_no_include.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests 2025-06-05T23:22:14.2879160Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources 2025-06-05T23:22:14.2881607Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers 2025-06-05T23:22:14.2885783Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers/fuzzer.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers 2025-06-05T23:22:14.2889485Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc 2025-06-05T23:22:14.2891476Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:22:14.2894677Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests/grpctest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:22:14.2897959Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples 2025-06-05T23:22:14.2900107Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python 2025-06-05T23:22:14.2902387Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter 2025-06-05T23:22:14.2906155Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/client.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter 2025-06-05T23:22:14.2911187Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/server.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter 2025-06-05T23:22:14.2914983Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:22:14.2918885Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloReply.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:22:14.2924229Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloRequest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:22:14.2929673Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:22:14.2934932Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/greeter_grpc_fb.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models 2025-06-05T23:22:14.2939877Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/greeter.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples 2025-06-05T23:22:14.2943215Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples 2025-06-05T23:22:14.2945485Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter 2025-06-05T23:22:14.2949020Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter/greeter.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter 2025-06-05T23:22:14.2952358Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java 2025-06-05T23:22:14.2954264Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src 2025-06-05T23:22:14.2956240Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test 2025-06-05T23:22:14.2958307Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java 2025-06-05T23:22:14.2960501Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:22:14.2964209Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:22:14.2969452Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:22:14.2974333Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame 2025-06-05T23:22:14.2977968Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.2981787Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.2987184Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.2992490Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.2998002Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3003624Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3008946Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3014213Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3019426Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3024671Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3030026Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3035306Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3040524Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3045734Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3051078Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3056620Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3062031Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3067549Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3072988Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3078470Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3083712Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3088869Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3094142Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/monster_test_grpc_fb.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example 2025-06-05T23:22:14.3098161Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:14.3102301Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:14.3107906Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Color.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:14.3113837Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/NestedUnionTest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:14.3119535Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:14.3122462Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:14.3125339Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Vec3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:14.3128001Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion 2025-06-05T23:22:14.3129165Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2 2025-06-05T23:22:14.3131675Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2 2025-06-05T23:22:14.3134116Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2 2025-06-05T23:22:14.3135229Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:22:14.3137768Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:22:14.3140146Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:22:14.3142607Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:22:14.3145047Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA 2025-06-05T23:22:14.3146317Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:22:14.3148950Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:22:14.3151696Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:22:14.3154549Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:22:14.3157251Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:22:14.3159837Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB 2025-06-05T23:22:14.3160882Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC 2025-06-05T23:22:14.3163314Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC 2025-06-05T23:22:14.3165817Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC 2025-06-05T23:22:14.3166888Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:22:14.3169356Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:22:14.3171900Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:22:14.3174543Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars 2025-06-05T23:22:14.3175606Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector 2025-06-05T23:22:14.3178068Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector/union_vector.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector 2025-06-05T23:22:14.3179984Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/pnpm-lock.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:22:14.3181000Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:22:14.3183046Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/analysis_options.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:22:14.3185003Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/pubspec.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:22:14.3186029Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:22:14.3188091Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/bool_structs.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:22:14.3190138Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/list_of_enums.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:22:14.3192189Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/monster_test.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:22:14.3193112Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:22:14.3195228Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection/reflection.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:22:14.3196083Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:22:14.3198025Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap/snapcraft.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:22:14.3199092Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android 2025-06-05T23:22:14.3199996Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app 2025-06-05T23:22:14.3200943Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src 2025-06-05T23:22:14.3201942Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main 2025-06-05T23:22:14.3202970Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs 2025-06-05T23:22:14.3205265Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs/animal.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs 2025-06-05T23:22:14.3206218Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks 2025-06-05T23:22:14.3207282Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp 2025-06-05T23:22:14.3208323Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers 2025-06-05T23:22:14.3210600Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers 2025-06-05T23:22:14.3211487Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples 2025-06-05T23:22:14.3212482Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:22:14.3214608Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/hero.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:22:14.3216726Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/net.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo 2025-06-05T23:22:14.3217430Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:22:14.3218939Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/schema/tosa.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:22:14.3219340Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa 2025-06-05T23:22:14.3219797Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa/schemas 2025-06-05T23:22:14.3220973Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas/tosa_0.80.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/schemas 2025-06-05T23:22:14.3222090Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas/tosa_1.0.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/schemas 2025-06-05T23:22:14.3222499Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example 2025-06-05T23:22:14.3223570Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example 2025-06-05T23:22:14.3224827Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example 2025-06-05T23:22:14.3226026Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example 2025-06-05T23:22:14.3227113Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/test_example_delegate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example 2025-06-05T23:22:14.3227732Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:22:14.3229309Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes/merge_to_dim_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:22:14.3230991Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes/permute_memory_formats_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:22:14.3231619Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_operators 2025-06-05T23:22:14.3233022Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/adaptive_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:22:14.3234332Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:22:14.3235594Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:22:14.3236918Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/conv_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:22:14.3238212Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/dropout.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:22:14.3239474Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/flatten.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:22:14.3240782Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:22:14.3242062Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/op_base.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:22:14.3243342Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:22:14.3244650Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/example/example_operators 2025-06-05T23:22:14.3245043Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek 2025-06-05T23:22:14.3246072Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek 2025-06-05T23:22:14.3247142Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek 2025-06-05T23:22:14.3248338Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek 2025-06-05T23:22:14.3248797Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/_passes 2025-06-05T23:22:14.3249932Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek/_passes 2025-06-05T23:22:14.3251299Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes/decompose_scaled_dot_product_attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek/_passes 2025-06-05T23:22:14.3251785Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/quantizer 2025-06-05T23:22:14.3252973Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek/quantizer 2025-06-05T23:22:14.3254227Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer/annotator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek/quantizer 2025-06-05T23:22:14.3255573Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer/qconfig.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek/quantizer 2025-06-05T23:22:14.3256827Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer/quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/mediatek/quantizer 2025-06-05T23:22:14.3257201Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp 2025-06-05T23:22:14.3258221Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/neutron_node_extraction.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp 2025-06-05T23:22:14.3259263Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/neutron_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp 2025-06-05T23:22:14.3260325Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/neutron_pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp 2025-06-05T23:22:14.3261303Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/nxp_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp 2025-06-05T23:22:14.3261751Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/aten_passes 2025-06-05T23:22:14.3263041Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes/fuse_batch_norm_with_conv_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/aten_passes 2025-06-05T23:22:14.3264346Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes/fuse_batch_norm_with_linear_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/aten_passes 2025-06-05T23:22:14.3265820Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes/neutron_aten_pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/aten_passes 2025-06-05T23:22:14.3266263Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend 2025-06-05T23:22:14.3267354Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/edge_helper.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend 2025-06-05T23:22:14.3268560Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/edge_program_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend 2025-06-05T23:22:14.3269819Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/neutron_converter_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend 2025-06-05T23:22:14.3271007Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/node_format_inference.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend 2025-06-05T23:22:14.3271614Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir 2025-06-05T23:22:14.3272858Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/conversion_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir 2025-06-05T23:22:14.3274087Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/conversion_context.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir 2025-06-05T23:22:14.3275221Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/logger.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir 2025-06-05T23:22:14.3276451Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tensor_formatting.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir 2025-06-05T23:22:14.3276992Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:22:14.3278241Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter 2025-06-05T23:22:14.3279786Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter 2025-06-05T23:22:14.3281250Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/quantization_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter 2025-06-05T23:22:14.3282634Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/tensor_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter 2025-06-05T23:22:14.3283243Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:22:14.3284683Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:22:14.3286344Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder/aten_model_builder_director.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:22:14.3287873Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder/model_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:22:14.3289539Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder/quantization_verification.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:22:14.3290216Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:22:14.3291746Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:22:14.3293361Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion/aten_translator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:22:14.3294936Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion/common.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:22:14.3296522Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion/translator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:22:14.3297361Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:22:14.3298950Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:22:14.3299785Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3301642Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3303579Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/addmm_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3305728Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/avg_pool_2d_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3307718Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/constant_pad_nd_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3309694Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/convolution_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3311671Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/max_pool_2d_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3313571Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mm_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3315558Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/permute_copy_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3317487Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_dequantize_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3319696Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_quantize_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3321635Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/relu_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3323565Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/softmax_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3325627Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/view_copy_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:22:14.3326400Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:22:14.3328098Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:22:14.3329911Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared/recurrent_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:22:14.3331672Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared/reduce_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:22:14.3333630Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared/reshape_transposition.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:22:14.3334136Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:22:14.3335313Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib 2025-06-05T23:22:14.3335832Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3337248Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ATan2Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3338649Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/AbsOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3340210Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ActivationFunctionType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3341628Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/AddNOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3343030Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/AddOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3344502Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ArgMaxOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3346027Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ArgMinOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3347565Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/AssignVariableOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3349076Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BatchMatMulOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3350616Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BatchToSpaceNDOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3352426Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceLSTMOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3354119Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceRNNOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3355575Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BitcastOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3357047Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BitwiseXorOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3358507Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BroadcastToOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3360003Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BucketizeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3361337Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Buffer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3362795Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOperator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3364231Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3365846Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3367289Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CallOnceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3368635Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CallOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3370047Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CastOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3371454Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CombinerType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3372998Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ConcatEmbeddingsOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3374497Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ConcatenationOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3375922Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Conv2DOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3377341Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Conv3DOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3378851Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CosOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3380281Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CumsumOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3381806Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CustomOptionsFormat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3383290Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/CustomQuantization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3384734Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DensifyOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3386475Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DepthToSpaceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3388011Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DepthwiseConv2DOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3389510Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DequantizeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3390935Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DilateOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3392400Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DimensionMetadata.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3393806Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DimensionType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3395194Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DivOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3396781Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/DynamicUpdateSliceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3398400Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/EmbeddingLookupSparseOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3399794Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/EqualOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3401171Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ExpOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3402678Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ExpandDimsOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3404156Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/FakeQuantOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3405682Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/FillOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3407098Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/FloorDivOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3408539Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/FloorModOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3410089Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3411768Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptionsWeightsFormat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3413404Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/GatherNdOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3414823Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/GatherOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3416203Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/GeluOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3417723Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/GreaterEqualOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3419181Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/GreaterOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3420650Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/HardSwishOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3422169Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/HashtableFindOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3423709Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/HashtableImportOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3425166Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/HashtableOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3426736Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/HashtableSizeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3428093Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/IfOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3429449Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Int32Vector.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3430833Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/L2NormOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3432471Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3433964Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3435374Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LSTMKernelType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3436749Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LSTMOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3438220Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LeakyReluOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3439697Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LessEqualOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3441187Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LessOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3442837Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LocalResponseNormalizationOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3444296Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LogSoftmaxOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3445789Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LogicalAndOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3447288Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LogicalNotOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3448751Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/LogicalOrOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3450243Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/MatrixDiagOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3451762Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/MatrixSetDiagOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3453318Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/MaximumMinimumOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3454659Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Metadata.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3456098Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadMode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3457530Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3458944Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3460332Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/MulOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3461796Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/NegOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3463368Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV4Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3464923Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV5Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3466610Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/NotEqualOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3468209Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/OneHotOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3469591Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Operator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3470993Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/OperatorCode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3472384Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/PackOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3473791Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/PadOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3475190Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/PadV2Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3476535Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Padding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3477961Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Pool2DOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3479354Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/PowOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3480871Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/QuantizationDetails.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3482439Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/QuantizationParameters.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3483892Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/QuantizeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3485278Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/RNNOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3486894Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/RandomOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3488239Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/RangeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3489647Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/RankOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3491143Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReadVariableOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3492641Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowFunction.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3494299Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3495741Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReducerOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3497182Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReshapeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3498745Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ResizeBilinearOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3500398Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ResizeNearestNeighborOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3501952Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReverseSequenceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3503448Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ReverseV2Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3504881Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Rfft2dOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3506401Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/RightShiftOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3507804Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/RngAlgorithm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3509199Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SVDFOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3510682Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ScatterNdOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3512166Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SegmentSumOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3513681Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SelectOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3515155Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SelectV2Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3516657Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SequenceRNNOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3518106Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ShapeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3519532Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SignOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3521067Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SignatureDef.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3522560Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SkipGramOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3523977Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SliceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3525431Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SoftmaxOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3526987Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SpaceToBatchNDOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3528508Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SpaceToDepthOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3529988Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SparseIndexVector.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3531523Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SparseToDenseOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3533019Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SparsityParameters.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3534478Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SplitOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3535910Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SplitVOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3537351Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SquareOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3538920Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SquaredDifferenceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3540496Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SqueezeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3542176Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloBroadcastInDimOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3543764Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloCompareOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3545401Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonDirection.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3547046Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3548763Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloConcatenateOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3550382Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloConvolutionOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3551992Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloCustomCallOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3553592Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloDotGeneralOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3555174Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloDynamicSliceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3556723Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloGatherOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3558240Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloIotaOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3559767Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloPadOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3561337Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloPrecisionConfig.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3562894Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3564540Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceWindowOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3566395Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloRngBitGeneratorOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3568080Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloScatterOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3569622Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloSliceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3571145Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloSortOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3572663Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloTransposeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3574185Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StablehloWhileOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3575674Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/StridedSliceOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3577160Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SubGraph.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3578533Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/SubOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3579865Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3581252Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/TensorMap.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3582588Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/TensorType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3583978Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/TileOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3585410Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/TopKV2Options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3586949Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/TransposeConvOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3588430Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/TransposeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3589844Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Uint16Vector.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3591250Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/Uint8Vector.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3592951Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UnidirectionalSequenceLSTMOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3594542Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UniqueOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3595943Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UnpackOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3597522Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMaxOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3599119Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMinOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3600700Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentProdOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3602291Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentSumOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3603843Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/VarHandleOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3605275Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/VariantSubType.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3606656Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/WhereOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3608029Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/WhileOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3609487Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/ZerosLikeOptions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3610796Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:22:14.3611393Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:22:14.3612740Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:22:14.3614145Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/tflite_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:22:14.3614866Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3616522Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3618099Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/abs_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3619790Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_n_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3621612Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3623327Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_max_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3625045Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_min_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3626894Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/average_pool_2d_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3628822Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/batch_mat_mul_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3630726Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_lstm_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3632641Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_rnn_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3634397Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bitwise_xor_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3636178Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/broadcast_to_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3637903Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cast_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3639722Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/concatenation_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3641463Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_2d_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3643223Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_3d_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3644950Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cum_sum_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3646747Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depth_to_space_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3648706Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depthwise_conv_2d_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3650449Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/dequantize_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3652163Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/div_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3653887Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/equal_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3655741Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/exp_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3657517Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/floor_mod_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3659332Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/fully_connected_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3661098Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_nd_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3662853Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3664570Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gelu_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3666557Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_equal_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3668316Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3670082Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/hard_swish_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3671875Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/leaky_relu_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3673642Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_equal_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3675552Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3677328Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/log_softmax_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3679108Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_and_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3680909Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_not_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3682842Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_or_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3684567Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lrn_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3686272Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lstm_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3688035Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/max_pool_2d_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3689842Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/maximum_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3691588Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mean_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3693383Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/minimum_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3695164Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mirror_pad_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3696898Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mul_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3698704Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/multinomial_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3700411Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/neg_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3702309Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/not_equal_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3704078Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/one_hot_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3705864Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3707589Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_v2_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3709309Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pow_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3711190Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/quantize_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3712942Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/range_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3714708Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_max_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3716514Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_min_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3718295Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_prod_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3720075Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reshape_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3721920Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_bilinear_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3723822Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_nearest_neighbor_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3725603Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reverse_sequence_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3727354Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/scatter_nd_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3729224Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/select_v2_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3730978Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/shape_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3732678Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sign_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3734401Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/slice_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3736190Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/softmax_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3738059Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/space_to_depth_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3739795Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3741498Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_v_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3743270Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/square_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3745123Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squared_difference_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3746977Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squeeze_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3748765Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/strided_slice_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3750464Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sub_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3752148Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sum_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3753882Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/tile_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3755785Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_conv_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3757529Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3759433Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_lstm_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3761291Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_rnn_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:22:14.3762061Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:22:14.3763931Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/custom_options/flex_transpose_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:22:14.3764580Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:22:14.3766219Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:22:14.3767635Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta/meta.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:22:14.3769143Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta/types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:22:14.3769745Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:14.3771122Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:14.3772586Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/graph_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:14.3774053Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/operator_rules.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:14.3775499Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:14.3776966Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/pattern_matcher.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:14.3778415Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/tensor_rules.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:22:14.3779116Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3780760Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3782704Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/base_optimization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3784606Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/combine_hard_sigmoid_and_mul_to_hard_swish.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3786499Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/eliminate_dead_branches.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3788339Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_activation_functions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3790411Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_fully_connected_and_add_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3792294Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_quanitze_into_preceding_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3794074Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/keep_one_empty_buffer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3795857Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/move_relu_before_concat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3797833Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/permute_fully_connected_weights_after_reshape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3799631Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_cast_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3801442Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_quantize_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3803256Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_reshape_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3805083Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_transpose_operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3806931Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/remove_unused_tensors_and_buffers.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3809081Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/replace_average_pool_before_fully_connected_with_sum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:22:14.3809524Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/quantizer 2025-06-05T23:22:14.3810739Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer/neutron_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/quantizer 2025-06-05T23:22:14.3811842Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer/patterns.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/quantizer 2025-06-05T23:22:14.3812960Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/quantizer 2025-06-05T23:22:14.3813362Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests 2025-06-05T23:22:14.3814549Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/executorch_pipeline.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:22:14.3815730Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/executors.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:22:14.3816942Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/exported_program_vizualize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:22:14.3817960Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:22:14.3819130Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_batch_norm_fusion.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:22:14.3820203Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_neutron_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:22:14.3821442Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_neutron_converter_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:22:14.3822613Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_node_format_inference.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:22:14.3823769Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_operator_selector.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:22:14.3824939Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_qdq_clustering_conv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:22:14.3826118Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-06-05T23:22:14.3826565Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir 2025-06-05T23:22:14.3827050Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter 2025-06-05T23:22:14.3827672Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:14.3829307Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_avg_pool2d_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:14.3830969Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_constant_pad_nd_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:14.3832802Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_conv_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:14.3834477Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_linear_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:14.3836123Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_max_pool_2d_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:14.3837773Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_permute_copy_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:14.3839401Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_relu_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:14.3841153Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_softmax_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:14.3842808Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_view_copy_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:22:14.3843220Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino 2025-06-05T23:22:14.3844175Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino 2025-06-05T23:22:14.3845284Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino 2025-06-05T23:22:14.3846364Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino 2025-06-05T23:22:14.3846842Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/quantizer 2025-06-05T23:22:14.3848034Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/quantizer 2025-06-05T23:22:14.3849284Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer/quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/quantizer 2025-06-05T23:22:14.3849722Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests 2025-06-05T23:22:14.3850890Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/test_runner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests 2025-06-05T23:22:14.3851385Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/models 2025-06-05T23:22:14.3852730Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/models/test_classification.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/models 2025-06-05T23:22:14.3853224Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/ops 2025-06-05T23:22:14.3854498Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/base_openvino_op_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:22:14.3855697Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:22:14.3857051Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_addmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:22:14.3858282Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_arange.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:22:14.3859538Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_batch_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:22:14.3860817Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_convolution.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:22:14.3862033Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_mean.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:22:14.3863303Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:22:14.3864650Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_pooling.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:22:14.3866122Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_unary_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:22:14.3867348Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops/test_view.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/tests/ops 2025-06-05T23:22:14.3867755Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm 2025-06-05T23:22:14.3868838Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/qnn_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm 2025-06-05T23:22:14.3869306Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3870418Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3871718Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/annotate_adaptive_avg_pool1d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3872953Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/annotate_quant_attrs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3874134Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/annotate_stack.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3875353Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/annotate_unbind.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3876545Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/build_quant_io.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3877757Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/convert_bmm_to_matmul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3879017Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/convert_conv1d_to_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3880268Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/convert_square_to_pow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3881631Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_any.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3882837Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_cdist.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3884053Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_einsum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3885211Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_expm1.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3886424Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_linalg_vector_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3887820Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_roll.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3889025Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_silu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3890343Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/expand_broadcast_tensor_shape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3891576Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/fixed_linear_keep_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3892746Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/fold_qdq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3894018Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/fuse_consecutive_cast.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3895297Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/fuse_consecutive_transpose.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3896460Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/i64_to_i32.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3897611Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/insert_io_qdq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3898826Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/insert_requantize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3900072Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/layout_transform.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3901378Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/lift_constant_scalar_operands.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3902566Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/qnn_pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3903877Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/recompose_pixel_unshuffle.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3905228Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/recompose_rms_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3906542Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/reduce_dynamic_range.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3907734Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/remove_0d_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3908969Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/remove_redundancy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3910200Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/replace_arange_args.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3911470Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/replace_index_put_input.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3912811Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/replace_inf_values.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3914010Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/tag_quant_io.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3915125Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-06-05T23:22:14.3915587Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3916769Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3918004Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/node_visitor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3919170Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_abs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3920479Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_adaptive_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3921639Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3922829Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_amax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3924022Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_and.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3925196Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_arange.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3926369Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_argmin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3927604Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3928913Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_batch_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3930087Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_bmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3931241Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3932397Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_ceil.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3933606Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3934794Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3935953Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_cos.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3937292Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_cum_sum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3938560Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_depth_to_space.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3939778Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_dequantize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3940973Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3942088Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_elu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3943315Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_embedding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3944495Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_eq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3945733Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_exp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3946922Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_expand.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3948139Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_full.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3949328Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_full_like.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3950525Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_gather.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3951683Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_ge.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3952842Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_gelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3954200Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_group_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3955369Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_gt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3956629Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_hardsigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3957844Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_hardswish.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3959053Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_hardtanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3960249Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_index.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3961573Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_index_put.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3962824Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_instance_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3964056Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_layer_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3965392Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_le.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3966577Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3967778Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_log.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3969004Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_log_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3970209Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_logical_not.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3971383Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_lt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3972592Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_matmul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3973750Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_max.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3974993Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_max_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3976189Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_mean_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3977339Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_min.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3978680Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_mul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3979843Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_ne.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3980991Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_neg.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3982152Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_or.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3983296Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_pad.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3984475Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_pow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3985860Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_prelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3987040Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_quantize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3988214Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3989367Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_repeat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3990566Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_reshape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3991775Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_resize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3992959Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_rms_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3994151Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3995354Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_scalar_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3996564Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_select_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3997746Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_sigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.3998908Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_sin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4000078Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_skip_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4001268Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_slice_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4002597Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4003775Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_space_to_depth.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4005018Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_split_with_sizes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4006171Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_sqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4007365Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_squeeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4008505Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_stack.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4009761Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4010964Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_sum_int_list.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4012138Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_tanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4013295Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_to.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4014470Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_topk.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4015708Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_transpose.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4016903Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_unbind.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4018144Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_unsqueeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4019445Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_upsample_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4020744Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_upsample_nearest2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4021960Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_where.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4023173Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/qnn_constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4024326Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-06-05T23:22:14.4024794Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/debugger 2025-06-05T23:22:14.4026115Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/debugger 2025-06-05T23:22:14.4026560Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/partition 2025-06-05T23:22:14.4027812Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition/common_defs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/partition 2025-06-05T23:22:14.4029056Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition/qnn_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/partition 2025-06-05T23:22:14.4030253Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/partition 2025-06-05T23:22:14.4030733Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer 2025-06-05T23:22:14.4031998Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/annotators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer 2025-06-05T23:22:14.4033427Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/custom_annotation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer 2025-06-05T23:22:14.4034634Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/qconfig.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer 2025-06-05T23:22:14.4035819Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer 2025-06-05T23:22:14.4036334Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:22:14.4037848Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers/per_block_param_observer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:22:14.4039401Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers/per_channel_param_observer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:22:14.4039903Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/serialization 2025-06-05T23:22:14.4041180Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization/qc_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/serialization 2025-06-05T23:22:14.4042521Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization/qc_schema_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/serialization 2025-06-05T23:22:14.4043827Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization/qc_compiler_spec.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/serialization 2025-06-05T23:22:14.4044247Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/tests 2025-06-05T23:22:14.4045381Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests/models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/tests 2025-06-05T23:22:14.4046562Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests/test_qnn_delegate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/tests 2025-06-05T23:22:14.4047682Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/tests 2025-06-05T23:22:14.4048121Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/utils 2025-06-05T23:22:14.4049303Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils/constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/utils 2025-06-05T23:22:14.4050545Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/utils 2025-06-05T23:22:14.4050974Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/aot 2025-06-05T23:22:14.4051418Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/aot/ir 2025-06-05T23:22:14.4052548Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/aot/ir/qcir.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/aot/ir 2025-06-05T23:22:14.4052957Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms 2025-06-05T23:22:14.4054021Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4055168Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/addmm_mm_to_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4056445Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/convert_dtype_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4057604Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/decompose_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4058846Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/duplicate_dynamic_quant_chain.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4060034Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/fuse_batch_norm_with_conv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4061203Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/fuse_conv_with_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4062263Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/fuse_view_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4063372Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/mean_to_sum_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4064484Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/rank_0_to_rank_1.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4065836Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/remove_clone_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4066998Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/remove_getitem_op.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4068202Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/replace_scalar_with_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4069274Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4070528Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/view_copy_to_squeeze_unsqueeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms 2025-06-05T23:22:14.4070975Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms/test 2025-06-05T23:22:14.4072374Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test/test_create_delete_constant_placeholder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms/test 2025-06-05T23:22:14.4073950Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test/test_duplicate_dynamic_quant_chain.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms/test 2025-06-05T23:22:14.4075202Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test/test_rank_0_to_rank_1.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms/test 2025-06-05T23:22:14.4075612Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan 2025-06-05T23:22:14.4076598Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan 2025-06-05T23:22:14.4077663Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/custom_ops_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan 2025-06-05T23:22:14.4078680Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/op_registry.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan 2025-06-05T23:22:14.4079694Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan 2025-06-05T23:22:14.4080926Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/vulkan_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan 2025-06-05T23:22:14.4081373Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/_passes 2025-06-05T23:22:14.4082413Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:22:14.4083602Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/fuse_quantized_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:22:14.4084784Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/insert_prepack_nodes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:22:14.4086046Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/int4_weight_only_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:22:14.4087193Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/remove_asserts.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:22:14.4088393Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/remove_local_scalar_dense_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:22:14.4089597Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/remove_redundant_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:22:14.4090827Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/squeeze_unsqueeze_inputs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:22:14.4092023Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/tag_memory_meta_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-06-05T23:22:14.4092503Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/partitioner 2025-06-05T23:22:14.4093793Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner/vulkan_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/partitioner 2025-06-05T23:22:14.4094269Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/quantizer 2025-06-05T23:22:14.4095471Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer/vulkan_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/quantizer 2025-06-05T23:22:14.4096036Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime 2025-06-05T23:22:14.4097203Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/gen_vulkan_spv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime 2025-06-05T23:22:14.4097665Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph 2025-06-05T23:22:14.4098157Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops 2025-06-05T23:22:14.4098703Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4100176Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4101698Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_texture3d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4103323Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_optimized.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4104740Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/arange.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4106459Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/avg_pool2d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4107931Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/batchnorm.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4109378Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/binary_op.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4110974Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/bitw8_image_to_nchw_nobitw8buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4112424Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4113877Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_nchw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4115320Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/clone.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4116752Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv1d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4118138Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4119568Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4121086Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_output_tile.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4122763Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_prepack_weights.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4124324Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_sned_output_tile.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4125822Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_prepack_weights.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4127272Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4128753Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_s1p0.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4130371Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4131995Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d_prepack_weights.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4133504Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/copy_channel_offset.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4134973Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/copy_offset.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4136483Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/copy_packed_dim_offset.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4137960Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/embedding.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4139379Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/flip.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4140941Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/full.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4142364Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/grid_priors.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4143851Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/image_to_nchw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4145328Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/index_select.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4146905Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/index_select_channel.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4148507Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/kv_cache_update.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4149971Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4151460Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_coop.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4152883Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4154286Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_coop.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4155911Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4157332Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/max_pool2d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4158830Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/native_layer_norm.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4160465Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_bitw8_image_nobitw8buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4161962Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4163463Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_image.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4164851Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/no_op.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4166534Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/pack_int4_linear_weight_transposed_interleaved.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4167878Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/pad_channel.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4169336Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/pad_height_width.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4170728Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/permute.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4172147Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/reduce.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4173579Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/repeat.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4175271Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_channel.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4176721Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_interleave.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4178221Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/rotary_embedding.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4179818Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weight_scale_and_mask.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4181274Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/softmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4182813Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/tan.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4184339Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4185895Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_texture.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4187321Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/unary_op.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4188817Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/upsample_2d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4190169Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/var_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4191623Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/var_texture3d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4193010Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/view.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4194427Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/where.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:22:14.4194931Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/serialization 2025-06-05T23:22:14.4196226Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization/vulkan_graph_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/serialization 2025-06-05T23:22:14.4197562Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization/vulkan_graph_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/serialization 2025-06-05T23:22:14.4198924Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization/vulkan_graph_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/serialization 2025-06-05T23:22:14.4200280Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization/schema.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/serialization 2025-06-05T23:22:14.4200713Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test 2025-06-05T23:22:14.4201874Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/test_serialization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test 2025-06-05T23:22:14.4203051Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/test_vulkan_delegate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test 2025-06-05T23:22:14.4204244Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/test_vulkan_delegate_header.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test 2025-06-05T23:22:14.4205394Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/test_vulkan_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test 2025-06-05T23:22:14.4205836Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests 2025-06-05T23:22:14.4207154Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/cases.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests 2025-06-05T23:22:14.4208475Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/generate_op_benchmarks.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests 2025-06-05T23:22:14.4209828Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/generate_op_correctness_tests.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests 2025-06-05T23:22:14.4210387Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:14.4211704Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils/aten_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:14.4213089Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils/gen_benchmark_vk.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:14.4214465Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils/gen_computegraph.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:14.4215855Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils/gen_correctness_base.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:14.4217206Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils/gen_correctness_vk.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:14.4218543Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils/test_suite.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:22:14.4218990Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/glsl 2025-06-05T23:22:14.4220157Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl/all_shaders.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/glsl 2025-06-05T23:22:14.4221472Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl/dynamic_dispatch_test.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/glsl 2025-06-05T23:22:14.4222771Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl/reference_matmul_common.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/glsl 2025-06-05T23:22:14.4223411Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party 2025-06-05T23:22:14.4223917Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/volk 2025-06-05T23:22:14.4225195Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/volk/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/volk 2025-06-05T23:22:14.4225867Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers 2025-06-05T23:22:14.4226554Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:14.4228214Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/apiconventions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:14.4229886Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/cgenerator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:14.4231614Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/conventions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:14.4233252Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/generator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:14.4234859Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/genvk.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:14.4236435Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/reg.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:14.4238121Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vkconventions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:22:14.4238929Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:22:14.4240649Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:22:14.4241347Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator 2025-06-05T23:22:14.4242091Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools 2025-06-05T23:22:14.4242909Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:22:14.4244982Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis/GpuMemDumpVis.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:22:14.4245415Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools 2025-06-05T23:22:14.4245882Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo 2025-06-05T23:22:14.4246411Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:14.4247904Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl/buf_bandwidth.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:14.4249326Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl/buf_cacheline_size.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:14.4250692Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl/reg_count.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:14.4252050Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl/tex_bandwidth.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:14.4253492Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl/tex_cacheline_concurr.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:14.4254906Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl/warp_size.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:22:14.4255430Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack 2025-06-05T23:22:14.4256440Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack 2025-06-05T23:22:14.4257525Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/xnnpack_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack 2025-06-05T23:22:14.4257966Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4259057Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4260393Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/channels_last_tagged_reshape_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4261584Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/conv1d_unsqueeze_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4262790Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/convert_to_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4263981Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/convert_to_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4265386Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/convert_to_upsample_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4266636Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/decompose_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4267875Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/fuse_activation_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4269068Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/fuse_batch_norm_with_conv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4270284Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/prelu_reshape_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4271504Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/tag_implicit_q_dq_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4272806Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/xnnpack_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-06-05T23:22:14.4273287Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4274444Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4275691Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/node_visitor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4276880Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_abs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4278048Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4279374Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_addmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4280608Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_avg_pooling2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4281773Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_bmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4282953Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4284175Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_ceiling.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4285336Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4286526Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4287676Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4288990Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_dynamic_dequantize_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4290269Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_dynamic_quantize_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4291447Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_elu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4292631Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_exp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4293818Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_floor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4295000Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_gelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4296366Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_hardswish.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4297600Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_hardtanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4298775Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_leaky_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4299931Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4301104Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_log.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4302461Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_matrix_multiplication.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4303775Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_max_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4304948Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_max_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4306225Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_maximum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4307440Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_mean_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4308656Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_minimum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4309869Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_multiply.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4311044Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_negate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4312240Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4313426Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_prelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4314695Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_quant_dequant.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4315875Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4317072Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4318259Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4319466Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_sigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4320821Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_skip_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4322010Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_slice_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4323203Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4324407Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_square.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4325584Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_square_root.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4326799Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_squeeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4328202Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_static_constant_pad.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4329504Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_static_resize_bilinear_2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4330625Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4331830Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_to_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4333062Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/quant_params.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-06-05T23:22:14.4333521Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition 2025-06-05T23:22:14.4334732Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition 2025-06-05T23:22:14.4335996Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/xnnpack_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition 2025-06-05T23:22:14.4336512Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/config 2025-06-05T23:22:14.4337810Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/config 2025-06-05T23:22:14.4339167Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config/gemm_configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/config 2025-06-05T23:22:14.4340598Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config/generic_node_configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/config 2025-06-05T23:22:14.4341964Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config/node_configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/config 2025-06-05T23:22:14.4343411Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config/quant_affine_configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/config 2025-06-05T23:22:14.4344980Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config/xnnpack_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/config 2025-06-05T23:22:14.4345503Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:22:14.4346964Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs/bilinear_2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/graphs 2025-06-05T23:22:14.4348298Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs/sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/partition/graphs 2025-06-05T23:22:14.4348744Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/quantizer 2025-06-05T23:22:14.4350013Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/quantizer 2025-06-05T23:22:14.4351351Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer/xnnpack_quantizer_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/quantizer 2025-06-05T23:22:14.4351853Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/serialization 2025-06-05T23:22:14.4353327Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization/xnnpack_graph_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/serialization 2025-06-05T23:22:14.4354759Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization/xnnpack_graph_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/serialization 2025-06-05T23:22:14.4356120Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization/runtime_schema.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/serialization 2025-06-05T23:22:14.4357442Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization/schema.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/serialization 2025-06-05T23:22:14.4357875Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test 2025-06-05T23:22:14.4359074Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/test_xnnpack_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test 2025-06-05T23:22:14.4360314Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/test_xnnpack_utils_classes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test 2025-06-05T23:22:14.4360797Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4362031Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/deeplab_v3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4363253Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/edsr.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4364528Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/emformer_rnnt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4365986Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/inception_v3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4367237Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/inception_v4.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4368478Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/llama2_et_example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4369890Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/mobilebert.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4371180Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/mobilenet_v2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4372442Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/mobilenet_v3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4373652Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/resnet.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4374948Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/torchvision_vit.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4376220Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/very_big_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4377548Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models/w2l.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/models 2025-06-05T23:22:14.4378011Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4379118Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_abs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4380289Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4381456Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_avgpool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4382492Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4383573Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_bmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4384654Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4385812Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_ceil.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4387077Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_check_quant_params.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4388272Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4389431Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_conv1d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4390627Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4391794Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4393086Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_elu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4394258Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_exp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4395451Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_floor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4396635Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_gelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4397841Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_hardswish.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4399060Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_hardtanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4400318Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_leaky_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4401576Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4402789Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_log.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4404091Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_lstm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4405293Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_max_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4406557Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_maximum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4407895Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_maxpool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4409316Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_mean_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4410588Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_minimum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4411881Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_multiply.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4413206Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_negate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4414434Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4415822Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_pow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4417113Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_prelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4418444Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_quantize_per_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4419821Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4421058Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4422253Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4423676Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_sigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4424934Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_slice_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4426269Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4427639Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_sqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4428878Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_square.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4430325Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_static_constant_pad.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4431474Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-06-05T23:22:14.4449757Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/passes 2025-06-05T23:22:14.4451074Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_activation_fusion.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:22:14.4452395Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_batch_norm_fusion.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:22:14.4453795Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_channels_last_tagged_reshape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:22:14.4455124Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_convert_to_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:22:14.4456466Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_decompose_cat_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:22:14.4457765Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_remove_get_item_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:22:14.4459111Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_tag_implicit_q_dq_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-06-05T23:22:14.4459630Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:22:14.4461015Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer/test_pt2e_quantization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/quantizer 2025-06-05T23:22:14.4462510Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer/test_representation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/quantizer 2025-06-05T23:22:14.4463911Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer/test_xnnpack_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/quantizer 2025-06-05T23:22:14.4464445Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/serialization 2025-06-05T23:22:14.4466081Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization/test_serialization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/serialization 2025-06-05T23:22:14.4467459Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization/test_xnnheader.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/serialization 2025-06-05T23:22:14.4467949Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/tester 2025-06-05T23:22:14.4469274Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/tester 2025-06-05T23:22:14.4470529Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester/tester.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/tester 2025-06-05T23:22:14.4471000Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party 2025-06-05T23:22:14.4471506Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:22:14.4472833Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/configure.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:22:14.4473445Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include 2025-06-05T23:22:14.4474068Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:22:14.4475540Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:22:14.4477011Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16/avx.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:22:14.4478485Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16/avx2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:22:14.4479099Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test 2025-06-05T23:22:14.4479705Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:22:14.4481201Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/test/peachpy/stubs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:22:14.4482497Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/confu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:22:14.4483033Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:22:14.4484353Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv/configure.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:22:14.4485820Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv/confu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:22:14.4486381Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:22:14.4487773Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/configure.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:22:14.4488401Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:22:14.4489976Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:22:14.4491634Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:22:14.4493304Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:22:14.4493921Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps 2025-06-05T23:22:14.4494561Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:22:14.4496111Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/configure.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:22:14.4497656Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/confu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:22:14.4499004Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/confu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:22:14.4499600Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:22:14.4501015Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool/configure.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:22:14.4502459Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool/confu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:22:14.4503027Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK 2025-06-05T23:22:14.4503659Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:22:14.4505198Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:22:14.4506799Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_files_changed.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:22:14.4508418Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:22:14.4509998Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:22:14.4510762Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4512200Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/primes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4513658Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/xngen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4515132Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/xnncommon.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4516726Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4518436Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4520113Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4521790Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4523430Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4525089Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4526662Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4528304Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4529934Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4531533Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4533077Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4534767Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4536388Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4538238Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4539876Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4541459Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4543051Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4544628Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4546447Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4548080Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4549777Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4551401Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4552974Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4554540Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:22:14.4555163Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4556667Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4558203Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-conv-hwc2chw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4559744Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-dwconv2d-chw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4561323Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4562902Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-igemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4564561Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rdsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4566069Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4567438Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4568919Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear-chw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4570372Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4572005Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-igemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4573615Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-raddstoreexpminusmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4575060Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4576507Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmin.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4577999Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rminmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4579455Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4580979Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-spmm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4582562Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f16-vmulcaddc-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4584102Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-argmaxpool.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4585612Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4587120Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc2chw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4588601Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-dwconv2d-chw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4590340Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-goi-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4591889Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4593373Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-relu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4594770Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4596332Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemminc-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4597983Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear-chw.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4599473Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4601015Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4602522Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-relu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4603975Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4605487Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ppmm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4607085Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4608665Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4610198Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-relu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4611677Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4613275Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddexpminusmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4614741Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddextexp.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4616524Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddstoreexpminusmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4618005Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rdsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4619474Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4620923Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmin.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4622368Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rminmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4623942Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4625495Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-spmm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4627111Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vmulcaddc-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4628691Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleexpminusmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4630217Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleextexp.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4631758Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qb4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4633326Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4634918Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4636536Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-igemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4638130Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qb4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4639679Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4641275Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4643038Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-igemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4644601Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qb4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4646177Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc4w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4647776Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-gemm-minmax-fp32.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4649532Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-igemm-minmax-fp32.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4651063Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rdsum-minmax-fp32.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4652515Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4654066Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-fp32.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4655647Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-rndnu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4657233Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-fp32.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4658849Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-rndnu.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4660338Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rdsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4661830Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rsum.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4663335Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/s8-ibilinear.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4664771Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/u8-ibilinear.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4666470Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/u8-lut32norm.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4668042Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/u8-rmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4669447Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/x8-lut.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:22:14.4670827Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party 2025-06-05T23:22:14.4671238Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/utils 2025-06-05T23:22:14.4672363Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils/configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/utils 2025-06-05T23:22:14.4673508Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils/quant_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/utils 2025-06-05T23:22:14.4674598Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/utils 2025-06-05T23:22:14.4675939Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils/xnnpack_constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/utils 2025-06-05T23:22:14.4676331Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple 2025-06-05T23:22:14.4676711Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps 2025-06-05T23:22:14.4677704Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps 2025-06-05T23:22:14.4678794Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/mps_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps 2025-06-05T23:22:14.4679281Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4680496Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4681809Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/activation_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4683016Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/binary_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4684270Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/clamp_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4685557Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/constant_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4686878Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/convolution_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4688132Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/indexing_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4689452Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/linear_algebra_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4690696Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/node_visitor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4692126Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/normalization_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4693347Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/op_clone.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4694550Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/op_getitem.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4695832Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/op_quant_dequant.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4697075Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/op_skip_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4698304Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/pad_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4699661Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/pooling_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4700905Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/range_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4702181Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/reduce_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4703395Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/shape_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4704596Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators/unary_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/operators 2025-06-05T23:22:14.4705098Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/partition 2025-06-05T23:22:14.4706349Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/partition 2025-06-05T23:22:14.4707641Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition/mps_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/partition 2025-06-05T23:22:14.4708156Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/serialization 2025-06-05T23:22:14.4709504Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization/mps_graph_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/serialization 2025-06-05T23:22:14.4710872Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization/mps_graph_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/serialization 2025-06-05T23:22:14.4712188Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization/schema.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/serialization 2025-06-05T23:22:14.4712631Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/test 2025-06-05T23:22:14.4713757Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:22:14.4714974Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps_binary_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:22:14.4716279Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps_indexing_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:22:14.4717476Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:22:14.4718660Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps_models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:22:14.4719818Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps_unary_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:22:14.4720974Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test/test_mps_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/test 2025-06-05T23:22:14.4721411Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/utils 2025-06-05T23:22:14.4722644Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils/mps_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/utils 2025-06-05T23:22:14.4723811Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils/quant_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/mps/utils 2025-06-05T23:22:14.4724238Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml 2025-06-05T23:22:14.4724726Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/compiler 2025-06-05T23:22:14.4725950Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/compiler 2025-06-05T23:22:14.4727297Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler/coreml_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/compiler 2025-06-05T23:22:14.4727793Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/partition 2025-06-05T23:22:14.4729068Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/partition 2025-06-05T23:22:14.4730601Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition/coreml_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/partition 2025-06-05T23:22:14.4731094Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/quantizer 2025-06-05T23:22:14.4732357Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/quantizer 2025-06-05T23:22:14.4733724Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer/coreml_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/quantizer 2025-06-05T23:22:14.4734190Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/test 2025-06-05T23:22:14.4735502Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test/test_coreml_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/test 2025-06-05T23:22:14.4736741Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test/test_coreml_quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/test 2025-06-05T23:22:14.4737227Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime 2025-06-05T23:22:14.4737758Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:22:14.4739318Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/runtime/test/export_stateful_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/runtime/test 2025-06-05T23:22:14.4740561Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/executorchcoreml.pyi -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml 2025-06-05T23:22:14.4742031Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/executorchcoreml.cpython-310-x86_64-linux-gnu.so -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml 2025-06-05T23:22:14.4742420Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence 2025-06-05T23:22:14.4742833Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot 2025-06-05T23:22:14.4743899Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4745023Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/compiler.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4746328Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/compiler_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4747458Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/decompose_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4748538Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/export_example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4749635Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/fuse_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4750746Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/graph_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4751896Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/memory_constraints.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4753049Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/memory_planning.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4754188Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/ops_registrations.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4755254Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/pass_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4756313Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4757494Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/ref_implementations.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4758594Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/remove_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4759697Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/reorder_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4760802Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/replace_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4761903Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/simplify_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4763070Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4763557Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/quantizer 2025-06-05T23:22:14.4764839Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer/fusion_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/quantizer 2025-06-05T23:22:14.4766276Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer/patterns.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/quantizer 2025-06-05T23:22:14.4767530Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer/quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/quantizer 2025-06-05T23:22:14.4768806Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/quantizer 2025-06-05T23:22:14.4769288Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/tests 2025-06-05T23:22:14.4770736Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_decompose_ops_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:22:14.4772061Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_fusion_ops_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:22:14.4773335Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_graph_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:22:14.4774608Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_memory_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:22:14.4775883Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_pass_filter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:22:14.4777141Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_remove_ops_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:22:14.4778422Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_reorder_ops_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:22:14.4779706Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_replace_ops_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:22:14.4781003Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_simplify_ops_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-06-05T23:22:14.4782144Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/functions.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4783330Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/functions_fusion_g3.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4784495Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/functions_hifi.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-06-05T23:22:14.4784931Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/runtime 2025-06-05T23:22:14.4786137Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/runtime 2025-06-05T23:22:14.4787493Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime/executor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/runtime 2025-06-05T23:22:14.4788616Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime/runtime.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/runtime 2025-06-05T23:22:14.4789742Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/runtime 2025-06-05T23:22:14.4790165Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils 2025-06-05T23:22:14.4791295Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/facto_util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils 2025-06-05T23:22:14.4792390Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/gen_header.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils 2025-06-05T23:22:14.4793707Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/post_compilation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils 2025-06-05T23:22:14.4794199Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO 2025-06-05T23:22:14.4795380Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/setup.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO 2025-06-05T23:22:14.4795916Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:22:14.4797326Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:22:14.4798735Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator/runner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:22:14.4799289Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:22:14.4800713Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples/example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:22:14.4802177Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples/minimal_example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:22:14.4803574Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples/random_seed.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:22:14.4804134Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:22:14.4805411Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:22:14.4806027Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:22:14.4807445Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:22:14.4808124Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:22:14.4809717Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:22:14.4811458Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:22:14.4813049Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:22:14.4813740Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:22:14.4815278Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:22:14.4816878Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:22:14.4818566Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:22:14.4820141Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/type.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:22:14.4820832Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:22:14.4822457Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:22:14.4824102Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:22:14.4825817Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:22:14.4827428Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/solve.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:22:14.4828067Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:22:14.4829589Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:22:14.4831128Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:22:14.4831758Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:22:14.4833281Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:22:14.4834885Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/random_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:22:14.4835655Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:14.4837257Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:14.4838889Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:14.4840458Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:14.4842049Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/solve.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:14.4843762Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/space.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:14.4845375Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/type.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:14.4846959Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:22:14.4847528Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:22:14.4848926Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb/db.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:22:14.4850321Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb/default.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:22:14.4851711Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb/dtypes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:22:14.4853141Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb/function.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:22:14.4853639Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test 2025-06-05T23:22:14.4854226Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4855751Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4857262Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_generator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4858824Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_attributes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4860338Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_generator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4861932Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4863441Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4865801Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_solver.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4867319Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_constraints.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4868810Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_meta_arg_engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4870413Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_specs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4871917Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_structural_engine.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4873492Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_generation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4874975Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_solving.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4876464Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_space.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4877965Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:22:14.4878368Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m 2025-06-05T23:22:14.4878775Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/ops 2025-06-05T23:22:14.4879855Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops/operators.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/ops 2025-06-05T23:22:14.4880917Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops/operators.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/ops 2025-06-05T23:22:14.4881354Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/passes 2025-06-05T23:22:14.4882566Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes/replace_quant_nodes_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/passes 2025-06-05T23:22:14.4882984Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/test 2025-06-05T23:22:14.4884148Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/test_replace_quant_nodes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test 2025-06-05T23:22:14.4884662Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples 2025-06-05T23:22:14.4885115Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/llm_pte_finetuning 2025-06-05T23:22:14.4886215Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:22:14.4887382Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/model_exporter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:22:14.4888542Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/model_loading_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:22:14.4889641Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/runner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:22:14.4890823Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/training_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:22:14.4892079Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/llama3_config.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:22:14.4893322Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/phi3_alpaca_code_config.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:22:14.4894488Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/phi3_config.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:22:14.4895623Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning/qwen_05b_config.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/llm_pte_finetuning 2025-06-05T23:22:14.4896038Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models 2025-06-05T23:22:14.4896994Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models 2025-06-05T23:22:14.4897996Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/checkpoint.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models 2025-06-05T23:22:14.4898979Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/model_base.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models 2025-06-05T23:22:14.4899966Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/model_factory.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models 2025-06-05T23:22:14.4900411Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/deeplab_v3 2025-06-05T23:22:14.4901532Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/deeplab_v3 2025-06-05T23:22:14.4902630Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/deeplab_v3 2025-06-05T23:22:14.4903043Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/edsr 2025-06-05T23:22:14.4904072Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/edsr 2025-06-05T23:22:14.4905093Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/edsr 2025-06-05T23:22:14.4905648Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam 2025-06-05T23:22:14.4906821Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam 2025-06-05T23:22:14.4908078Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam 2025-06-05T23:22:14.4908713Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:14.4910261Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core/build_efficient_sam.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:14.4911744Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:14.4913280Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_decoder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:14.4914945Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_encoder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:14.4916362Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core/mlp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:14.4917903Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core/two_way_transformer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:22:14.4918381Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/emformer_rnnt 2025-06-05T23:22:14.4919533Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/emformer_rnnt 2025-06-05T23:22:14.4920701Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/emformer_rnnt 2025-06-05T23:22:14.4921159Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v3 2025-06-05T23:22:14.4922280Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/inception_v3 2025-06-05T23:22:14.4923425Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/inception_v3 2025-06-05T23:22:14.4923896Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v4 2025-06-05T23:22:14.4925040Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/inception_v4 2025-06-05T23:22:14.4926190Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/inception_v4 2025-06-05T23:22:14.4926606Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama 2025-06-05T23:22:14.4927630Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4928725Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4929797Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/eval_llama.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4930984Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/eval_llama_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4932091Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/export_llama.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4933213Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/export_llama_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4934268Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/fairseq2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4935345Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/hf_download.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4936556Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/install_requirement_helper.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4937794Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/llama_transformer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4938838Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4939905Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/model_args.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4940953Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4941987Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/rope.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4943120Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/static_attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-06-05T23:22:14.4943621Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/evaluate 2025-06-05T23:22:14.4944817Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/evaluate 2025-06-05T23:22:14.4946144Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate/eager_eval.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/evaluate 2025-06-05T23:22:14.4946675Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/experimental 2025-06-05T23:22:14.4947994Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/experimental 2025-06-05T23:22:14.4949231Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental/load_gguf_q4_0.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/experimental 2025-06-05T23:22:14.4950506Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental/subclass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/experimental 2025-06-05T23:22:14.4951862Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental/test_subclass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/experimental 2025-06-05T23:22:14.4952321Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/runner 2025-06-05T23:22:14.4953682Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner/eager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/runner 2025-06-05T23:22:14.4954922Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner/generation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/runner 2025-06-05T23:22:14.4956153Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner/native.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/runner 2025-06-05T23:22:14.4956776Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4958192Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4959749Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/apply_spin_quant_r1_r2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4961380Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4962847Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/attention_sink.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4964351Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/custom_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4965960Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/lora.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4967519Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/pre_quantization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4969015Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/prune_vocab.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4970484Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/quantize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4971898Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/rms_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4973354Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/rope.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4974804Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4977944Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/spin_quant.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4981161Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/test_attention_sink.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4984610Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/test_quantized_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4988093Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/test_quantized_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4991541Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/test_sdpa_with_quantized_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4994941Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation/vulkan_rope.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/source_transformation 2025-06-05T23:22:14.4997046Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tests 2025-06-05T23:22:14.4998999Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_export_llama_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:22:14.5002036Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_pre_quantization_transforms.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:22:14.5004913Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_replace_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:22:14.5007707Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_ring_attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:22:14.5010465Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_ring_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:22:14.5013216Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_simple_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:22:14.5015957Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests/test_static_attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tests 2025-06-05T23:22:14.5017914Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tokenizer 2025-06-05T23:22:14.5019827Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tokenizer/tiktoken.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/tokenizer 2025-06-05T23:22:14.5021758Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision 2025-06-05T23:22:14.5023629Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision 2025-06-05T23:22:14.5025660Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:22:14.5027788Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:22:14.5030784Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess/export_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:22:14.5033752Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:22:14.5036838Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess/test_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:22:14.5038952Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:22:14.5040998Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner/eager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:22:14.5043885Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner/exported.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:22:14.5046779Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner/generation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:22:14.5049753Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner/native.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:22:14.5052001Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:22:14.5054225Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:22:14.5056488Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:22:14.5058823Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:22:14.5062099Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test/test_text_decoder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:22:14.5064542Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:22:14.5067025Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:22:14.5070133Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:22:14.5072456Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:22:14.5074898Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:22:14.5078234Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test/test_vision_encoder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:22:14.5080516Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava 2025-06-05T23:22:14.5082232Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llava 2025-06-05T23:22:14.5084698Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/export_llava.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llava 2025-06-05T23:22:14.5087379Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llava 2025-06-05T23:22:14.5089148Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava/test 2025-06-05T23:22:14.5090971Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test/test_llava.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llava/test 2025-06-05T23:22:14.5093596Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test/test_pte.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llava/test 2025-06-05T23:22:14.5095381Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/lstm 2025-06-05T23:22:14.5097048Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/lstm 2025-06-05T23:22:14.5099391Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/lstm 2025-06-05T23:22:14.5101104Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilebert 2025-06-05T23:22:14.5103084Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/mobilebert 2025-06-05T23:22:14.5105689Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/mobilebert 2025-06-05T23:22:14.5107525Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v2 2025-06-05T23:22:14.5109331Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/mobilenet_v2 2025-06-05T23:22:14.5111875Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/mobilenet_v2 2025-06-05T23:22:14.5113711Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v3 2025-06-05T23:22:14.5115551Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/mobilenet_v3 2025-06-05T23:22:14.5118116Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/mobilenet_v3 2025-06-05T23:22:14.5120007Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:22:14.5121932Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini-lora/export_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi-3-mini-lora 2025-06-05T23:22:14.5123900Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini 2025-06-05T23:22:14.5125683Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi-3-mini 2025-06-05T23:22:14.5128201Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini/eager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi-3-mini 2025-06-05T23:22:14.5130669Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini/phi_3_mini.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi-3-mini 2025-06-05T23:22:14.5133211Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini/static_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi-3-mini 2025-06-05T23:22:14.5135844Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini/export_phi-3-mini.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi-3-mini 2025-06-05T23:22:14.5137885Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi_4_mini 2025-06-05T23:22:14.5139643Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi_4_mini 2025-06-05T23:22:14.5142188Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi_4_mini 2025-06-05T23:22:14.5144019Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen2_5 2025-06-05T23:22:14.5145800Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/qwen2_5 2025-06-05T23:22:14.5148262Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/qwen2_5 2025-06-05T23:22:14.5150072Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen3 2025-06-05T23:22:14.5151915Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/qwen3 2025-06-05T23:22:14.5154344Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/qwen3 2025-06-05T23:22:14.5156128Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/resnet 2025-06-05T23:22:14.5157819Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/resnet 2025-06-05T23:22:14.5160211Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/resnet 2025-06-05T23:22:14.5161952Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/smollm2 2025-06-05T23:22:14.5163693Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/smollm2 2025-06-05T23:22:14.5166527Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/smollm2 2025-06-05T23:22:14.5168349Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/test 2025-06-05T23:22:14.5170034Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/test 2025-06-05T23:22:14.5172410Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test/test_export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/test 2025-06-05T23:22:14.5174228Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/torchvision_vit 2025-06-05T23:22:14.5176094Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/torchvision_vit 2025-06-05T23:22:14.5178730Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/torchvision_vit 2025-06-05T23:22:14.5180635Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/toy_model 2025-06-05T23:22:14.5182373Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/toy_model 2025-06-05T23:22:14.5184773Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/toy_model 2025-06-05T23:22:14.5186790Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/wav2letter 2025-06-05T23:22:14.5188566Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/wav2letter 2025-06-05T23:22:14.5191090Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/wav2letter 2025-06-05T23:22:14.5192894Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi 2025-06-05T23:22:14.5193983Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi/mimi 2025-06-05T23:22:14.5195812Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/moshi/mimi/test_mimi.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/moshi/mimi 2025-06-05T23:22:14.5197608Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple 2025-06-05T23:22:14.5198599Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml 2025-06-05T23:22:14.5199676Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/llama 2025-06-05T23:22:14.5201730Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama/export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/llama 2025-06-05T23:22:14.5204424Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama/llama_transformer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/llama 2025-06-05T23:22:14.5207092Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama/run.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/llama 2025-06-05T23:22:14.5209628Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama/test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/llama 2025-06-05T23:22:14.5212241Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/llama 2025-06-05T23:22:14.5214113Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/scripts 2025-06-05T23:22:14.5216072Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts/debugger_cli.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/scripts 2025-06-05T23:22:14.5218798Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts/export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/scripts 2025-06-05T23:22:14.5221572Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts/extract_coreml_models.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/scripts 2025-06-05T23:22:14.5224494Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts/inspector_cli.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/scripts 2025-06-05T23:22:14.5227354Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts/inspector_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/scripts 2025-06-05T23:22:14.5229314Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps 2025-06-05T23:22:14.5230397Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps/scripts 2025-06-05T23:22:14.5232274Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts/bench_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/mps/scripts 2025-06-05T23:22:14.5234922Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts/mps_example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/mps/scripts 2025-06-05T23:22:14.5236847Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension 2025-06-05T23:22:14.5237807Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/export_util 2025-06-05T23:22:14.5239494Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/export_util 2025-06-05T23:22:14.5241755Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/export_util 2025-06-05T23:22:14.5243423Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor 2025-06-05T23:22:14.5245094Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor 2025-06-05T23:22:14.5246817Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/serialize 2025-06-05T23:22:14.5248744Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor/serialize 2025-06-05T23:22:14.5251973Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize/flat_tensor_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor/serialize 2025-06-05T23:22:14.5254800Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize/serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor/serialize 2025-06-05T23:22:14.5257424Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize/flat_tensor.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor/serialize 2025-06-05T23:22:14.5260064Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor/serialize 2025-06-05T23:22:14.5261998Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/test 2025-06-05T23:22:14.5263844Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/test/test_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/flat_tensor/test 2025-06-05T23:22:14.5265934Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util 2025-06-05T23:22:14.5267602Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/convert_main.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/gguf_util 2025-06-05T23:22:14.5269921Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/gguf_util 2025-06-05T23:22:14.5272239Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/load_gguf.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/gguf_util 2025-06-05T23:22:14.5273976Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util/converters 2025-06-05T23:22:14.5275900Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converters/llama_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/gguf_util/converters 2025-06-05T23:22:14.5277743Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings 2025-06-05T23:22:14.5279446Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/portable_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pybindings 2025-06-05T23:22:14.5281130Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings/test 2025-06-05T23:22:14.5282872Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test/make_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pybindings/test 2025-06-05T23:22:14.5285697Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test/test_backend_pybinding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pybindings/test 2025-06-05T23:22:14.5288432Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test/test_pybindings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pybindings/test 2025-06-05T23:22:14.5290993Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/pybindings.pyi -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pybindings 2025-06-05T23:22:14.5293650Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/_portable_lib.cpython-310-x86_64-linux-gnu.so -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pybindings 2025-06-05T23:22:14.5295518Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree 2025-06-05T23:22:14.5297070Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pytree 2025-06-05T23:22:14.5298719Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree/test 2025-06-05T23:22:14.5300450Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test/test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/pytree/test 2025-06-05T23:22:14.5302301Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training 2025-06-05T23:22:14.5303968Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training 2025-06-05T23:22:14.5305742Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings 2025-06-05T23:22:14.5307746Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/_training_module.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/pybindings 2025-06-05T23:22:14.5309782Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings/test 2025-06-05T23:22:14.5311835Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/test/test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/pybindings/test 2025-06-05T23:22:14.5314665Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/_training_lib.pyi -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/pybindings 2025-06-05T23:22:14.5316624Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples 2025-06-05T23:22:14.5317749Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR 2025-06-05T23:22:14.5319744Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/export_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/examples/XOR 2025-06-05T23:22:14.5322588Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/examples/XOR 2025-06-05T23:22:14.5324621Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR/test 2025-06-05T23:22:14.5326792Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/test/test_export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/examples/XOR/test 2025-06-05T23:22:14.5328763Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm 2025-06-05T23:22:14.5329782Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops 2025-06-05T23:22:14.5331521Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:22:14.5333914Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/custom_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:22:14.5336447Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/model_sharding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:22:14.5338925Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/op_tile_crop_aot.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:22:14.5341482Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/preprocess_custom_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:22:14.5344174Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/test_preprocess_custom_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:22:14.5346852Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/test_quantized_sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:22:14.5349461Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/test_sdpa_with_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:22:14.5352201Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/test_update_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:22:14.5354115Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:22:14.5356284Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/special_hadamard_code_gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:22:14.5358524Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party 2025-06-05T23:22:14.5359964Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:22:14.5362440Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:22:14.5365867Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:22:14.5368738Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/libcustom_ops_aot_lib.so -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/custom_ops 2025-06-05T23:22:14.5370594Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export 2025-06-05T23:22:14.5372256Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-06-05T23:22:14.5374649Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-06-05T23:22:14.5377097Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/export_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-06-05T23:22:14.5379609Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/partitioner_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-06-05T23:22:14.5382068Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/quantizer_lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-06-05T23:22:14.5384572Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test_export_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-06-05T23:22:14.5386654Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export/test 2025-06-05T23:22:14.5388397Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export/test 2025-06-05T23:22:14.5390960Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test/test_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export/test 2025-06-05T23:22:14.5392801Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules 2025-06-05T23:22:14.5394491Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules 2025-06-05T23:22:14.5396937Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/_position_embeddings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules 2025-06-05T23:22:14.5399441Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules 2025-06-05T23:22:14.5402029Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules 2025-06-05T23:22:14.5403789Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules/test 2025-06-05T23:22:14.5405639Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules/test 2025-06-05T23:22:14.5408249Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test/test_attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules/test 2025-06-05T23:22:14.5410939Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test/test_kv_cache.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules/test 2025-06-05T23:22:14.5413695Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test/test_position_embeddings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/modules/test 2025-06-05T23:22:14.5415680Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers 2025-06-05T23:22:14.5417435Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/setup.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers 2025-06-05T23:22:14.5419406Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:22:14.5421667Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:22:14.5424773Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:22:14.5428070Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/hf_tokenizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:22:14.5431259Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/llama2c.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:22:14.5434351Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tiktoken.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:22:14.5436652Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:22:14.5439155Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:22:14.5441699Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:22:14.5444385Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:22:14.5448067Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/convert.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:22:14.5450545Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/test 2025-06-05T23:22:14.5452513Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test/test_tiktoken.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/test 2025-06-05T23:22:14.5454578Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party 2025-06-05T23:22:14.5456099Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:22:14.5458518Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/conanfile.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:22:14.5461745Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/create_lts.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:22:14.5464204Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:22:14.5466078Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:22:14.5468769Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/copts.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:22:14.5472560Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/generate_copts.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:22:14.5476293Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:22:14.5478917Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json 2025-06-05T23:22:14.5480340Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs 2025-06-05T23:22:14.5481900Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs 2025-06-05T23:22:14.5483557Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:22:14.5486377Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts/check_structure.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:22:14.5489166Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests 2025-06-05T23:22:14.5490745Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty 2025-06-05T23:22:14.5492667Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:22:14.5495536Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl/filterbr.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:22:14.5498261Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools 2025-06-05T23:22:14.5499780Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:22:14.5502425Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate/amalgamate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:22:14.5505168Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:22:14.5508247Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:22:14.5511049Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:22:14.5513831Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis/generate_natvis.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:22:14.5516599Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:22:14.5519245Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header/serve_header.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:22:14.5521794Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2 2025-06-05T23:22:14.5523235Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:14.5525664Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateCommon.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:14.5529028Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateTest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:14.5532385Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcd.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:14.5535758Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpHeader.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:14.5539211Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpTables.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:14.5542592Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateCommon.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:14.5546160Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateDates.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:14.5549523Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateRelease.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:22:14.5551898Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2 2025-06-05T23:22:14.5553329Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:22:14.5555741Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/benchlog/benchplot.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:22:14.5558169Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:22:14.5560475Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/re2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:22:14.5563332Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/re2_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:22:14.5566353Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/setup.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:22:14.5568470Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:22:14.5571081Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:22:14.5573698Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:22:14.5576098Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_casefold.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:22:14.5579460Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_groups.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:22:14.5582755Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2/unicode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:22:14.5585132Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece 2025-06-05T23:22:14.5586858Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:22:14.5589552Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/setup.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:22:14.5592309Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:22:14.5595098Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:22:14.5599228Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/sentencepiece_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:22:14.5602178Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src 2025-06-05T23:22:14.5604077Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:22:14.5607343Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:22:14.5611572Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/_version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:22:14.5616262Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_model_pb2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:22:14.5620885Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_pb2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:22:14.5623752Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build 2025-06-05T23:22:14.5624964Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib 2025-06-05T23:22:14.5626477Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:22:14.5629041Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:22:14.5632555Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:22:14.5636133Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/hf_tokenizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:22:14.5639666Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/llama2c.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:22:14.5643228Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tiktoken.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:22:14.5645910Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:22:14.5648380Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:22:14.5651023Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:22:14.5654106Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:22:14.5658189Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/convert.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:22:14.5660566Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module 2025-06-05T23:22:14.5661429Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test 2025-06-05T23:22:14.5662389Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test/resources 2025-06-05T23:22:14.5664277Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/module/test/resources/gen_bundled_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/module/test/resources 2025-06-05T23:22:14.5666178Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels 2025-06-05T23:22:14.5667069Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized 2025-06-05T23:22:14.5668890Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/kernels/quantized 2025-06-05T23:22:14.5670664Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized/test 2025-06-05T23:22:14.5672608Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test/test_out_variants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/kernels/quantized/test 2025-06-05T23:22:14.5675429Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test/test_quant_dequant_per_token.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/kernels/quantized/test 2025-06-05T23:22:14.5678351Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test/supported_features_def.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/kernels/quantized/test 2025-06-05T23:22:14.5681092Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/quantized.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/kernels/quantized 2025-06-05T23:22:14.5683718Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/libquantized_ops_aot_lib.so -> pip-out/bdist.linux-x86_64/wheel/./executorch/kernels/quantized 2025-06-05T23:22:14.5685529Z creating pip-out/bdist.linux-x86_64/wheel/executorch/schema 2025-06-05T23:22:14.5686976Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/schema/program.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/schema 2025-06-05T23:22:14.5689038Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/schema/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/schema 2025-06-05T23:22:14.5690964Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch 2025-06-05T23:22:14.5692290Z creating pip-out/bdist.linux-x86_64/wheel/executorch/share 2025-06-05T23:22:14.5693209Z creating pip-out/bdist.linux-x86_64/wheel/executorch/share/cmake 2025-06-05T23:22:14.5694923Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake/executorch-config.cmake -> pip-out/bdist.linux-x86_64/wheel/./executorch/share/cmake 2025-06-05T23:22:14.5696637Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include 2025-06-05T23:22:14.5697616Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch 2025-06-05T23:22:14.5698722Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime 2025-06-05T23:22:14.5699948Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5702041Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/array_ref.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5705153Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/data_loader.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5707969Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/defines.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5710687Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/error.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5713568Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/evalue.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5716495Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/event_tracer.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5719302Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/event_tracer_hooks.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5722567Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/event_tracer_hooks_delegate.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5725741Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/freeable_buffer.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5728789Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/function_ref.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5731934Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/hierarchical_allocator.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5735124Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/memory_allocator.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5738168Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/named_data_map.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5741146Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/result.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5744046Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/span.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5747008Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/tag.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5749964Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/tensor_layout.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5753054Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/tensor_shape_dynamism.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core 2025-06-05T23:22:14.5755377Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:22:14.5757776Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/exec_aten.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:22:14.5760316Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:22:14.5763161Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:22:14.5766982Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:22:14.5769190Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:22:14.5771400Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util/dim_order_util.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:22:14.5774680Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:22:14.5778131Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:22:14.5781597Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:22:14.5785188Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util/tensor_util.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:22:14.5787812Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5790350Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/bfloat16.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5793886Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/bfloat16_math.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5797398Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/bits_types.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5800858Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/complex.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5804307Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/device.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5807700Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/half.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5811131Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/optional.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5814598Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/qint_types.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5818270Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/scalar.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5821663Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/scalar_type.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5825137Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/string_view.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5828618Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/tensor.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5831899Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/tensor_impl.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5835558Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/tensor_options.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:22:14.5838136Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:22:14.5839838Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:22:14.5841633Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:22:14.5844563Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:22:14.5848582Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:22:14.5851504Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5854408Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5858460Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5862478Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5866387Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5868506Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5870566Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5873198Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5876338Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5879475Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5882689Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5885017Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5887406Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:22:14.5888883Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel 2025-06-05T23:22:14.5890156Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/kernel_includes.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/kernel 2025-06-05T23:22:14.5891929Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/kernel_runtime_context.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/kernel 2025-06-05T23:22:14.5893755Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/operator_registry.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/kernel 2025-06-05T23:22:14.6125289Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/thread_parallel_interface.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/kernel 2025-06-05T23:22:14.6126566Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:22:14.6128038Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test/test_util.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/kernel/test 2025-06-05T23:22:14.6129225Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.6130619Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/abort.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.6132430Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/assert.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.6134186Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/clock.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.6135839Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/compat_unistd.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.6137782Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/compiler.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.6139858Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/log.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.6141744Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/platform.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.6143365Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/profiler.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.6145197Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/runtime.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.6146928Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/system.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.6148846Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/types.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform 2025-06-05T23:22:14.6150006Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform/test 2025-06-05T23:22:14.6151451Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test/pal_spy.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform/test 2025-06-05T23:22:14.6153162Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test/stub_platform.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/platform/test 2025-06-05T23:22:14.6154336Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension 2025-06-05T23:22:14.6155053Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/kernel_util 2025-06-05T23:22:14.6156347Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/kernel_util 2025-06-05T23:22:14.6158128Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util/meta_programming.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/kernel_util 2025-06-05T23:22:14.6159814Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util/type_list.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/kernel_util 2025-06-05T23:22:14.6160978Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/tensor 2025-06-05T23:22:14.6162141Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor/tensor.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/tensor 2025-06-05T23:22:14.6163966Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor/tensor_accessor.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/tensor 2025-06-05T23:22:14.6165787Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor/tensor_ptr.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/tensor 2025-06-05T23:22:14.6167416Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor/tensor_ptr_maker.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/tensor 2025-06-05T23:22:14.6168690Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/threadpool 2025-06-05T23:22:14.6170127Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool/cpuinfo_utils.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/threadpool 2025-06-05T23:22:14.6172046Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool/threadpool.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/threadpool 2025-06-05T23:22:14.6173777Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool/threadpool_guard.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/extension/threadpool 2025-06-05T23:22:14.6174870Z creating pip-out/bdist.linux-x86_64/wheel/executorch/data 2025-06-05T23:22:14.6175347Z creating pip-out/bdist.linux-x86_64/wheel/executorch/data/bin 2025-06-05T23:22:14.6176158Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin/flatc -> pip-out/bdist.linux-x86_64/wheel/./executorch/data/bin 2025-06-05T23:22:14.6177323Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/data/bin 2025-06-05T23:22:14.6178001Z running install_egg_info 2025-06-05T23:22:14.6178620Z Copying executorch.egg-info to pip-out/bdist.linux-x86_64/wheel/./executorch-0.7.0a0+bd57234-py3.10.egg-info 2025-06-05T23:22:14.6179214Z running install_scripts 2025-06-05T23:22:14.6179649Z creating pip-out/bdist.linux-x86_64/wheel/executorch-0.7.0a0+bd57234.dist-info/WHEEL 2025-06-05T23:22:14.6180843Z creating '/tmp/pip-wheel-zm9bbzfx/.tmp-ypo2ncpy/executorch-0.7.0a0+bd57234-cp310-cp310-linux_x86_64.whl' and adding 'pip-out/bdist.linux-x86_64/wheel' to it 2025-06-05T23:22:14.6181700Z adding 'executorch/version.py' 2025-06-05T23:22:14.6182313Z adding 'executorch/backends/apple/coreml/executorchcoreml.cpython-310-x86_64-linux-gnu.so' 2025-06-05T23:22:14.6183082Z adding 'executorch/backends/apple/coreml/executorchcoreml.pyi' 2025-06-05T23:22:14.6183583Z adding 'executorch/backends/apple/coreml/compiler/__init__.py' 2025-06-05T23:22:14.6184131Z adding 'executorch/backends/apple/coreml/compiler/coreml_preprocess.py' 2025-06-05T23:22:14.6184676Z adding 'executorch/backends/apple/coreml/partition/__init__.py' 2025-06-05T23:22:14.6185243Z adding 'executorch/backends/apple/coreml/partition/coreml_partitioner.py' 2025-06-05T23:22:14.6185874Z adding 'executorch/backends/apple/coreml/quantizer/__init__.py' 2025-06-05T23:22:14.6186611Z adding 'executorch/backends/apple/coreml/quantizer/coreml_quantizer.py' 2025-06-05T23:22:14.6187239Z adding 'executorch/backends/apple/coreml/runtime/test/export_stateful_model.py' 2025-06-05T23:22:14.6187860Z adding 'executorch/backends/apple/coreml/test/test_coreml_partitioner.py' 2025-06-05T23:22:14.6188452Z adding 'executorch/backends/apple/coreml/test/test_coreml_quantizer.py' 2025-06-05T23:22:14.6188933Z adding 'executorch/backends/apple/mps/__init__.py' 2025-06-05T23:22:14.6189559Z adding 'executorch/backends/apple/mps/mps_preprocess.py' 2025-06-05T23:22:14.6190028Z adding 'executorch/backends/apple/mps/operators/__init__.py' 2025-06-05T23:22:14.6190530Z adding 'executorch/backends/apple/mps/operators/activation_ops.py' 2025-06-05T23:22:14.6191052Z adding 'executorch/backends/apple/mps/operators/binary_ops.py' 2025-06-05T23:22:14.6191534Z adding 'executorch/backends/apple/mps/operators/clamp_ops.py' 2025-06-05T23:22:14.6192187Z adding 'executorch/backends/apple/mps/operators/constant_ops.py' 2025-06-05T23:22:14.6192706Z adding 'executorch/backends/apple/mps/operators/convolution_ops.py' 2025-06-05T23:22:14.6193259Z adding 'executorch/backends/apple/mps/operators/indexing_ops.py' 2025-06-05T23:22:14.6193806Z adding 'executorch/backends/apple/mps/operators/linear_algebra_ops.py' 2025-06-05T23:22:14.6194363Z adding 'executorch/backends/apple/mps/operators/node_visitor.py' 2025-06-05T23:22:14.6195089Z adding 'executorch/backends/apple/mps/operators/normalization_ops.py' 2025-06-05T23:22:14.6195692Z adding 'executorch/backends/apple/mps/operators/op_clone.py' 2025-06-05T23:22:14.6196189Z adding 'executorch/backends/apple/mps/operators/op_getitem.py' 2025-06-05T23:22:14.6196700Z adding 'executorch/backends/apple/mps/operators/op_quant_dequant.py' 2025-06-05T23:22:14.6470121Z adding 'executorch/backends/apple/mps/operators/op_skip_ops.py' 2025-06-05T23:22:14.6470976Z adding 'executorch/backends/apple/mps/operators/pad_ops.py' 2025-06-05T23:22:14.6471864Z adding 'executorch/backends/apple/mps/operators/pooling_ops.py' 2025-06-05T23:22:14.6472517Z adding 'executorch/backends/apple/mps/operators/range_ops.py' 2025-06-05T23:22:14.6473074Z adding 'executorch/backends/apple/mps/operators/reduce_ops.py' 2025-06-05T23:22:14.6473553Z adding 'executorch/backends/apple/mps/operators/shape_ops.py' 2025-06-05T23:22:14.6474257Z adding 'executorch/backends/apple/mps/operators/unary_ops.py' 2025-06-05T23:22:14.6474788Z adding 'executorch/backends/apple/mps/partition/__init__.py' 2025-06-05T23:22:14.6475315Z adding 'executorch/backends/apple/mps/partition/mps_partitioner.py' 2025-06-05T23:22:14.6475948Z adding 'executorch/backends/apple/mps/serialization/mps_graph_schema.py' 2025-06-05T23:22:14.6476737Z adding 'executorch/backends/apple/mps/serialization/mps_graph_serialize.py' 2025-06-05T23:22:14.6477537Z adding 'executorch/backends/apple/mps/serialization/schema.fbs' 2025-06-05T23:22:14.6478059Z adding 'executorch/backends/apple/mps/test/test_mps.py' 2025-06-05T23:22:14.6478723Z adding 'executorch/backends/apple/mps/test/test_mps_binary_ops.py' 2025-06-05T23:22:14.6479302Z adding 'executorch/backends/apple/mps/test/test_mps_indexing_ops.py' 2025-06-05T23:22:14.6479819Z adding 'executorch/backends/apple/mps/test/test_mps_linear.py' 2025-06-05T23:22:14.6480399Z adding 'executorch/backends/apple/mps/test/test_mps_models.py' 2025-06-05T23:22:14.6481039Z adding 'executorch/backends/apple/mps/test/test_mps_unary_ops.py' 2025-06-05T23:22:14.6481595Z adding 'executorch/backends/apple/mps/test/test_mps_utils.py' 2025-06-05T23:22:14.6482059Z adding 'executorch/backends/apple/mps/utils/mps_utils.py' 2025-06-05T23:22:14.6482711Z adding 'executorch/backends/apple/mps/utils/quant_utils.py' 2025-06-05T23:22:14.6483171Z adding 'executorch/backends/arm/arm_backend.py' 2025-06-05T23:22:14.6483623Z adding 'executorch/backends/arm/arm_vela.py' 2025-06-05T23:22:14.6484016Z adding 'executorch/backends/arm/ethosu_backend.py' 2025-06-05T23:22:14.6484427Z adding 'executorch/backends/arm/ethosu_partitioner.py' 2025-06-05T23:22:14.6484835Z adding 'executorch/backends/arm/process_node.py' 2025-06-05T23:22:14.6485345Z adding 'executorch/backends/arm/tosa_backend.py' 2025-06-05T23:22:14.6485836Z adding 'executorch/backends/arm/tosa_mapping.py' 2025-06-05T23:22:14.6486277Z adding 'executorch/backends/arm/tosa_partitioner.py' 2025-06-05T23:22:14.6486684Z adding 'executorch/backends/arm/tosa_quant_utils.py' 2025-06-05T23:22:14.6487090Z adding 'executorch/backends/arm/tosa_specification.py' 2025-06-05T23:22:14.6487492Z adding 'executorch/backends/arm/tosa_utils.py' 2025-06-05T23:22:14.6488006Z adding 'executorch/backends/arm/vgf_backend.py' 2025-06-05T23:22:14.6488489Z adding 'executorch/backends/arm/vgf_partitioner.py' 2025-06-05T23:22:14.6488959Z adding 'executorch/backends/arm/_passes/__init__.py' 2025-06-05T23:22:14.6489379Z adding 'executorch/backends/arm/_passes/_debug_passes.py' 2025-06-05T23:22:14.6489932Z adding 'executorch/backends/arm/_passes/annotate_channels_last_dim_order_pass.py' 2025-06-05T23:22:14.6490778Z adding 'executorch/backends/arm/_passes/annotate_decomposed_matmul.py' 2025-06-05T23:22:14.6491319Z adding 'executorch/backends/arm/_passes/arm_pass.py' 2025-06-05T23:22:14.6491750Z adding 'executorch/backends/arm/_passes/arm_pass_manager.py' 2025-06-05T23:22:14.6492221Z adding 'executorch/backends/arm/_passes/arm_pass_utils.py' 2025-06-05T23:22:14.6492789Z adding 'executorch/backends/arm/_passes/broadcast_args_pass.py' 2025-06-05T23:22:14.6493545Z adding 'executorch/backends/arm/_passes/cast_int64_pass.py' 2025-06-05T23:22:14.6494071Z adding 'executorch/backends/arm/_passes/cast_to_int32_pass.py' 2025-06-05T23:22:14.6494581Z adding 'executorch/backends/arm/_passes/conv1d_unsqueeze_pass.py' 2025-06-05T23:22:14.6495383Z adding 'executorch/backends/arm/_passes/convert_any_default_dim_dims_pass.py' 2025-06-05T23:22:14.6496040Z adding 'executorch/backends/arm/_passes/convert_expand_copy_to_repeat.py' 2025-06-05T23:22:14.6496629Z adding 'executorch/backends/arm/_passes/convert_full_like_to_full_pass.py' 2025-06-05T23:22:14.6497384Z adding 'executorch/backends/arm/_passes/convert_int_pow_to_mul.py' 2025-06-05T23:22:14.6497954Z adding 'executorch/backends/arm/_passes/convert_minmax_pass.py' 2025-06-05T23:22:14.6498470Z adding 'executorch/backends/arm/_passes/convert_split_to_slice.py' 2025-06-05T23:22:14.6498990Z adding 'executorch/backends/arm/_passes/convert_squeezes_to_view.py' 2025-06-05T23:22:14.6499732Z adding 'executorch/backends/arm/_passes/convert_to_clamp.py' 2025-06-05T23:22:14.6500324Z adding 'executorch/backends/arm/_passes/decompose_cosine_similarity_pass.py' 2025-06-05T23:22:14.6500880Z adding 'executorch/backends/arm/_passes/decompose_div_pass.py' 2025-06-05T23:22:14.6501418Z adding 'executorch/backends/arm/_passes/decompose_gelu_pass.py' 2025-06-05T23:22:14.6501809Z adding 'executorch/backends/arm/_passes/decompose_groupnorm_pass.py' 2025-06-05T23:22:14.6502092Z adding 'executorch/backends/arm/_passes/decompose_layernorm_pass.py' 2025-06-05T23:22:14.6502319Z adding 'executorch/backends/arm/_passes/decompose_leaky_relu_pass.py' 2025-06-05T23:22:14.6502621Z adding 'executorch/backends/arm/_passes/decompose_linalg_vector_norm_pass.py' 2025-06-05T23:22:14.6502816Z adding 'executorch/backends/arm/_passes/decompose_linear_pass.py' 2025-06-05T23:22:14.6503018Z adding 'executorch/backends/arm/_passes/decompose_meandim_pass.py' 2025-06-05T23:22:14.6503212Z adding 'executorch/backends/arm/_passes/decompose_ne_pass.py' 2025-06-05T23:22:14.6503395Z adding 'executorch/backends/arm/_passes/decompose_select.py' 2025-06-05T23:22:14.6503581Z adding 'executorch/backends/arm/_passes/decompose_silu_pass.py' 2025-06-05T23:22:14.6503792Z adding 'executorch/backends/arm/_passes/decompose_softmax_pass.py' 2025-06-05T23:22:14.6504038Z adding 'executorch/backends/arm/_passes/decompose_softmax_unstable_pass.py' 2025-06-05T23:22:14.6504225Z adding 'executorch/backends/arm/_passes/decompose_sqrt_pass.py' 2025-06-05T23:22:14.6504477Z adding 'executorch/backends/arm/_passes/decompose_sum_pass.py' 2025-06-05T23:22:14.6504728Z adding 'executorch/backends/arm/_passes/decompose_var_pass.py' 2025-06-05T23:22:14.6505079Z adding 'executorch/backends/arm/_passes/fold_qdq_with_annotated_qparams_pass.py' 2025-06-05T23:22:14.6505294Z adding 'executorch/backends/arm/_passes/fuse_batchnorm2d_pass.py' 2025-06-05T23:22:14.6505612Z adding 'executorch/backends/arm/_passes/fuse_constant_ops_pass.py' 2025-06-05T23:22:14.6505852Z adding 'executorch/backends/arm/_passes/fuse_equal_placeholders_pass.py' 2025-06-05T23:22:14.6506084Z adding 'executorch/backends/arm/_passes/fuse_quantized_activation_pass.py' 2025-06-05T23:22:14.6506290Z adding 'executorch/backends/arm/_passes/insert_rescales_pass.py' 2025-06-05T23:22:14.6506463Z adding 'executorch/backends/arm/_passes/insert_table_ops.py' 2025-06-05T23:22:14.6506658Z adding 'executorch/backends/arm/_passes/match_arg_ranks_pass.py' 2025-06-05T23:22:14.6506905Z adding 'executorch/backends/arm/_passes/match_where_self_arg_dtype_pass.py' 2025-06-05T23:22:14.6507073Z adding 'executorch/backends/arm/_passes/mm_to_bmm_pass.py' 2025-06-05T23:22:14.6507252Z adding 'executorch/backends/arm/_passes/remove_clone_pass.py' 2025-06-05T23:22:14.6507505Z adding 'executorch/backends/arm/_passes/replace_inf_values_pass.py' 2025-06-05T23:22:14.6507874Z adding 'executorch/backends/arm/_passes/replace_scalar_with_tensor_pass.py' 2025-06-05T23:22:14.6508181Z adding 'executorch/backends/arm/_passes/scalars_to_attribute_pass.py' 2025-06-05T23:22:14.6508482Z adding 'executorch/backends/arm/_passes/size_adjust_conv2d_pass.py' 2025-06-05T23:22:14.6508763Z adding 'executorch/backends/arm/_passes/unsqueeze_before_repeat_pass.py' 2025-06-05T23:22:14.6509015Z adding 'executorch/backends/arm/_passes/unsqueeze_scalar_placeholders_pass.py' 2025-06-05T23:22:14.6509201Z adding 'executorch/backends/arm/operator_support/__init__.py' 2025-06-05T23:22:14.6509450Z adding 'executorch/backends/arm/operator_support/convolution_support.py' 2025-06-05T23:22:14.6509670Z adding 'executorch/backends/arm/operator_support/ethos_u55_support.py' 2025-06-05T23:22:14.6509957Z adding 'executorch/backends/arm/operator_support/minmax_support.py' 2025-06-05T23:22:14.6510271Z adding 'executorch/backends/arm/operator_support/pool_2d_support.py' 2025-06-05T23:22:14.6510554Z adding 'executorch/backends/arm/operator_support/reduce_sum_support.py' 2025-06-05T23:22:14.6510787Z adding 'executorch/backends/arm/operator_support/right_shift_support.py' 2025-06-05T23:22:14.6511068Z adding 'executorch/backends/arm/operator_support/sin_cos_support.py' 2025-06-05T23:22:14.6511294Z adding 'executorch/backends/arm/operator_support/slice_copy_support.py' 2025-06-05T23:22:14.6511506Z adding 'executorch/backends/arm/operator_support/to_copy_support.py' 2025-06-05T23:22:14.6511835Z adding 'executorch/backends/arm/operator_support/tosa_supported_operators.py' 2025-06-05T23:22:14.6512010Z adding 'executorch/backends/arm/operators/__init__.py' 2025-06-05T23:22:14.6512181Z adding 'executorch/backends/arm/operators/node_visitor.py' 2025-06-05T23:22:14.6512343Z adding 'executorch/backends/arm/operators/op_abs.py' 2025-06-05T23:22:14.6512577Z adding 'executorch/backends/arm/operators/op_add.py' 2025-06-05T23:22:14.6512787Z adding 'executorch/backends/arm/operators/op_amax.py' 2025-06-05T23:22:14.6513007Z adding 'executorch/backends/arm/operators/op_amin.py' 2025-06-05T23:22:14.6513164Z adding 'executorch/backends/arm/operators/op_any.py' 2025-06-05T23:22:14.6513341Z adding 'executorch/backends/arm/operators/op_avg_pool2d.py' 2025-06-05T23:22:14.6513538Z adding 'executorch/backends/arm/operators/op_bmm.py' 2025-06-05T23:22:14.6513681Z adding 'executorch/backends/arm/operators/op_cat.py' 2025-06-05T23:22:14.6513847Z adding 'executorch/backends/arm/operators/op_clamp.py' 2025-06-05T23:22:14.6514049Z adding 'executorch/backends/arm/operators/op_constant_pad_nd.py' 2025-06-05T23:22:14.6514207Z adding 'executorch/backends/arm/operators/op_conv2d.py' 2025-06-05T23:22:14.6514365Z adding 'executorch/backends/arm/operators/op_cos.py' 2025-06-05T23:22:14.6514506Z adding 'executorch/backends/arm/operators/op_eq.py' 2025-06-05T23:22:14.6514649Z adding 'executorch/backends/arm/operators/op_erf.py' 2025-06-05T23:22:14.6514803Z adding 'executorch/backends/arm/operators/op_exp.py' 2025-06-05T23:22:14.6514943Z adding 'executorch/backends/arm/operators/op_ge.py' 2025-06-05T23:22:14.6515084Z adding 'executorch/backends/arm/operators/op_gt.py' 2025-06-05T23:22:14.6515278Z adding 'executorch/backends/arm/operators/op_le.py' 2025-06-05T23:22:14.6515487Z adding 'executorch/backends/arm/operators/op_log.py' 2025-06-05T23:22:14.6515694Z adding 'executorch/backends/arm/operators/op_lt.py' 2025-06-05T23:22:14.6515914Z adding 'executorch/backends/arm/operators/op_max_pool2d.py' 2025-06-05T23:22:14.6516092Z adding 'executorch/backends/arm/operators/op_maximum.py' 2025-06-05T23:22:14.6516304Z adding 'executorch/backends/arm/operators/op_minimum.py' 2025-06-05T23:22:14.6516451Z adding 'executorch/backends/arm/operators/op_mul.py' 2025-06-05T23:22:14.6516606Z adding 'executorch/backends/arm/operators/op_neg.py' 2025-06-05T23:22:14.6516768Z adding 'executorch/backends/arm/operators/op_permute.py' 2025-06-05T23:22:14.6516910Z adding 'executorch/backends/arm/operators/op_pow.py' 2025-06-05T23:22:14.6802624Z adding 'executorch/backends/arm/operators/op_reciprocal.py' 2025-06-05T23:22:14.6802975Z adding 'executorch/backends/arm/operators/op_repeat.py' 2025-06-05T23:22:14.6803559Z adding 'executorch/backends/arm/operators/op_rescale.py' 2025-06-05T23:22:14.6803810Z adding 'executorch/backends/arm/operators/op_rshift_tensor.py' 2025-06-05T23:22:14.6804028Z adding 'executorch/backends/arm/operators/op_rsqrt.py' 2025-06-05T23:22:14.6804204Z adding 'executorch/backends/arm/operators/op_sigmoid.py' 2025-06-05T23:22:14.6804401Z adding 'executorch/backends/arm/operators/op_sin.py' 2025-06-05T23:22:14.6804558Z adding 'executorch/backends/arm/operators/op_slice.py' 2025-06-05T23:22:14.6804758Z adding 'executorch/backends/arm/operators/op_sub.py' 2025-06-05T23:22:14.6804914Z adding 'executorch/backends/arm/operators/op_sum.py' 2025-06-05T23:22:14.6805066Z adding 'executorch/backends/arm/operators/op_table.py' 2025-06-05T23:22:14.6805214Z adding 'executorch/backends/arm/operators/op_tanh.py' 2025-06-05T23:22:14.6805376Z adding 'executorch/backends/arm/operators/op_to_copy.py' 2025-06-05T23:22:14.6805599Z adding 'executorch/backends/arm/operators/op_to_dim_order_copy.py' 2025-06-05T23:22:14.6805769Z adding 'executorch/backends/arm/operators/op_transpose.py' 2025-06-05T23:22:14.6805987Z adding 'executorch/backends/arm/operators/op_upsample_bilinear2d.py' 2025-06-05T23:22:14.6806210Z adding 'executorch/backends/arm/operators/op_upsample_nearest2d.py' 2025-06-05T23:22:14.6806465Z adding 'executorch/backends/arm/operators/op_view.py' 2025-06-05T23:22:14.6806643Z adding 'executorch/backends/arm/operators/op_where.py' 2025-06-05T23:22:14.6807002Z adding 'executorch/backends/arm/operators/operator_validation_utils.py' 2025-06-05T23:22:14.6807173Z adding 'executorch/backends/arm/operators/ops_binary.py' 2025-06-05T23:22:14.6807376Z adding 'executorch/backends/arm/operators/ops_identity.py' 2025-06-05T23:22:14.6807536Z adding 'executorch/backends/arm/operators/ops_unary.py' 2025-06-05T23:22:14.6807760Z adding 'executorch/backends/arm/quantizer/__init__.py' 2025-06-05T23:22:14.6807937Z adding 'executorch/backends/arm/quantizer/arm_quantizer.py' 2025-06-05T23:22:14.6808178Z adding 'executorch/backends/arm/quantizer/arm_quantizer_utils.py' 2025-06-05T23:22:14.6808451Z adding 'executorch/backends/arm/quantizer/quantization_annotator.py' 2025-06-05T23:22:14.6808696Z adding 'executorch/backends/arm/quantizer/quantization_config.py' 2025-06-05T23:22:14.6808879Z adding 'executorch/backends/arm/scripts/parse_test_names.py' 2025-06-05T23:22:14.6809029Z adding 'executorch/backends/arm/test/common.py' 2025-06-05T23:22:14.6809215Z adding 'executorch/backends/arm/test/conftest.py' 2025-06-05T23:22:14.6809364Z adding 'executorch/backends/arm/test/runner_utils.py' 2025-06-05T23:22:14.6809502Z adding 'executorch/backends/arm/test/test_model.py' 2025-06-05T23:22:14.6809733Z adding 'executorch/backends/arm/test/misc/test_bn_relu_folding_qat.py' 2025-06-05T23:22:14.6809942Z adding 'executorch/backends/arm/test/misc/test_custom_partition.py' 2025-06-05T23:22:14.6810123Z adding 'executorch/backends/arm/test/misc/test_debug_feats.py' 2025-06-05T23:22:14.6810342Z adding 'executorch/backends/arm/test/misc/test_dim_order_guards.py' 2025-06-05T23:22:14.6810549Z adding 'executorch/backends/arm/test/misc/test_lifted_tensor.py' 2025-06-05T23:22:14.6810820Z adding 'executorch/backends/arm/test/misc/test_model_evaluator.py' 2025-06-05T23:22:14.6811091Z adding 'executorch/backends/arm/test/misc/test_multiple_delegates.py' 2025-06-05T23:22:14.6811297Z adding 'executorch/backends/arm/test/misc/test_multiple_outputs.py' 2025-06-05T23:22:14.6811589Z adding 'executorch/backends/arm/test/misc/test_non_persistent_buffers.py' 2025-06-05T23:22:14.6811894Z adding 'executorch/backends/arm/test/misc/test_partition_decomposed_quantized_ops.py' 2025-06-05T23:22:14.6812072Z adding 'executorch/backends/arm/test/misc/test_tosa_spec.py' 2025-06-05T23:22:14.6812259Z adding 'executorch/backends/arm/test/models/test_conformer.py' 2025-06-05T23:22:14.6812459Z adding 'executorch/backends/arm/test/models/test_deit_tiny_arm.py' 2025-06-05T23:22:14.6812713Z adding 'executorch/backends/arm/test/models/test_dl3_arm.py' 2025-06-05T23:22:14.6812879Z adding 'executorch/backends/arm/test/models/test_llama.py' 2025-06-05T23:22:14.6813071Z adding 'executorch/backends/arm/test/models/test_lstm_arm.py' 2025-06-05T23:22:14.6813309Z adding 'executorch/backends/arm/test/models/test_mobilenet_v2_arm.py' 2025-06-05T23:22:14.6813603Z adding 'executorch/backends/arm/test/models/test_mobilenet_v3_arm.py' 2025-06-05T23:22:14.6813809Z adding 'executorch/backends/arm/test/models/test_nn_functional.py' 2025-06-05T23:22:14.6814011Z adding 'executorch/backends/arm/test/models/test_nn_modules.py' 2025-06-05T23:22:14.6814237Z adding 'executorch/backends/arm/test/models/test_torch_functions.py' 2025-06-05T23:22:14.6814448Z adding 'executorch/backends/arm/test/models/test_w2l_arm.py' 2025-06-05T23:22:14.6814598Z adding 'executorch/backends/arm/test/ops/test_abs.py' 2025-06-05T23:22:14.6814761Z adding 'executorch/backends/arm/test/ops/test_add.py' 2025-06-05T23:22:14.6814940Z adding 'executorch/backends/arm/test/ops/test_alias_copy.py' 2025-06-05T23:22:14.6815094Z adding 'executorch/backends/arm/test/ops/test_amax.py' 2025-06-05T23:22:14.6815257Z adding 'executorch/backends/arm/test/ops/test_amin.py' 2025-06-05T23:22:14.6815402Z adding 'executorch/backends/arm/test/ops/test_any.py' 2025-06-05T23:22:14.6815617Z adding 'executorch/backends/arm/test/ops/test_arange.py' 2025-06-05T23:22:14.6815777Z adding 'executorch/backends/arm/test/ops/test_at.py' 2025-06-05T23:22:14.6815967Z adding 'executorch/backends/arm/test/ops/test_avg_pool2d.py' 2025-06-05T23:22:14.6816197Z adding 'executorch/backends/arm/test/ops/test_batch_norm.py' 2025-06-05T23:22:14.6816406Z adding 'executorch/backends/arm/test/ops/test_bitwise.py' 2025-06-05T23:22:14.6816566Z adding 'executorch/backends/arm/test/ops/test_bmm.py' 2025-06-05T23:22:14.6816711Z adding 'executorch/backends/arm/test/ops/test_cat.py' 2025-06-05T23:22:14.6816887Z adding 'executorch/backends/arm/test/ops/test_clamp.py' 2025-06-05T23:22:14.6817105Z adding 'executorch/backends/arm/test/ops/test_clone.py' 2025-06-05T23:22:14.6817305Z adding 'executorch/backends/arm/test/ops/test_constant_pad_nd.py' 2025-06-05T23:22:14.6817464Z adding 'executorch/backends/arm/test/ops/test_conv1d.py' 2025-06-05T23:22:14.6817636Z adding 'executorch/backends/arm/test/ops/test_conv2d.py' 2025-06-05T23:22:14.6817794Z adding 'executorch/backends/arm/test/ops/test_conv3d.py' 2025-06-05T23:22:14.6817974Z adding 'executorch/backends/arm/test/ops/test_conv_combos.py' 2025-06-05T23:22:14.6818212Z adding 'executorch/backends/arm/test/ops/test_conv_constant_pad_nd.py' 2025-06-05T23:22:14.6818357Z adding 'executorch/backends/arm/test/ops/test_cos.py' 2025-06-05T23:22:14.6818554Z adding 'executorch/backends/arm/test/ops/test_depthwise_conv.py' 2025-06-05T23:22:14.6818753Z adding 'executorch/backends/arm/test/ops/test_div.py' 2025-06-05T23:22:14.6818946Z adding 'executorch/backends/arm/test/ops/test_eq.py' 2025-06-05T23:22:14.6819098Z adding 'executorch/backends/arm/test/ops/test_erf.py' 2025-06-05T23:22:14.6819244Z adding 'executorch/backends/arm/test/ops/test_exp.py' 2025-06-05T23:22:14.6819461Z adding 'executorch/backends/arm/test/ops/test_expand.py' 2025-06-05T23:22:14.6819663Z adding 'executorch/backends/arm/test/ops/test_eye.py' 2025-06-05T23:22:14.6819833Z adding 'executorch/backends/arm/test/ops/test_full.py' 2025-06-05T23:22:14.6819997Z adding 'executorch/backends/arm/test/ops/test_ge.py' 2025-06-05T23:22:14.6820151Z adding 'executorch/backends/arm/test/ops/test_gelu.py' 2025-06-05T23:22:14.6820329Z adding 'executorch/backends/arm/test/ops/test_group_norm.py' 2025-06-05T23:22:14.6820472Z adding 'executorch/backends/arm/test/ops/test_gt.py' 2025-06-05T23:22:14.6820672Z adding 'executorch/backends/arm/test/ops/test_hardsigmoid.py' 2025-06-05T23:22:14.6820848Z adding 'executorch/backends/arm/test/ops/test_hardswish.py' 2025-06-05T23:22:14.6821017Z adding 'executorch/backends/arm/test/ops/test_hardtanh.py' 2025-06-05T23:22:14.6821268Z adding 'executorch/backends/arm/test/ops/test_layer_norm.py' 2025-06-05T23:22:14.6821456Z adding 'executorch/backends/arm/test/ops/test_le.py' 2025-06-05T23:22:14.6821720Z adding 'executorch/backends/arm/test/ops/test_leaky_relu.py' 2025-06-05T23:22:14.6821993Z adding 'executorch/backends/arm/test/ops/test_linalg_vector_norm.py' 2025-06-05T23:22:14.6822155Z adding 'executorch/backends/arm/test/ops/test_linear.py' 2025-06-05T23:22:14.6822305Z adding 'executorch/backends/arm/test/ops/test_log.py' 2025-06-05T23:22:14.6822531Z adding 'executorch/backends/arm/test/ops/test_logical.py' 2025-06-05T23:22:14.6822727Z adding 'executorch/backends/arm/test/ops/test_logsoftmax.py' 2025-06-05T23:22:14.6822890Z adding 'executorch/backends/arm/test/ops/test_lshift.py' 2025-06-05T23:22:14.6823035Z adding 'executorch/backends/arm/test/ops/test_lt.py' 2025-06-05T23:22:14.6823210Z adding 'executorch/backends/arm/test/ops/test_matmul.py' 2025-06-05T23:22:14.6823383Z adding 'executorch/backends/arm/test/ops/test_max_pool.py' 2025-06-05T23:22:14.6823548Z adding 'executorch/backends/arm/test/ops/test_maximum.py' 2025-06-05T23:22:14.6823731Z adding 'executorch/backends/arm/test/ops/test_mean_dim.py' 2025-06-05T23:22:14.6823895Z adding 'executorch/backends/arm/test/ops/test_minimum.py' 2025-06-05T23:22:14.6824132Z adding 'executorch/backends/arm/test/ops/test_mm.py' 2025-06-05T23:22:14.6824326Z adding 'executorch/backends/arm/test/ops/test_mul.py' 2025-06-05T23:22:14.6824516Z adding 'executorch/backends/arm/test/ops/test_ne.py' 2025-06-05T23:22:14.6824735Z adding 'executorch/backends/arm/test/ops/test_neg.py' 2025-06-05T23:22:14.6824940Z adding 'executorch/backends/arm/test/ops/test_ones.py' 2025-06-05T23:22:14.6825148Z adding 'executorch/backends/arm/test/ops/test_permute.py' 2025-06-05T23:22:14.6825295Z adding 'executorch/backends/arm/test/ops/test_pow.py' 2025-06-05T23:22:14.6825475Z adding 'executorch/backends/arm/test/ops/test_reciprocal.py' 2025-06-05T23:22:14.6825722Z adding 'executorch/backends/arm/test/ops/test_relu.py' 2025-06-05T23:22:14.6825883Z adding 'executorch/backends/arm/test/ops/test_repeat.py' 2025-06-05T23:22:14.6826045Z adding 'executorch/backends/arm/test/ops/test_rshift.py' 2025-06-05T23:22:14.6826202Z adding 'executorch/backends/arm/test/ops/test_rsqrt.py' 2025-06-05T23:22:14.6826521Z adding 'executorch/backends/arm/test/ops/test_scalar_tensor.py' 2025-06-05T23:22:14.6826717Z adding 'executorch/backends/arm/test/ops/test_scalars.py' 2025-06-05T23:22:14.6826898Z adding 'executorch/backends/arm/test/ops/test_sdpa.py' 2025-06-05T23:22:14.6827210Z adding 'executorch/backends/arm/test/ops/test_select.py' 2025-06-05T23:22:14.6827605Z adding 'executorch/backends/arm/test/ops/test_sigmoid.py' 2025-06-05T23:22:14.6827846Z adding 'executorch/backends/arm/test/ops/test_sigmoid_16bit.py' 2025-06-05T23:22:14.6828176Z adding 'executorch/backends/arm/test/ops/test_sigmoid_32bit.py' 2025-06-05T23:22:14.6828412Z adding 'executorch/backends/arm/test/ops/test_silu.py' 2025-06-05T23:22:14.6828594Z adding 'executorch/backends/arm/test/ops/test_sin.py' 2025-06-05T23:22:14.6828799Z adding 'executorch/backends/arm/test/ops/test_slice.py' 2025-06-05T23:22:14.6829058Z adding 'executorch/backends/arm/test/ops/test_softmax.py' 2025-06-05T23:22:14.6829282Z adding 'executorch/backends/arm/test/ops/test_split.py' 2025-06-05T23:22:14.6829464Z adding 'executorch/backends/arm/test/ops/test_sqrt.py' 2025-06-05T23:22:14.6829657Z adding 'executorch/backends/arm/test/ops/test_squeeze.py' 2025-06-05T23:22:14.6829937Z adding 'executorch/backends/arm/test/ops/test_sub.py' 2025-06-05T23:22:14.7062628Z adding 'executorch/backends/arm/test/ops/test_sum.py' 2025-06-05T23:22:14.7063109Z adding 'executorch/backends/arm/test/ops/test_tanh.py' 2025-06-05T23:22:14.7063458Z adding 'executorch/backends/arm/test/ops/test_to_copy.py' 2025-06-05T23:22:14.7063656Z adding 'executorch/backends/arm/test/ops/test_unary.py' 2025-06-05T23:22:14.7064108Z adding 'executorch/backends/arm/test/ops/test_unsqueeze.py' 2025-06-05T23:22:14.7064461Z adding 'executorch/backends/arm/test/ops/test_upsample_bilinear2d.py' 2025-06-05T23:22:14.7064728Z adding 'executorch/backends/arm/test/ops/test_upsample_nearest2d.py' 2025-06-05T23:22:14.7064949Z adding 'executorch/backends/arm/test/ops/test_var.py' 2025-06-05T23:22:14.7065293Z adding 'executorch/backends/arm/test/ops/test_view.py' 2025-06-05T23:22:14.7065587Z adding 'executorch/backends/arm/test/ops/test_where.py' 2025-06-05T23:22:14.7065835Z adding 'executorch/backends/arm/test/ops/test_zeros.py' 2025-06-05T23:22:14.7066270Z adding 'executorch/backends/arm/test/passes/test_broadcast_args_pass.py' 2025-06-05T23:22:14.7066534Z adding 'executorch/backends/arm/test/passes/test_cast_int64_pass.py' 2025-06-05T23:22:14.7079732Z adding 'executorch/backends/arm/test/passes/test_convert_expand_copy_to_repeat.py' 2025-06-05T23:22:14.7080127Z adding 'executorch/backends/arm/test/passes/test_convert_int_pow_to_muls.py' 2025-06-05T23:22:14.7080417Z adding 'executorch/backends/arm/test/passes/test_convert_split_to_slice.py' 2025-06-05T23:22:14.7080704Z adding 'executorch/backends/arm/test/passes/test_convert_to_clamp.py' 2025-06-05T23:22:14.7081050Z adding 'executorch/backends/arm/test/passes/test_decompose_cosine_similarity_pass.py' 2025-06-05T23:22:14.7081590Z adding 'executorch/backends/arm/test/passes/test_decompose_div_pass.py' 2025-06-05T23:22:14.7081888Z adding 'executorch/backends/arm/test/passes/test_decompose_layernorm_pass.py' 2025-06-05T23:22:14.7082248Z adding 'executorch/backends/arm/test/passes/test_decompose_linalg_vector_norm_pass.py' 2025-06-05T23:22:14.7082495Z adding 'executorch/backends/arm/test/passes/test_decompose_meandim_pass.py' 2025-06-05T23:22:14.7082791Z adding 'executorch/backends/arm/test/passes/test_decompose_softmax_pass.py' 2025-06-05T23:22:14.7083109Z adding 'executorch/backends/arm/test/passes/test_decompose_var_pass.py' 2025-06-05T23:22:14.7083375Z adding 'executorch/backends/arm/test/passes/test_fold_qdq_pass.py' 2025-06-05T23:22:14.7083622Z adding 'executorch/backends/arm/test/passes/test_fuse_batchnorm_pass.py' 2025-06-05T23:22:14.7083863Z adding 'executorch/backends/arm/test/passes/test_fuse_constant_ops_pass.py' 2025-06-05T23:22:14.7084213Z adding 'executorch/backends/arm/test/passes/test_fuse_equal_placeholders_ops_pass.py' 2025-06-05T23:22:14.7084464Z adding 'executorch/backends/arm/test/passes/test_insert_table_ops_pass.py' 2025-06-05T23:22:14.7084698Z adding 'executorch/backends/arm/test/passes/test_ioquantization_pass.py' 2025-06-05T23:22:14.7084916Z adding 'executorch/backends/arm/test/passes/test_remove_clone_pass.py' 2025-06-05T23:22:14.7085116Z adding 'executorch/backends/arm/test/passes/test_rescale_pass.py' 2025-06-05T23:22:14.7085401Z adding 'executorch/backends/arm/test/passes/test_unsqueeze_before_repeat_pass.py' 2025-06-05T23:22:14.7085688Z adding 'executorch/backends/arm/test/quantizer/test_generic_annotater.py' 2025-06-05T23:22:14.7085972Z adding 'executorch/backends/arm/test/tester/__init__.py' 2025-06-05T23:22:14.7086204Z adding 'executorch/backends/arm/test/tester/analyze_output_utils.py' 2025-06-05T23:22:14.7086373Z adding 'executorch/backends/arm/test/tester/arm_tester.py' 2025-06-05T23:22:14.7086561Z adding 'executorch/backends/arm/test/tester/test_pipeline.py' 2025-06-05T23:22:14.7086825Z adding 'executorch/backends/arm/test/tosautil/__init__.py' 2025-06-05T23:22:14.7087107Z adding 'executorch/backends/arm/third-party/serialization_lib/setup.py' 2025-06-05T23:22:14.7087435Z adding 'executorch/backends/arm/third-party/serialization_lib/python/serializer/__init__.py' 2025-06-05T23:22:14.7087846Z adding 'executorch/backends/arm/third-party/serialization_lib/python/serializer/tosa_serializer.py' 2025-06-05T23:22:14.7088363Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ArithmeticRightShiftAttribute.py' 2025-06-05T23:22:14.7088660Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Attribute.py' 2025-06-05T23:22:14.7089103Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/AxisAttribute.py' 2025-06-05T23:22:14.7089439Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ClampAttribute.py' 2025-06-05T23:22:14.7089889Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/CondIfAttribute.py' 2025-06-05T23:22:14.7090225Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ConvAttribute.py' 2025-06-05T23:22:14.7090665Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/CustomAttribute.py' 2025-06-05T23:22:14.7090949Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/DType.py' 2025-06-05T23:22:14.7091294Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/FFTAttribute.py' 2025-06-05T23:22:14.7091727Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/FullyConnectedAttribute.py' 2025-06-05T23:22:14.7092136Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/MatMulAttribute.py' 2025-06-05T23:22:14.7092444Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/MulAttribute.py' 2025-06-05T23:22:14.7092858Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/NegateAttribute.py' 2025-06-05T23:22:14.7093218Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Op.py' 2025-06-05T23:22:14.7093578Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/PadAttribute.py' 2025-06-05T23:22:14.7093977Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/PoolAttribute.py' 2025-06-05T23:22:14.7094307Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/RFFTAttribute.py' 2025-06-05T23:22:14.7094637Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/RescaleAttribute.py' 2025-06-05T23:22:14.7094973Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ReshapeAttribute.py' 2025-06-05T23:22:14.7095308Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeAttribute.py' 2025-06-05T23:22:14.7095606Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeMode.py' 2025-06-05T23:22:14.7095969Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/SliceAttribute.py' 2025-06-05T23:22:14.7096350Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TableAttribute.py' 2025-06-05T23:22:14.7096800Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TileAttribute.py' 2025-06-05T23:22:14.7097117Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaBasicBlock.py' 2025-06-05T23:22:14.7097420Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaGraph.py' 2025-06-05T23:22:14.7097764Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaOperator.py' 2025-06-05T23:22:14.7098171Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaRegion.py' 2025-06-05T23:22:14.7098528Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaTensor.py' 2025-06-05T23:22:14.7098879Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeAttribute.py' 2025-06-05T23:22:14.7099277Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeConvAttribute.py' 2025-06-05T23:22:14.7099607Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Version.py' 2025-06-05T23:22:14.7100072Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/WhileLoopAttribute.py' 2025-06-05T23:22:14.7100361Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/__init__.py' 2025-06-05T23:22:14.7100617Z adding 'executorch/backends/arm/third-party/serialization_lib/schema/tosa.fbs' 2025-06-05T23:22:14.7101056Z adding 'executorch/backends/arm/third-party/serialization_lib/test/scripts/test_npy_fileio.py' 2025-06-05T23:22:14.7101363Z adding 'executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit/xunit.py' 2025-06-05T23:22:14.7101766Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conanfile.py' 2025-06-05T23:22:14.7102288Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/pnpm-lock.yaml' 2025-06-05T23:22:14.7102752Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs/animal.fbs' 2025-06-05T23:22:14.7103216Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench.fbs' 2025-06-05T23:22:14.7103594Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/build.py' 2025-06-05T23:22:14.7104109Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package/conanfile.py' 2025-06-05T23:22:14.7104634Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/analysis_options.yaml' 2025-06-05T23:22:14.7105025Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/pubspec.yaml' 2025-06-05T23:22:14.7105491Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/bool_structs.fbs' 2025-06-05T23:22:14.7106123Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/list_of_enums.fbs' 2025-06-05T23:22:14.7106656Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/monster_test.fbs' 2025-06-05T23:22:14.7107063Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/hero.fbs' 2025-06-05T23:22:14.7107463Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/net.fbs' 2025-06-05T23:22:14.7107899Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/generate_goldens.py' 2025-06-05T23:22:14.7221369Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/golden_utils.py' 2025-06-05T23:22:14.7221852Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp/generate.py' 2025-06-05T23:22:14.7222285Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp/generate.py' 2025-06-05T23:22:14.7222689Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart/generate.py' 2025-06-05T23:22:14.7223083Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go/generate.py' 2025-06-05T23:22:14.7223533Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java/generate.py' 2025-06-05T23:22:14.7224000Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin/generate.py' 2025-06-05T23:22:14.7224553Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster/generate.py' 2025-06-05T23:22:14.7224971Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua/generate.py' 2025-06-05T23:22:14.7225442Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim/generate.py' 2025-06-05T23:22:14.7225998Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php/generate.py' 2025-06-05T23:22:14.7226402Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Galaxy.py' 2025-06-05T23:22:14.7226795Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Universe.py' 2025-06-05T23:22:14.7227447Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/__init__.py' 2025-06-05T23:22:14.7227972Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/generate.py' 2025-06-05T23:22:14.7228379Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust/generate.py' 2025-06-05T23:22:14.7228781Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema/basic.fbs' 2025-06-05T23:22:14.7229273Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift/generate.py' 2025-06-05T23:22:14.7229762Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts/generate.py' 2025-06-05T23:22:14.7230168Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/greeter.fbs' 2025-06-05T23:22:14.7230663Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/client.py' 2025-06-05T23:22:14.7231141Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/server.py' 2025-06-05T23:22:14.7231845Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloReply.py' 2025-06-05T23:22:14.7232414Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloRequest.py' 2025-06-05T23:22:14.7232933Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/__init__.py' 2025-06-05T23:22:14.7233565Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/greeter_grpc_fb.py' 2025-06-05T23:22:14.7234128Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter/greeter.fbs' 2025-06-05T23:22:14.7234526Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests/grpctest.py' 2025-06-05T23:22:14.7235089Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.py' 2025-06-05T23:22:14.7235734Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.py' 2025-06-05T23:22:14.7236200Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/__init__.py' 2025-06-05T23:22:14.7236704Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.py' 2025-06-05T23:22:14.7237196Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.py' 2025-06-05T23:22:14.7237870Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.py' 2025-06-05T23:22:14.7238528Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.py' 2025-06-05T23:22:14.7239067Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.py' 2025-06-05T23:22:14.7239658Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.py' 2025-06-05T23:22:14.7240258Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.py' 2025-06-05T23:22:14.7240776Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.py' 2025-06-05T23:22:14.7241347Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.py' 2025-06-05T23:22:14.7241999Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.py' 2025-06-05T23:22:14.7242545Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.py' 2025-06-05T23:22:14.7243061Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.py' 2025-06-05T23:22:14.7243541Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.py' 2025-06-05T23:22:14.7244107Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.py' 2025-06-05T23:22:14.7244715Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.py' 2025-06-05T23:22:14.7245210Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.py' 2025-06-05T23:22:14.7245770Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.py' 2025-06-05T23:22:14.7246440Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.py' 2025-06-05T23:22:14.7247096Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.py' 2025-06-05T23:22:14.7247582Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.py' 2025-06-05T23:22:14.7248085Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/__init__.py' 2025-06-05T23:22:14.7248734Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/monster_test_grpc_fb.py' 2025-06-05T23:22:14.7249381Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Any.py' 2025-06-05T23:22:14.7249938Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Color.py' 2025-06-05T23:22:14.7250571Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/NestedUnionTest.py' 2025-06-05T23:22:14.7251200Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Test.py' 2025-06-05T23:22:14.7251985Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py' 2025-06-05T23:22:14.7252553Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Vec3.py' 2025-06-05T23:22:14.7253228Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/__init__.py' 2025-06-05T23:22:14.7253801Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.py' 2025-06-05T23:22:14.7254327Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/__init__.py' 2025-06-05T23:22:14.7254926Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.py' 2025-06-05T23:22:14.7422078Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.py' 2025-06-05T23:22:14.7422768Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.py' 2025-06-05T23:22:14.7423265Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/__init__.py' 2025-06-05T23:22:14.7423850Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.py' 2025-06-05T23:22:14.7424459Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.py' 2025-06-05T23:22:14.7425047Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.py' 2025-06-05T23:22:14.7425722Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.py' 2025-06-05T23:22:14.7426290Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/__init__.py' 2025-06-05T23:22:14.7426908Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.py' 2025-06-05T23:22:14.7427395Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/__init__.py' 2025-06-05T23:22:14.7427957Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.py' 2025-06-05T23:22:14.7428493Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.py' 2025-06-05T23:22:14.7429011Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/__init__.py' 2025-06-05T23:22:14.7429562Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector/union_vector.fbs' 2025-06-05T23:22:14.7429956Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/__init__.py' 2025-06-05T23:22:14.7430339Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/py.typed' 2025-06-05T23:22:14.7430705Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/setup.py' 2025-06-05T23:22:14.7431137Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/__init__.py' 2025-06-05T23:22:14.7431583Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/_version.py' 2025-06-05T23:22:14.7432016Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/builder.py' 2025-06-05T23:22:14.7432438Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/compat.py' 2025-06-05T23:22:14.7432879Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/encode.py' 2025-06-05T23:22:14.7433331Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/flexbuffers.py' 2025-06-05T23:22:14.7433785Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/number_types.py' 2025-06-05T23:22:14.7434221Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/packer.py' 2025-06-05T23:22:14.7434638Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/table.py' 2025-06-05T23:22:14.7435150Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/util.py' 2025-06-05T23:22:14.7435703Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/AdvancedFeatures.py' 2025-06-05T23:22:14.7436198Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/BaseType.py' 2025-06-05T23:22:14.7436668Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Enum.py' 2025-06-05T23:22:14.7437169Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/EnumVal.py' 2025-06-05T23:22:14.7437644Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Field.py' 2025-06-05T23:22:14.7438133Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/KeyValue.py' 2025-06-05T23:22:14.7438630Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Object.py' 2025-06-05T23:22:14.7439163Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/RPCCall.py' 2025-06-05T23:22:14.7439643Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Schema.py' 2025-06-05T23:22:14.7440158Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/SchemaFile.py' 2025-06-05T23:22:14.7440642Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Service.py' 2025-06-05T23:22:14.7441105Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Type.py' 2025-06-05T23:22:14.7441608Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/__init__.py' 2025-06-05T23:22:14.7442020Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection/reflection.fbs' 2025-06-05T23:22:14.7442411Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/monster.fbs' 2025-06-05T23:22:14.7442827Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/sample_binary.py' 2025-06-05T23:22:14.7443347Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py' 2025-06-05T23:22:14.7443828Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check_generate_code.py' 2025-06-05T23:22:14.7444244Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_code.py' 2025-06-05T23:22:14.7444698Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_grpc_examples.py' 2025-06-05T23:22:14.7445060Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/util.py' 2025-06-05T23:22:14.7445462Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap/snapcraft.yaml' 2025-06-05T23:22:14.7445860Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MutatingBool.fbs' 2025-06-05T23:22:14.7446261Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/alignment_test.fbs' 2025-06-05T23:22:14.7446664Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/arrays_test.fbs' 2025-06-05T23:22:14.7447085Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/dictionary_lookup.fbs' 2025-06-05T23:22:14.7447606Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/included_test.fbs' 2025-06-05T23:22:14.7448016Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/includer_test.fbs' 2025-06-05T23:22:14.7448411Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/keyword_test.fbs' 2025-06-05T23:22:14.7448848Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_extra.fbs' 2025-06-05T23:22:14.7449284Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test.fbs' 2025-06-05T23:22:14.7449733Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test_generated.py' 2025-06-05T23:22:14.7450129Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/more_defaults.fbs' 2025-06-05T23:22:14.7450524Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nan_inf_test.fbs' 2025-06-05T23:22:14.7450980Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_inline_table_test.fbs' 2025-06-05T23:22:14.7451508Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_type_test.fbs' 2025-06-05T23:22:14.7451926Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_union_test.fbs' 2025-06-05T23:22:14.7452345Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars.fbs' 2025-06-05T23:22:14.7452789Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/private_annotation_test.fbs' 2025-06-05T23:22:14.7605093Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_flexbuffers_test.py' 2025-06-05T23:22:14.7605722Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_test.py' 2025-06-05T23:22:14.7606257Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/required_strings.fbs' 2025-06-05T23:22:14.7606674Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/rust_namer_test.fbs' 2025-06-05T23:22:14.7607113Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/test.fbs' 2025-06-05T23:22:14.7607594Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/type_field_collsion.fbs' 2025-06-05T23:22:14.7608131Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_underlying_type_test.fbs' 2025-06-05T23:22:14.7608568Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_value_collision.fbs' 2025-06-05T23:22:14.7608974Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/vector_has_test.fbs' 2025-06-05T23:22:14.7609539Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/test_64bit.fbs' 2025-06-05T23:22:14.7609992Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v1.fbs' 2025-06-05T23:22:14.7610414Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v2.fbs' 2025-06-05T23:22:14.7610885Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/InParentNamespace.py' 2025-06-05T23:22:14.7611362Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/MonsterExtra.py' 2025-06-05T23:22:14.7611853Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/__init__.py' 2025-06-05T23:22:14.7612304Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Ability.py' 2025-06-05T23:22:14.7612856Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Any.py' 2025-06-05T23:22:14.7613436Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.py' 2025-06-05T23:22:14.7614038Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.py' 2025-06-05T23:22:14.7614498Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.py' 2025-06-05T23:22:14.7615003Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.py' 2025-06-05T23:22:14.7615529Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Color.py' 2025-06-05T23:22:14.7615977Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/LongEnum.py' 2025-06-05T23:22:14.7616413Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Monster.py' 2025-06-05T23:22:14.7617116Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.py' 2025-06-05T23:22:14.7617544Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Race.py' 2025-06-05T23:22:14.7617996Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Referrable.py' 2025-06-05T23:22:14.7618590Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Stat.py' 2025-06-05T23:22:14.7619172Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.py' 2025-06-05T23:22:14.7619715Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.py' 2025-06-05T23:22:14.7620149Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Test.py' 2025-06-05T23:22:14.7620648Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestEnum.py' 2025-06-05T23:22:14.7621298Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.py' 2025-06-05T23:22:14.7621772Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.py' 2025-06-05T23:22:14.7622216Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Vec3.py' 2025-06-05T23:22:14.7622718Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/__init__.py' 2025-06-05T23:22:14.7623287Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/monster_test_grpc_fb.py' 2025-06-05T23:22:14.7623770Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Any.py' 2025-06-05T23:22:14.7624257Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Color.py' 2025-06-05T23:22:14.7624820Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/NestedUnionTest.py' 2025-06-05T23:22:14.7625466Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Test.py' 2025-06-05T23:22:14.7626135Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py' 2025-06-05T23:22:14.7626714Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Vec3.py' 2025-06-05T23:22:14.7627282Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/__init__.py' 2025-06-05T23:22:14.7627787Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/Monster.py' 2025-06-05T23:22:14.7628281Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/__init__.py' 2025-06-05T23:22:14.7628777Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary.fbs' 2025-06-05T23:22:14.7629293Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary_old.fbs' 2025-06-05T23:22:14.7629824Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/generate_annotations.py' 2025-06-05T23:22:14.7630344Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v1.fbs' 2025-06-05T23:22:14.7631002Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v2.fbs' 2025-06-05T23:22:14.7631477Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/enum_val_attributes.fbs' 2025-06-05T23:22:14.7631963Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_cpp_tests.py' 2025-06-05T23:22:14.7632471Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_kotlin_tests.py' 2025-06-05T23:22:14.7632958Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_schema_tests.py' 2025-06-05T23:22:14.7633369Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_test.py' 2025-06-05T23:22:14.7633793Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_ts_tests.py' 2025-06-05T23:22:14.7634244Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo.fbs' 2025-06-05T23:22:14.7634775Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo_with_ns.fbs' 2025-06-05T23:22:14.7635160Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/main.py' 2025-06-05T23:22:14.7635568Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar.fbs' 2025-06-05T23:22:14.7636004Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_foo.fbs' 2025-06-05T23:22:14.7636495Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_ns.fbs' 2025-06-05T23:22:14.7637009Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz.fbs' 2025-06-05T23:22:14.7637471Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz_with_ns.fbs' 2025-06-05T23:22:14.7637930Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/include_test1.fbs' 2025-06-05T23:22:14.7805516Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/order.fbs' 2025-06-05T23:22:14.7806151Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/include_test2.fbs' 2025-06-05T23:22:14.7806634Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/no_namespace.fbs' 2025-06-05T23:22:14.7807273Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field/key_field_sample.fbs' 2025-06-05T23:22:14.7807713Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums/enums.fbs' 2025-06-05T23:22:14.7808187Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test1.fbs' 2025-06-05T23:22:14.7808669Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test2.fbs' 2025-06-05T23:22:14.7809132Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test1.fbs' 2025-06-05T23:22:14.7809589Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test2.fbs' 2025-06-05T23:22:14.7810090Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test1.fbs' 2025-06-05T23:22:14.7810593Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test2.fbs' 2025-06-05T23:22:14.7811223Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.py' 2025-06-05T23:22:14.7811803Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.py' 2025-06-05T23:22:14.7812401Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.py' 2025-06-05T23:22:14.7812975Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/__init__.py' 2025-06-05T23:22:14.7813587Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.py' 2025-06-05T23:22:14.7814264Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.py' 2025-06-05T23:22:14.7814922Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py' 2025-06-05T23:22:14.7815562Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.py' 2025-06-05T23:22:14.7816169Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py' 2025-06-05T23:22:14.7816679Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.py' 2025-06-05T23:22:14.7817234Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/__init__.py' 2025-06-05T23:22:14.7817837Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test1.fbs' 2025-06-05T23:22:14.7818455Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test2.fbs' 2025-06-05T23:22:14.7819010Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test3.fbs' 2025-06-05T23:22:14.7819539Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim/testnim.py' 2025-06-05T23:22:14.7820094Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/OptionalByte.py' 2025-06-05T23:22:14.7820591Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.py' 2025-06-05T23:22:14.7821120Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/__init__.py' 2025-06-05T23:22:14.7821637Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test.golden.fbs' 2025-06-05T23:22:14.7822113Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_id.golden.fbs' 2025-06-05T23:22:14.7822670Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include.golden.fbs' 2025-06-05T23:22:14.7823221Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include_id.golden.fbs' 2025-06-05T23:22:14.7823719Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix.golden.fbs' 2025-06-05T23:22:14.7824230Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix_id.golden.fbs' 2025-06-05T23:22:14.7824766Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union.golden.fbs' 2025-06-05T23:22:14.7825350Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_id.golden.fbs' 2025-06-05T23:22:14.7825941Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include.golden.fbs' 2025-06-05T23:22:14.7826531Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include_id.golden.fbs' 2025-06-05T23:22:14.7827095Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix.golden.fbs' 2025-06-05T23:22:14.7827665Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix_id.golden.fbs' 2025-06-05T23:22:14.7828245Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_import.fbs' 2025-06-05T23:22:14.7828875Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_no_include.fbs' 2025-06-05T23:22:14.7829491Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers/fuzzer.fbs' 2025-06-05T23:22:14.7829988Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/TypeScriptTest.py' 2025-06-05T23:22:14.7830439Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/typescript_keywords.fbs' 2025-06-05T23:22:14.7831040Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex/arrays_test_complex.fbs' 2025-06-05T23:22:14.7831603Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/one.fbs' 2025-06-05T23:22:14.7832187Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/pnpm-lock.yaml' 2025-06-05T23:22:14.7832673Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/two.fbs' 2025-06-05T23:22:14.7833227Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_include.fbs' 2025-06-05T23:22:14.7833820Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_transitive_include.fbs' 2025-06-05T23:22:14.7834277Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector/union_vector.fbs' 2025-06-05T23:22:14.7834582Z adding 'executorch/backends/arm/tosa/schemas/tosa_0.80.fbs' 2025-06-05T23:22:14.7834751Z adding 'executorch/backends/arm/tosa/schemas/tosa_1.0.fbs' 2025-06-05T23:22:14.7834931Z adding 'executorch/backends/arm/util/arm_model_evaluator.py' 2025-06-05T23:22:14.7835090Z adding 'executorch/backends/cadence/aot/__init__.py' 2025-06-05T23:22:14.7835301Z adding 'executorch/backends/cadence/aot/compiler.py' 2025-06-05T23:22:14.7835469Z adding 'executorch/backends/cadence/aot/compiler_utils.py' 2025-06-05T23:22:14.7835635Z adding 'executorch/backends/cadence/aot/decompose_ops.py' 2025-06-05T23:22:14.7835816Z adding 'executorch/backends/cadence/aot/export_example.py' 2025-06-05T23:22:14.7836033Z adding 'executorch/backends/cadence/aot/functions.yaml' 2025-06-05T23:22:14.7836235Z adding 'executorch/backends/cadence/aot/functions_fusion_g3.yaml' 2025-06-05T23:22:14.7836428Z adding 'executorch/backends/cadence/aot/functions_hifi.yaml' 2025-06-05T23:22:14.7836577Z adding 'executorch/backends/cadence/aot/fuse_ops.py' 2025-06-05T23:22:14.7836799Z adding 'executorch/backends/cadence/aot/graph_builder.py' 2025-06-05T23:22:14.7836998Z adding 'executorch/backends/cadence/aot/memory_constraints.py' 2025-06-05T23:22:14.7837169Z adding 'executorch/backends/cadence/aot/memory_planning.py' 2025-06-05T23:22:14.7837403Z adding 'executorch/backends/cadence/aot/ops_registrations.py' 2025-06-05T23:22:14.7837562Z adding 'executorch/backends/cadence/aot/pass_utils.py' 2025-06-05T23:22:14.7837773Z adding 'executorch/backends/cadence/aot/passes.py' 2025-06-05T23:22:14.8186866Z adding 'executorch/backends/cadence/aot/ref_implementations.py' 2025-06-05T23:22:14.8187207Z adding 'executorch/backends/cadence/aot/remove_ops.py' 2025-06-05T23:22:14.8187524Z adding 'executorch/backends/cadence/aot/reorder_ops.py' 2025-06-05T23:22:14.8187810Z adding 'executorch/backends/cadence/aot/replace_ops.py' 2025-06-05T23:22:14.8188077Z adding 'executorch/backends/cadence/aot/simplify_ops.py' 2025-06-05T23:22:14.8188339Z adding 'executorch/backends/cadence/aot/utils.py' 2025-06-05T23:22:14.8188694Z adding 'executorch/backends/cadence/aot/quantizer/fusion_pass.py' 2025-06-05T23:22:14.8189038Z adding 'executorch/backends/cadence/aot/quantizer/patterns.py' 2025-06-05T23:22:14.8189466Z adding 'executorch/backends/cadence/aot/quantizer/quantizer.py' 2025-06-05T23:22:14.8189779Z adding 'executorch/backends/cadence/aot/quantizer/utils.py' 2025-06-05T23:22:14.8190217Z adding 'executorch/backends/cadence/aot/tests/test_decompose_ops_passes.py' 2025-06-05T23:22:14.8190621Z adding 'executorch/backends/cadence/aot/tests/test_fusion_ops_passes.py' 2025-06-05T23:22:14.8191016Z adding 'executorch/backends/cadence/aot/tests/test_graph_builder.py' 2025-06-05T23:22:14.8191414Z adding 'executorch/backends/cadence/aot/tests/test_memory_passes.py' 2025-06-05T23:22:14.8191813Z adding 'executorch/backends/cadence/aot/tests/test_pass_filter.py' 2025-06-05T23:22:14.8192248Z adding 'executorch/backends/cadence/aot/tests/test_remove_ops_passes.py' 2025-06-05T23:22:14.8192593Z adding 'executorch/backends/cadence/aot/tests/test_reorder_ops_passes.py' 2025-06-05T23:22:14.8192845Z adding 'executorch/backends/cadence/aot/tests/test_replace_ops_passes.py' 2025-06-05T23:22:14.8193097Z adding 'executorch/backends/cadence/aot/tests/test_simplify_ops_passes.py' 2025-06-05T23:22:14.8193262Z adding 'executorch/backends/cadence/runtime/__init__.py' 2025-06-05T23:22:14.8193423Z adding 'executorch/backends/cadence/runtime/executor.py' 2025-06-05T23:22:14.8193699Z adding 'executorch/backends/cadence/runtime/runtime.py' 2025-06-05T23:22:14.8193966Z adding 'executorch/backends/cadence/runtime/utils.py' 2025-06-05T23:22:14.8194251Z adding 'executorch/backends/cadence/utils/facto_util.py' 2025-06-05T23:22:14.8194557Z adding 'executorch/backends/cadence/utils/gen_header.py' 2025-06-05T23:22:14.8194913Z adding 'executorch/backends/cadence/utils/post_compilation.py' 2025-06-05T23:22:14.8195479Z adding 'executorch/backends/cadence/utils/FACTO/setup.py' 2025-06-05T23:22:14.8195796Z adding 'executorch/backends/cadence/utils/FACTO/calibrator/__init__.py' 2025-06-05T23:22:14.8196019Z adding 'executorch/backends/cadence/utils/FACTO/calibrator/runner.py' 2025-06-05T23:22:14.8196236Z adding 'executorch/backends/cadence/utils/FACTO/examples/example.py' 2025-06-05T23:22:14.8196612Z adding 'executorch/backends/cadence/utils/FACTO/examples/minimal_example.py' 2025-06-05T23:22:14.8197039Z adding 'executorch/backends/cadence/utils/FACTO/examples/random_seed.py' 2025-06-05T23:22:14.8197414Z adding 'executorch/backends/cadence/utils/FACTO/facto/__init__.py' 2025-06-05T23:22:14.8197893Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/__init__.py' 2025-06-05T23:22:14.8198440Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/__init__.py' 2025-06-05T23:22:14.8198961Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/engine.py' 2025-06-05T23:22:14.8199479Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/gen.py' 2025-06-05T23:22:14.8200044Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/__init__.py' 2025-06-05T23:22:14.8200531Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/engine.py' 2025-06-05T23:22:14.8200970Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/gen.py' 2025-06-05T23:22:14.8201265Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/type.py' 2025-06-05T23:22:14.8201560Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/__init__.py' 2025-06-05T23:22:14.8201844Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/engine.py' 2025-06-05T23:22:14.8202135Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/model.py' 2025-06-05T23:22:14.8202416Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/solve.py' 2025-06-05T23:22:14.8202799Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/__init__.py' 2025-06-05T23:22:14.8203291Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/model.py' 2025-06-05T23:22:14.8203812Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/__init__.py' 2025-06-05T23:22:14.8204397Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/random_manager.py' 2025-06-05T23:22:14.8204871Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/__init__.py' 2025-06-05T23:22:14.8205419Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/constants.py' 2025-06-05T23:22:14.8205924Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/gen.py' 2025-06-05T23:22:14.8206450Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/solve.py' 2025-06-05T23:22:14.8206966Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/space.py' 2025-06-05T23:22:14.8207490Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/type.py' 2025-06-05T23:22:14.8208018Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/utils.py' 2025-06-05T23:22:14.8208433Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/db.py' 2025-06-05T23:22:14.8208877Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/default.py' 2025-06-05T23:22:14.8209142Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/dtypes.py' 2025-06-05T23:22:14.8209393Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/function.py' 2025-06-05T23:22:14.8209693Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_engine.py' 2025-06-05T23:22:14.8210016Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_generator.py' 2025-06-05T23:22:14.8210336Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_attributes.py' 2025-06-05T23:22:14.8211064Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_generator.py' 2025-06-05T23:22:14.8211621Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_types.py' 2025-06-05T23:22:14.8212189Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_engine.py' 2025-06-05T23:22:14.8212656Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_solver.py' 2025-06-05T23:22:14.8212941Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_constraints.py' 2025-06-05T23:22:14.8213239Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_meta_arg_engine.py' 2025-06-05T23:22:14.8213506Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_specs.py' 2025-06-05T23:22:14.8213815Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_structural_engine.py' 2025-06-05T23:22:14.8214133Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_generation.py' 2025-06-05T23:22:14.8214451Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_solving.py' 2025-06-05T23:22:14.8214745Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_space.py' 2025-06-05T23:22:14.8215035Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_types.py' 2025-06-05T23:22:14.8215300Z adding 'executorch/backends/cortex_m/ops/operators.py' 2025-06-05T23:22:14.8215473Z adding 'executorch/backends/cortex_m/ops/operators.yaml' 2025-06-05T23:22:14.8215797Z adding 'executorch/backends/cortex_m/passes/replace_quant_nodes_pass.py' 2025-06-05T23:22:14.8216188Z adding 'executorch/backends/cortex_m/test/test_replace_quant_nodes.py' 2025-06-05T23:22:14.8216489Z adding 'executorch/backends/example/example_backend.py' 2025-06-05T23:22:14.8216821Z adding 'executorch/backends/example/example_partitioner.py' 2025-06-05T23:22:14.8217125Z adding 'executorch/backends/example/example_quantizer.py' 2025-06-05T23:22:14.8217478Z adding 'executorch/backends/example/test_example_delegate.py' 2025-06-05T23:22:14.8217942Z adding 'executorch/backends/example/example_backend_delegate_passes/merge_to_dim_pass.py' 2025-06-05T23:22:14.8218475Z adding 'executorch/backends/example/example_backend_delegate_passes/permute_memory_formats_pass.py' 2025-06-05T23:22:14.8218982Z adding 'executorch/backends/example/example_operators/adaptive_avg_pool2d.py' 2025-06-05T23:22:14.8219334Z adding 'executorch/backends/example/example_operators/add.py' 2025-06-05T23:22:14.8219702Z adding 'executorch/backends/example/example_operators/conv2d.py' 2025-06-05T23:22:14.8220094Z adding 'executorch/backends/example/example_operators/conv_relu.py' 2025-06-05T23:22:14.8220458Z adding 'executorch/backends/example/example_operators/dropout.py' 2025-06-05T23:22:14.8220829Z adding 'executorch/backends/example/example_operators/flatten.py' 2025-06-05T23:22:14.8221202Z adding 'executorch/backends/example/example_operators/linear.py' 2025-06-05T23:22:14.8221605Z adding 'executorch/backends/example/example_operators/op_base.py' 2025-06-05T23:22:14.8221941Z adding 'executorch/backends/example/example_operators/ops.py' 2025-06-05T23:22:14.8222223Z adding 'executorch/backends/example/example_operators/utils.py' 2025-06-05T23:22:14.8222400Z adding 'executorch/backends/mediatek/__init__.py' 2025-06-05T23:22:14.8222566Z adding 'executorch/backends/mediatek/partitioner.py' 2025-06-05T23:22:14.8222711Z adding 'executorch/backends/mediatek/preprocess.py' 2025-06-05T23:22:14.8222890Z adding 'executorch/backends/mediatek/_passes/__init__.py' 2025-06-05T23:22:14.8223285Z adding 'executorch/backends/mediatek/_passes/decompose_scaled_dot_product_attention.py' 2025-06-05T23:22:14.8223593Z adding 'executorch/backends/mediatek/quantizer/__init__.py' 2025-06-05T23:22:14.8223925Z adding 'executorch/backends/mediatek/quantizer/annotator.py' 2025-06-05T23:22:14.8224250Z adding 'executorch/backends/mediatek/quantizer/qconfig.py' 2025-06-05T23:22:14.8224717Z adding 'executorch/backends/mediatek/quantizer/quantizer.py' 2025-06-05T23:22:14.8225031Z adding 'executorch/backends/nxp/neutron_node_extraction.py' 2025-06-05T23:22:14.8225306Z adding 'executorch/backends/nxp/neutron_partitioner.py' 2025-06-05T23:22:14.8225471Z adding 'executorch/backends/nxp/neutron_pass_manager.py' 2025-06-05T23:22:14.8225716Z adding 'executorch/backends/nxp/nxp_backend.py' 2025-06-05T23:22:14.8225995Z adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_conv_pass.py' 2025-06-05T23:22:14.8226261Z adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_linear_pass.py' 2025-06-05T23:22:14.8226497Z adding 'executorch/backends/nxp/aten_passes/neutron_aten_pass_manager.py' 2025-06-05T23:22:14.8455391Z adding 'executorch/backends/nxp/backend/edge_helper.py' 2025-06-05T23:22:14.8455807Z adding 'executorch/backends/nxp/backend/edge_program_converter.py' 2025-06-05T23:22:14.8456209Z adding 'executorch/backends/nxp/backend/neutron_converter_manager.py' 2025-06-05T23:22:14.8456604Z adding 'executorch/backends/nxp/backend/node_format_inference.py' 2025-06-05T23:22:14.8456867Z adding 'executorch/backends/nxp/backend/ir/conversion_config.py' 2025-06-05T23:22:14.8457098Z adding 'executorch/backends/nxp/backend/ir/conversion_context.py' 2025-06-05T23:22:14.8457357Z adding 'executorch/backends/nxp/backend/ir/logger.py' 2025-06-05T23:22:14.8457937Z adding 'executorch/backends/nxp/backend/ir/tensor_formatting.py' 2025-06-05T23:22:14.8458324Z adding 'executorch/backends/nxp/backend/ir/converter/__init__.py' 2025-06-05T23:22:14.8458767Z adding 'executorch/backends/nxp/backend/ir/converter/node_converter.py' 2025-06-05T23:22:14.8459219Z adding 'executorch/backends/nxp/backend/ir/converter/quantization_utils.py' 2025-06-05T23:22:14.8459606Z adding 'executorch/backends/nxp/backend/ir/converter/tensor_utils.py' 2025-06-05T23:22:14.8460058Z adding 'executorch/backends/nxp/backend/ir/converter/builder/__init__.py' 2025-06-05T23:22:14.8460713Z adding 'executorch/backends/nxp/backend/ir/converter/builder/aten_model_builder_director.py' 2025-06-05T23:22:14.8461210Z adding 'executorch/backends/nxp/backend/ir/converter/builder/model_builder.py' 2025-06-05T23:22:14.8461836Z adding 'executorch/backends/nxp/backend/ir/converter/builder/quantization_verification.py' 2025-06-05T23:22:14.8462339Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/__init__.py' 2025-06-05T23:22:14.8462887Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/aten_translator.py' 2025-06-05T23:22:14.8463326Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/common.py' 2025-06-05T23:22:14.8463837Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/translator.py' 2025-06-05T23:22:14.8464366Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/__init__.py' 2025-06-05T23:22:14.8465183Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/__init__.py' 2025-06-05T23:22:14.8465981Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/addmm_converter.py' 2025-06-05T23:22:14.8466762Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/avg_pool_2d_converter.py' 2025-06-05T23:22:14.8467554Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/constant_pad_nd_converter.py' 2025-06-05T23:22:14.8468356Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/convolution_converter.py' 2025-06-05T23:22:14.8469128Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/max_pool_2d_converter.py' 2025-06-05T23:22:14.8469805Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mm_converter.py' 2025-06-05T23:22:14.8470622Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/permute_copy_converter.py' 2025-06-05T23:22:14.8471344Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_dequantize_converter.py' 2025-06-05T23:22:14.8472381Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_quantize_converter.py' 2025-06-05T23:22:14.8473109Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/relu_converter.py' 2025-06-05T23:22:14.8473645Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/softmax_converter.py' 2025-06-05T23:22:14.8474385Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/view_copy_converter.py' 2025-06-05T23:22:14.8474997Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/__init__.py' 2025-06-05T23:22:14.8475630Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/recurrent_utils.py' 2025-06-05T23:22:14.8476239Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reduce_utils.py' 2025-06-05T23:22:14.8476986Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reshape_transposition.py' 2025-06-05T23:22:14.8477310Z adding 'executorch/backends/nxp/backend/ir/lib/__init__.py' 2025-06-05T23:22:14.8477712Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ATan2Options.py' 2025-06-05T23:22:14.8478326Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AbsOptions.py' 2025-06-05T23:22:14.8478878Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ActivationFunctionType.py' 2025-06-05T23:22:14.8479290Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddNOptions.py' 2025-06-05T23:22:14.8479669Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddOptions.py' 2025-06-05T23:22:14.8480110Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMaxOptions.py' 2025-06-05T23:22:14.8480545Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMinOptions.py' 2025-06-05T23:22:14.8481070Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AssignVariableOptions.py' 2025-06-05T23:22:14.8481567Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchMatMulOptions.py' 2025-06-05T23:22:14.8482082Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchToSpaceNDOptions.py' 2025-06-05T23:22:14.8482743Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceLSTMOptions.py' 2025-06-05T23:22:14.8483388Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceRNNOptions.py' 2025-06-05T23:22:14.8483838Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitcastOptions.py' 2025-06-05T23:22:14.8484317Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitwiseXorOptions.py' 2025-06-05T23:22:14.8484829Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BroadcastToOptions.py' 2025-06-05T23:22:14.8485273Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BucketizeOptions.py' 2025-06-05T23:22:14.8485623Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Buffer.py' 2025-06-05T23:22:14.8486077Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOperator.py' 2025-06-05T23:22:14.8486540Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions.py' 2025-06-05T23:22:14.8486992Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions2.py' 2025-06-05T23:22:14.8487429Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOnceOptions.py' 2025-06-05T23:22:14.8487849Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOptions.py' 2025-06-05T23:22:14.8488255Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CastOptions.py' 2025-06-05T23:22:14.8488689Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CombinerType.py' 2025-06-05T23:22:14.8489243Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatEmbeddingsOptions.py' 2025-06-05T23:22:14.8489730Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatenationOptions.py' 2025-06-05T23:22:14.8490162Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv2DOptions.py' 2025-06-05T23:22:14.8490761Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv3DOptions.py' 2025-06-05T23:22:14.8491162Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CosOptions.py' 2025-06-05T23:22:14.8491569Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CumsumOptions.py' 2025-06-05T23:22:14.8492071Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomOptionsFormat.py' 2025-06-05T23:22:14.8492584Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomQuantization.py' 2025-06-05T23:22:14.8493032Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DensifyOptions.py' 2025-06-05T23:22:14.8493515Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthToSpaceOptions.py' 2025-06-05T23:22:14.8494066Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthwiseConv2DOptions.py' 2025-06-05T23:22:14.8494553Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DequantizeOptions.py' 2025-06-05T23:22:14.8494984Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DilateOptions.py' 2025-06-05T23:22:14.8495367Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionMetadata.py' 2025-06-05T23:22:14.8495601Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionType.py' 2025-06-05T23:22:14.8495817Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DivOptions.py' 2025-06-05T23:22:14.8496443Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DynamicUpdateSliceOptions.py' 2025-06-05T23:22:14.8497055Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/EmbeddingLookupSparseOptions.py' 2025-06-05T23:22:14.8497477Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/EqualOptions.py' 2025-06-05T23:22:14.8497863Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpOptions.py' 2025-06-05T23:22:14.8498222Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpandDimsOptions.py' 2025-06-05T23:22:14.8498668Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FakeQuantOptions.py' 2025-06-05T23:22:14.8499068Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FillOptions.py' 2025-06-05T23:22:14.8499570Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorDivOptions.py' 2025-06-05T23:22:14.8500020Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorModOptions.py' 2025-06-05T23:22:14.8500520Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptions.py' 2025-06-05T23:22:14.8501237Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptionsWeightsFormat.py' 2025-06-05T23:22:14.8501698Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherNdOptions.py' 2025-06-05T23:22:14.8502116Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherOptions.py' 2025-06-05T23:22:14.8502543Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GeluOptions.py' 2025-06-05T23:22:14.8503046Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterEqualOptions.py' 2025-06-05T23:22:14.8503500Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterOptions.py' 2025-06-05T23:22:14.8503970Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HardSwishOptions.py' 2025-06-05T23:22:14.8504469Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableFindOptions.py' 2025-06-05T23:22:14.8505015Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableImportOptions.py' 2025-06-05T23:22:14.8505495Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableOptions.py' 2025-06-05T23:22:14.8506066Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableSizeOptions.py' 2025-06-05T23:22:14.8693153Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/IfOptions.py' 2025-06-05T23:22:14.8693556Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Int32Vector.py' 2025-06-05T23:22:14.8694040Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/L2NormOptions.py' 2025-06-05T23:22:14.8694352Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionOptions.py' 2025-06-05T23:22:14.8694683Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionType.py' 2025-06-05T23:22:14.8695157Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMKernelType.py' 2025-06-05T23:22:14.8695429Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMOptions.py' 2025-06-05T23:22:14.8695680Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LeakyReluOptions.py' 2025-06-05T23:22:14.8695945Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessEqualOptions.py' 2025-06-05T23:22:14.8696163Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessOptions.py' 2025-06-05T23:22:14.8696582Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LocalResponseNormalizationOptions.py' 2025-06-05T23:22:14.8696861Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogSoftmaxOptions.py' 2025-06-05T23:22:14.8697144Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalAndOptions.py' 2025-06-05T23:22:14.8697447Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalNotOptions.py' 2025-06-05T23:22:14.8697708Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalOrOptions.py' 2025-06-05T23:22:14.8697958Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixDiagOptions.py' 2025-06-05T23:22:14.8698225Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixSetDiagOptions.py' 2025-06-05T23:22:14.8698590Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MaximumMinimumOptions.py' 2025-06-05T23:22:14.8698798Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Metadata.py' 2025-06-05T23:22:14.8699075Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadMode.py' 2025-06-05T23:22:14.8699377Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadOptions.py' 2025-06-05T23:22:14.8699569Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Model.py' 2025-06-05T23:22:14.8699784Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MulOptions.py' 2025-06-05T23:22:14.8700064Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NegOptions.py' 2025-06-05T23:22:14.8700375Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV4Options.py' 2025-06-05T23:22:14.8700682Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV5Options.py' 2025-06-05T23:22:14.8700928Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NotEqualOptions.py' 2025-06-05T23:22:14.8701178Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/OneHotOptions.py' 2025-06-05T23:22:14.8701404Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Operator.py' 2025-06-05T23:22:14.8701678Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/OperatorCode.py' 2025-06-05T23:22:14.8701912Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PackOptions.py' 2025-06-05T23:22:14.8702127Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadOptions.py' 2025-06-05T23:22:14.8702390Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadV2Options.py' 2025-06-05T23:22:14.8702609Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Padding.py' 2025-06-05T23:22:14.8702844Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Pool2DOptions.py' 2025-06-05T23:22:14.8703060Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PowOptions.py' 2025-06-05T23:22:14.8703334Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationDetails.py' 2025-06-05T23:22:14.8703620Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationParameters.py' 2025-06-05T23:22:14.8703864Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizeOptions.py' 2025-06-05T23:22:14.8704117Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RNNOptions.py' 2025-06-05T23:22:14.8704402Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RandomOptions.py' 2025-06-05T23:22:14.8704625Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RangeOptions.py' 2025-06-05T23:22:14.8704841Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RankOptions.py' 2025-06-05T23:22:14.8705166Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReadVariableOptions.py' 2025-06-05T23:22:14.8705493Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowFunction.py' 2025-06-05T23:22:14.8705820Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowOptions.py' 2025-06-05T23:22:14.8706072Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReducerOptions.py' 2025-06-05T23:22:14.8706327Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReshapeOptions.py' 2025-06-05T23:22:14.8706673Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeBilinearOptions.py' 2025-06-05T23:22:14.8707001Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeNearestNeighborOptions.py' 2025-06-05T23:22:14.8707313Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseSequenceOptions.py' 2025-06-05T23:22:14.8707573Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseV2Options.py' 2025-06-05T23:22:14.8707805Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Rfft2dOptions.py' 2025-06-05T23:22:14.8708071Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RightShiftOptions.py' 2025-06-05T23:22:14.8708292Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RngAlgorithm.py' 2025-06-05T23:22:14.8708511Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SVDFOptions.py' 2025-06-05T23:22:14.8708915Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ScatterNdOptions.py' 2025-06-05T23:22:14.8709173Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SegmentSumOptions.py' 2025-06-05T23:22:14.8709404Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectOptions.py' 2025-06-05T23:22:14.8709705Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectV2Options.py' 2025-06-05T23:22:14.8709964Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SequenceRNNOptions.py' 2025-06-05T23:22:14.8710190Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ShapeOptions.py' 2025-06-05T23:22:14.8710419Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignOptions.py' 2025-06-05T23:22:14.8710647Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignatureDef.py' 2025-06-05T23:22:14.8710929Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SkipGramOptions.py' 2025-06-05T23:22:14.8711196Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SliceOptions.py' 2025-06-05T23:22:14.8711451Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SoftmaxOptions.py' 2025-06-05T23:22:14.8711727Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToBatchNDOptions.py' 2025-06-05T23:22:14.8712044Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToDepthOptions.py' 2025-06-05T23:22:14.8712307Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseIndexVector.py' 2025-06-05T23:22:14.8712575Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseToDenseOptions.py' 2025-06-05T23:22:14.8712833Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparsityParameters.py' 2025-06-05T23:22:14.8713076Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitOptions.py' 2025-06-05T23:22:14.8713377Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitVOptions.py' 2025-06-05T23:22:14.8713609Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquareOptions.py' 2025-06-05T23:22:14.8713909Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquaredDifferenceOptions.py' 2025-06-05T23:22:14.8714202Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SqueezeOptions.py' 2025-06-05T23:22:14.8714534Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloBroadcastInDimOptions.py' 2025-06-05T23:22:14.8714834Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCompareOptions.py' 2025-06-05T23:22:14.8715148Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonDirection.py' 2025-06-05T23:22:14.8715512Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonType.py' 2025-06-05T23:22:14.8715823Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConcatenateOptions.py' 2025-06-05T23:22:14.8716272Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConvolutionOptions.py' 2025-06-05T23:22:14.8716579Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCustomCallOptions.py' 2025-06-05T23:22:14.8716884Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDotGeneralOptions.py' 2025-06-05T23:22:14.8717217Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDynamicSliceOptions.py' 2025-06-05T23:22:14.8717561Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloGatherOptions.py' 2025-06-05T23:22:14.8717850Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloIotaOptions.py' 2025-06-05T23:22:14.8718127Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPadOptions.py' 2025-06-05T23:22:14.8718470Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPrecisionConfig.py' 2025-06-05T23:22:14.8718753Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceOptions.py' 2025-06-05T23:22:14.8719083Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceWindowOptions.py' 2025-06-05T23:22:14.8719416Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloRngBitGeneratorOptions.py' 2025-06-05T23:22:14.8719735Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloScatterOptions.py' 2025-06-05T23:22:14.8720123Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSliceOptions.py' 2025-06-05T23:22:14.8720392Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSortOptions.py' 2025-06-05T23:22:14.8720741Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloTransposeOptions.py' 2025-06-05T23:22:14.8721016Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloWhileOptions.py' 2025-06-05T23:22:14.8721288Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StridedSliceOptions.py' 2025-06-05T23:22:14.8721494Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubGraph.py' 2025-06-05T23:22:14.8721715Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubOptions.py' 2025-06-05T23:22:14.8721929Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Tensor.py' 2025-06-05T23:22:14.8722144Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorMap.py' 2025-06-05T23:22:14.8722428Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorType.py' 2025-06-05T23:22:14.8722658Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TileOptions.py' 2025-06-05T23:22:14.8885915Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TopKV2Options.py' 2025-06-05T23:22:14.8886300Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeConvOptions.py' 2025-06-05T23:22:14.8886584Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeOptions.py' 2025-06-05T23:22:14.8886808Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint16Vector.py' 2025-06-05T23:22:14.8887094Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint8Vector.py' 2025-06-05T23:22:14.8887695Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnidirectionalSequenceLSTMOptions.py' 2025-06-05T23:22:14.8888072Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UniqueOptions.py' 2025-06-05T23:22:14.8888458Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnpackOptions.py' 2025-06-05T23:22:14.8888991Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMaxOptions.py' 2025-06-05T23:22:14.8889536Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMinOptions.py' 2025-06-05T23:22:14.8890076Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentProdOptions.py' 2025-06-05T23:22:14.8890609Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentSumOptions.py' 2025-06-05T23:22:14.8891067Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/VarHandleOptions.py' 2025-06-05T23:22:14.8891525Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/VariantSubType.py' 2025-06-05T23:22:14.8891953Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhereOptions.py' 2025-06-05T23:22:14.8892544Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhileOptions.py' 2025-06-05T23:22:14.8892995Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ZerosLikeOptions.py' 2025-06-05T23:22:14.8893385Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/__init__.py' 2025-06-05T23:22:14.8893836Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/__init__.py' 2025-06-05T23:22:14.8894305Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/tflite_model.py' 2025-06-05T23:22:14.8894854Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/__init__.py' 2025-06-05T23:22:14.8895475Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/abs_options.py' 2025-06-05T23:22:14.8896097Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_n_options.py' 2025-06-05T23:22:14.8896673Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_options.py' 2025-06-05T23:22:14.8897321Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_max_options.py' 2025-06-05T23:22:14.8897958Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_min_options.py' 2025-06-05T23:22:14.8898828Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/average_pool_2d_options.py' 2025-06-05T23:22:14.8899535Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/batch_mat_mul_options.py' 2025-06-05T23:22:14.8900347Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_lstm_options.py' 2025-06-05T23:22:14.8901163Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_rnn_options.py' 2025-06-05T23:22:14.8901852Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bitwise_xor_options.py' 2025-06-05T23:22:14.8902519Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/broadcast_to_options.py' 2025-06-05T23:22:14.8903145Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cast_options.py' 2025-06-05T23:22:14.8903846Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/concatenation_options.py' 2025-06-05T23:22:14.8904463Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_2d_options.py' 2025-06-05T23:22:14.8905104Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_3d_options.py' 2025-06-05T23:22:14.8905810Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cum_sum_options.py' 2025-06-05T23:22:14.8906478Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depth_to_space_options.py' 2025-06-05T23:22:14.8907225Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depthwise_conv_2d_options.py' 2025-06-05T23:22:14.8907903Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/dequantize_options.py' 2025-06-05T23:22:14.8908483Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/div_options.py' 2025-06-05T23:22:14.8909104Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/equal_options.py' 2025-06-05T23:22:14.8909734Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/exp_options.py' 2025-06-05T23:22:14.8910363Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/floor_mod_options.py' 2025-06-05T23:22:14.8911074Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/fully_connected_options.py' 2025-06-05T23:22:14.8911739Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_nd_options.py' 2025-06-05T23:22:14.8912343Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_options.py' 2025-06-05T23:22:14.8913091Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gelu_options.py' 2025-06-05T23:22:14.8913781Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_equal_options.py' 2025-06-05T23:22:14.8914391Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_options.py' 2025-06-05T23:22:14.8915064Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/hard_swish_options.py' 2025-06-05T23:22:14.8915729Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/leaky_relu_options.py' 2025-06-05T23:22:14.8916370Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_equal_options.py' 2025-06-05T23:22:14.8916987Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_options.py' 2025-06-05T23:22:14.8917662Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/log_softmax_options.py' 2025-06-05T23:22:14.8918321Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_and_options.py' 2025-06-05T23:22:14.8918998Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_not_options.py' 2025-06-05T23:22:14.8919652Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_or_options.py' 2025-06-05T23:22:14.8920127Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lrn_options.py' 2025-06-05T23:22:14.8920722Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lstm_options.py' 2025-06-05T23:22:14.8921406Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/max_pool_2d_options.py' 2025-06-05T23:22:14.8922011Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/maximum_options.py' 2025-06-05T23:22:14.8922357Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mean_options.py' 2025-06-05T23:22:14.8922710Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/minimum_options.py' 2025-06-05T23:22:14.8923061Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mirror_pad_options.py' 2025-06-05T23:22:14.8923626Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mul_options.py' 2025-06-05T23:22:14.8924306Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/multinomial_options.py' 2025-06-05T23:22:14.8924913Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/neg_options.py' 2025-06-05T23:22:14.8925540Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/not_equal_options.py' 2025-06-05T23:22:14.8926168Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/one_hot_options.py' 2025-06-05T23:22:14.8926781Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_options.py' 2025-06-05T23:22:14.8927210Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_v2_options.py' 2025-06-05T23:22:14.8927527Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pow_options.py' 2025-06-05T23:22:14.8928001Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/quantize_options.py' 2025-06-05T23:22:14.8928606Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/range_options.py' 2025-06-05T23:22:14.8929274Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_max_options.py' 2025-06-05T23:22:14.8929854Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_min_options.py' 2025-06-05T23:22:14.8930208Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_prod_options.py' 2025-06-05T23:22:14.8930633Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reshape_options.py' 2025-06-05T23:22:14.8931459Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_bilinear_options.py' 2025-06-05T23:22:14.8932241Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_nearest_neighbor_options.py' 2025-06-05T23:22:14.8932737Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reverse_sequence_options.py' 2025-06-05T23:22:14.8933093Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/scatter_nd_options.py' 2025-06-05T23:22:14.8933431Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/select_v2_options.py' 2025-06-05T23:22:14.8933757Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/shape_options.py' 2025-06-05T23:22:14.8934196Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sign_options.py' 2025-06-05T23:22:14.9148237Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/slice_options.py' 2025-06-05T23:22:14.9148941Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/softmax_options.py' 2025-06-05T23:22:14.9149381Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/space_to_depth_options.py' 2025-06-05T23:22:14.9149779Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_options.py' 2025-06-05T23:22:14.9150430Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_v_options.py' 2025-06-05T23:22:14.9151049Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/square_options.py' 2025-06-05T23:22:14.9151791Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squared_difference_options.py' 2025-06-05T23:22:14.9152323Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squeeze_options.py' 2025-06-05T23:22:14.9152852Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/strided_slice_options.py' 2025-06-05T23:22:14.9153454Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sub_options.py' 2025-06-05T23:22:14.9154060Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sum_options.py' 2025-06-05T23:22:14.9154651Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/tile_options.py' 2025-06-05T23:22:14.9155090Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_conv_options.py' 2025-06-05T23:22:14.9155721Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_options.py' 2025-06-05T23:22:14.9156579Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_lstm_options.py' 2025-06-05T23:22:14.9157226Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_rnn_options.py' 2025-06-05T23:22:14.9157595Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/custom_options/flex_transpose_options.py' 2025-06-05T23:22:14.9157997Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/__init__.py' 2025-06-05T23:22:14.9158432Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/meta.py' 2025-06-05T23:22:14.9158890Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/types.py' 2025-06-05T23:22:14.9159342Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/__init__.py' 2025-06-05T23:22:14.9159783Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/graph_utils.py' 2025-06-05T23:22:14.9160059Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/operator_rules.py' 2025-06-05T23:22:14.9160311Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizer.py' 2025-06-05T23:22:14.9160699Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/pattern_matcher.py' 2025-06-05T23:22:14.9161159Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/tensor_rules.py' 2025-06-05T23:22:14.9161907Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/__init__.py' 2025-06-05T23:22:14.9162536Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/base_optimization.py' 2025-06-05T23:22:14.9163019Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/combine_hard_sigmoid_and_mul_to_hard_swish.py' 2025-06-05T23:22:14.9163382Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/eliminate_dead_branches.py' 2025-06-05T23:22:14.9163771Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_activation_functions.py' 2025-06-05T23:22:14.9164464Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_fully_connected_and_add_operators.py' 2025-06-05T23:22:14.9165443Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_quanitze_into_preceding_ops.py' 2025-06-05T23:22:14.9166114Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/keep_one_empty_buffer.py' 2025-06-05T23:22:14.9166552Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/move_relu_before_concat.py' 2025-06-05T23:22:14.9167038Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/permute_fully_connected_weights_after_reshape.py' 2025-06-05T23:22:14.9167754Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_cast_operators.py' 2025-06-05T23:22:14.9168467Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_quantize_operators.py' 2025-06-05T23:22:14.9169138Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_reshape_operators.py' 2025-06-05T23:22:14.9169602Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_transpose_operators.py' 2025-06-05T23:22:14.9170046Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/remove_unused_tensors_and_buffers.py' 2025-06-05T23:22:14.9171010Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/replace_average_pool_before_fully_connected_with_sum.py' 2025-06-05T23:22:14.9171408Z adding 'executorch/backends/nxp/quantizer/neutron_quantizer.py' 2025-06-05T23:22:14.9171701Z adding 'executorch/backends/nxp/quantizer/patterns.py' 2025-06-05T23:22:14.9171955Z adding 'executorch/backends/nxp/quantizer/utils.py' 2025-06-05T23:22:14.9172217Z adding 'executorch/backends/nxp/tests/executorch_pipeline.py' 2025-06-05T23:22:14.9172358Z adding 'executorch/backends/nxp/tests/executors.py' 2025-06-05T23:22:14.9172576Z adding 'executorch/backends/nxp/tests/exported_program_vizualize.py' 2025-06-05T23:22:14.9172711Z adding 'executorch/backends/nxp/tests/models.py' 2025-06-05T23:22:14.9172919Z adding 'executorch/backends/nxp/tests/test_batch_norm_fusion.py' 2025-06-05T23:22:14.9173103Z adding 'executorch/backends/nxp/tests/test_neutron_backend.py' 2025-06-05T23:22:14.9173336Z adding 'executorch/backends/nxp/tests/test_neutron_converter_manager.py' 2025-06-05T23:22:14.9173566Z adding 'executorch/backends/nxp/tests/test_node_format_inference.py' 2025-06-05T23:22:14.9173761Z adding 'executorch/backends/nxp/tests/test_operator_selector.py' 2025-06-05T23:22:14.9173963Z adding 'executorch/backends/nxp/tests/test_qdq_clustering_conv.py' 2025-06-05T23:22:14.9174222Z adding 'executorch/backends/nxp/tests/test_quantizer.py' 2025-06-05T23:22:14.9174849Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_avg_pool2d_converter.py' 2025-06-05T23:22:14.9175546Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_constant_pad_nd_converter.py' 2025-06-05T23:22:14.9176124Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_conv_converter.py' 2025-06-05T23:22:14.9176470Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_linear_converter.py' 2025-06-05T23:22:14.9176815Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_max_pool_2d_converter.py' 2025-06-05T23:22:14.9177299Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_permute_copy_converter.py' 2025-06-05T23:22:14.9177684Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_relu_converter.py' 2025-06-05T23:22:14.9178278Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_softmax_converter.py' 2025-06-05T23:22:14.9178910Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_view_copy_converter.py' 2025-06-05T23:22:14.9179169Z adding 'executorch/backends/openvino/__init__.py' 2025-06-05T23:22:14.9179441Z adding 'executorch/backends/openvino/partitioner.py' 2025-06-05T23:22:14.9179682Z adding 'executorch/backends/openvino/preprocess.py' 2025-06-05T23:22:14.9179897Z adding 'executorch/backends/openvino/quantizer/__init__.py' 2025-06-05T23:22:14.9180081Z adding 'executorch/backends/openvino/quantizer/quantizer.py' 2025-06-05T23:22:14.9180249Z adding 'executorch/backends/openvino/tests/test_runner.py' 2025-06-05T23:22:14.9180515Z adding 'executorch/backends/openvino/tests/models/test_classification.py' 2025-06-05T23:22:14.9180750Z adding 'executorch/backends/openvino/tests/ops/base_openvino_op_test.py' 2025-06-05T23:22:14.9181018Z adding 'executorch/backends/openvino/tests/ops/test_add.py' 2025-06-05T23:22:14.9181442Z adding 'executorch/backends/openvino/tests/ops/test_addmm.py' 2025-06-05T23:22:14.9181800Z adding 'executorch/backends/openvino/tests/ops/test_arange.py' 2025-06-05T23:22:14.9182190Z adding 'executorch/backends/openvino/tests/ops/test_batch_norm.py' 2025-06-05T23:22:14.9182577Z adding 'executorch/backends/openvino/tests/ops/test_convolution.py' 2025-06-05T23:22:14.9182897Z adding 'executorch/backends/openvino/tests/ops/test_mean.py' 2025-06-05T23:22:14.9183111Z adding 'executorch/backends/openvino/tests/ops/test_permute.py' 2025-06-05T23:22:14.9183366Z adding 'executorch/backends/openvino/tests/ops/test_pooling.py' 2025-06-05T23:22:14.9183750Z adding 'executorch/backends/openvino/tests/ops/test_unary_ops.py' 2025-06-05T23:22:14.9184069Z adding 'executorch/backends/openvino/tests/ops/test_view.py' 2025-06-05T23:22:14.9184373Z adding 'executorch/backends/qualcomm/qnn_preprocess.py' 2025-06-05T23:22:14.9184669Z adding 'executorch/backends/qualcomm/_passes/__init__.py' 2025-06-05T23:22:14.9185154Z adding 'executorch/backends/qualcomm/_passes/annotate_adaptive_avg_pool1d.py' 2025-06-05T23:22:14.9185444Z adding 'executorch/backends/qualcomm/_passes/annotate_quant_attrs.py' 2025-06-05T23:22:14.9185738Z adding 'executorch/backends/qualcomm/_passes/annotate_stack.py' 2025-06-05T23:22:14.9186098Z adding 'executorch/backends/qualcomm/_passes/annotate_unbind.py' 2025-06-05T23:22:14.9186438Z adding 'executorch/backends/qualcomm/_passes/build_quant_io.py' 2025-06-05T23:22:14.9186845Z adding 'executorch/backends/qualcomm/_passes/convert_bmm_to_matmul.py' 2025-06-05T23:22:14.9187296Z adding 'executorch/backends/qualcomm/_passes/convert_conv1d_to_conv2d.py' 2025-06-05T23:22:14.9187700Z adding 'executorch/backends/qualcomm/_passes/convert_square_to_pow.py' 2025-06-05T23:22:14.9187932Z adding 'executorch/backends/qualcomm/_passes/decompose_any.py' 2025-06-05T23:22:14.9188282Z adding 'executorch/backends/qualcomm/_passes/decompose_cdist.py' 2025-06-05T23:22:14.9188651Z adding 'executorch/backends/qualcomm/_passes/decompose_einsum.py' 2025-06-05T23:22:14.9189016Z adding 'executorch/backends/qualcomm/_passes/decompose_expm1.py' 2025-06-05T23:22:14.9189490Z adding 'executorch/backends/qualcomm/_passes/decompose_linalg_vector_norm.py' 2025-06-05T23:22:14.9500403Z adding 'executorch/backends/qualcomm/_passes/decompose_roll.py' 2025-06-05T23:22:14.9500812Z adding 'executorch/backends/qualcomm/_passes/decompose_silu.py' 2025-06-05T23:22:14.9501336Z adding 'executorch/backends/qualcomm/_passes/expand_broadcast_tensor_shape.py' 2025-06-05T23:22:14.9501623Z adding 'executorch/backends/qualcomm/_passes/fixed_linear_keep_dim.py' 2025-06-05T23:22:14.9501958Z adding 'executorch/backends/qualcomm/_passes/fold_qdq.py' 2025-06-05T23:22:14.9502179Z adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_cast.py' 2025-06-05T23:22:14.9502441Z adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_transpose.py' 2025-06-05T23:22:14.9502618Z adding 'executorch/backends/qualcomm/_passes/i64_to_i32.py' 2025-06-05T23:22:14.9502809Z adding 'executorch/backends/qualcomm/_passes/insert_io_qdq.py' 2025-06-05T23:22:14.9503031Z adding 'executorch/backends/qualcomm/_passes/insert_requantize.py' 2025-06-05T23:22:14.9503231Z adding 'executorch/backends/qualcomm/_passes/layout_transform.py' 2025-06-05T23:22:14.9503487Z adding 'executorch/backends/qualcomm/_passes/lift_constant_scalar_operands.py' 2025-06-05T23:22:14.9503699Z adding 'executorch/backends/qualcomm/_passes/qnn_pass_manager.py' 2025-06-05T23:22:14.9503939Z adding 'executorch/backends/qualcomm/_passes/recompose_pixel_unshuffle.py' 2025-06-05T23:22:14.9504145Z adding 'executorch/backends/qualcomm/_passes/recompose_rms_norm.py' 2025-06-05T23:22:14.9504363Z adding 'executorch/backends/qualcomm/_passes/reduce_dynamic_range.py' 2025-06-05T23:22:14.9504568Z adding 'executorch/backends/qualcomm/_passes/remove_0d_tensor.py' 2025-06-05T23:22:14.9504772Z adding 'executorch/backends/qualcomm/_passes/remove_redundancy.py' 2025-06-05T23:22:14.9505076Z adding 'executorch/backends/qualcomm/_passes/replace_arange_args.py' 2025-06-05T23:22:14.9505323Z adding 'executorch/backends/qualcomm/_passes/replace_index_put_input.py' 2025-06-05T23:22:14.9505583Z adding 'executorch/backends/qualcomm/_passes/replace_inf_values.py' 2025-06-05T23:22:14.9505774Z adding 'executorch/backends/qualcomm/_passes/tag_quant_io.py' 2025-06-05T23:22:14.9505944Z adding 'executorch/backends/qualcomm/_passes/utils.py' 2025-06-05T23:22:14.9506099Z adding 'executorch/backends/qualcomm/aot/ir/qcir.fbs' 2025-06-05T23:22:14.9506269Z adding 'executorch/backends/qualcomm/builders/__init__.py' 2025-06-05T23:22:14.9506459Z adding 'executorch/backends/qualcomm/builders/node_visitor.py' 2025-06-05T23:22:14.9506665Z adding 'executorch/backends/qualcomm/builders/op_abs.py' 2025-06-05T23:22:14.9506901Z adding 'executorch/backends/qualcomm/builders/op_adaptive_avg_pool2d.py' 2025-06-05T23:22:14.9507076Z adding 'executorch/backends/qualcomm/builders/op_add.py' 2025-06-05T23:22:14.9507245Z adding 'executorch/backends/qualcomm/builders/op_amax.py' 2025-06-05T23:22:14.9507405Z adding 'executorch/backends/qualcomm/builders/op_and.py' 2025-06-05T23:22:14.9507587Z adding 'executorch/backends/qualcomm/builders/op_arange.py' 2025-06-05T23:22:14.9507757Z adding 'executorch/backends/qualcomm/builders/op_argmin.py' 2025-06-05T23:22:14.9507951Z adding 'executorch/backends/qualcomm/builders/op_avg_pool2d.py' 2025-06-05T23:22:14.9508155Z adding 'executorch/backends/qualcomm/builders/op_batch_norm.py' 2025-06-05T23:22:14.9508315Z adding 'executorch/backends/qualcomm/builders/op_bmm.py' 2025-06-05T23:22:14.9508476Z adding 'executorch/backends/qualcomm/builders/op_cat.py' 2025-06-05T23:22:14.9508638Z adding 'executorch/backends/qualcomm/builders/op_ceil.py' 2025-06-05T23:22:14.9508863Z adding 'executorch/backends/qualcomm/builders/op_clamp.py' 2025-06-05T23:22:14.9509113Z adding 'executorch/backends/qualcomm/builders/op_conv2d.py' 2025-06-05T23:22:14.9509348Z adding 'executorch/backends/qualcomm/builders/op_cos.py' 2025-06-05T23:22:14.9509580Z adding 'executorch/backends/qualcomm/builders/op_cum_sum.py' 2025-06-05T23:22:14.9509790Z adding 'executorch/backends/qualcomm/builders/op_depth_to_space.py' 2025-06-05T23:22:14.9509983Z adding 'executorch/backends/qualcomm/builders/op_dequantize.py' 2025-06-05T23:22:14.9510158Z adding 'executorch/backends/qualcomm/builders/op_div.py' 2025-06-05T23:22:14.9510318Z adding 'executorch/backends/qualcomm/builders/op_elu.py' 2025-06-05T23:22:14.9510504Z adding 'executorch/backends/qualcomm/builders/op_embedding.py' 2025-06-05T23:22:14.9510661Z adding 'executorch/backends/qualcomm/builders/op_eq.py' 2025-06-05T23:22:14.9510901Z adding 'executorch/backends/qualcomm/builders/op_exp.py' 2025-06-05T23:22:14.9511073Z adding 'executorch/backends/qualcomm/builders/op_expand.py' 2025-06-05T23:22:14.9511240Z adding 'executorch/backends/qualcomm/builders/op_full.py' 2025-06-05T23:22:14.9511444Z adding 'executorch/backends/qualcomm/builders/op_full_like.py' 2025-06-05T23:22:14.9511614Z adding 'executorch/backends/qualcomm/builders/op_gather.py' 2025-06-05T23:22:14.9511775Z adding 'executorch/backends/qualcomm/builders/op_ge.py' 2025-06-05T23:22:14.9511951Z adding 'executorch/backends/qualcomm/builders/op_gelu.py' 2025-06-05T23:22:14.9512143Z adding 'executorch/backends/qualcomm/builders/op_group_norm.py' 2025-06-05T23:22:14.9512300Z adding 'executorch/backends/qualcomm/builders/op_gt.py' 2025-06-05T23:22:14.9512498Z adding 'executorch/backends/qualcomm/builders/op_hardsigmoid.py' 2025-06-05T23:22:14.9512697Z adding 'executorch/backends/qualcomm/builders/op_hardswish.py' 2025-06-05T23:22:14.9512884Z adding 'executorch/backends/qualcomm/builders/op_hardtanh.py' 2025-06-05T23:22:14.9513056Z adding 'executorch/backends/qualcomm/builders/op_index.py' 2025-06-05T23:22:14.9513254Z adding 'executorch/backends/qualcomm/builders/op_index_put.py' 2025-06-05T23:22:14.9513459Z adding 'executorch/backends/qualcomm/builders/op_instance_norm.py' 2025-06-05T23:22:14.9513698Z adding 'executorch/backends/qualcomm/builders/op_layer_norm.py' 2025-06-05T23:22:14.9513871Z adding 'executorch/backends/qualcomm/builders/op_le.py' 2025-06-05T23:22:14.9514040Z adding 'executorch/backends/qualcomm/builders/op_linear.py' 2025-06-05T23:22:14.9514201Z adding 'executorch/backends/qualcomm/builders/op_log.py' 2025-06-05T23:22:14.9514397Z adding 'executorch/backends/qualcomm/builders/op_log_softmax.py' 2025-06-05T23:22:14.9514601Z adding 'executorch/backends/qualcomm/builders/op_logical_not.py' 2025-06-05T23:22:14.9514755Z adding 'executorch/backends/qualcomm/builders/op_lt.py' 2025-06-05T23:22:14.9514928Z adding 'executorch/backends/qualcomm/builders/op_matmul.py' 2025-06-05T23:22:14.9515098Z adding 'executorch/backends/qualcomm/builders/op_max.py' 2025-06-05T23:22:14.9515287Z adding 'executorch/backends/qualcomm/builders/op_max_pool2d.py' 2025-06-05T23:22:14.9515467Z adding 'executorch/backends/qualcomm/builders/op_mean_dim.py' 2025-06-05T23:22:14.9515641Z adding 'executorch/backends/qualcomm/builders/op_min.py' 2025-06-05T23:22:14.9515797Z adding 'executorch/backends/qualcomm/builders/op_mul.py' 2025-06-05T23:22:14.9515950Z adding 'executorch/backends/qualcomm/builders/op_ne.py' 2025-06-05T23:22:14.9516106Z adding 'executorch/backends/qualcomm/builders/op_neg.py' 2025-06-05T23:22:14.9516270Z adding 'executorch/backends/qualcomm/builders/op_or.py' 2025-06-05T23:22:14.9516427Z adding 'executorch/backends/qualcomm/builders/op_pad.py' 2025-06-05T23:22:14.9516584Z adding 'executorch/backends/qualcomm/builders/op_pow.py' 2025-06-05T23:22:14.9516761Z adding 'executorch/backends/qualcomm/builders/op_prelu.py' 2025-06-05T23:22:14.9516944Z adding 'executorch/backends/qualcomm/builders/op_quantize.py' 2025-06-05T23:22:14.9517106Z adding 'executorch/backends/qualcomm/builders/op_relu.py' 2025-06-05T23:22:14.9517289Z adding 'executorch/backends/qualcomm/builders/op_repeat.py' 2025-06-05T23:22:14.9517474Z adding 'executorch/backends/qualcomm/builders/op_reshape.py' 2025-06-05T23:22:14.9517643Z adding 'executorch/backends/qualcomm/builders/op_resize.py' 2025-06-05T23:22:14.9517832Z adding 'executorch/backends/qualcomm/builders/op_rms_norm.py' 2025-06-05T23:22:14.9518000Z adding 'executorch/backends/qualcomm/builders/op_rsqrt.py' 2025-06-05T23:22:14.9518204Z adding 'executorch/backends/qualcomm/builders/op_scalar_tensor.py' 2025-06-05T23:22:14.9518399Z adding 'executorch/backends/qualcomm/builders/op_select_copy.py' 2025-06-05T23:22:14.9518588Z adding 'executorch/backends/qualcomm/builders/op_sigmoid.py' 2025-06-05T23:22:14.9518748Z adding 'executorch/backends/qualcomm/builders/op_sin.py' 2025-06-05T23:22:14.9518974Z adding 'executorch/backends/qualcomm/builders/op_skip_ops.py' 2025-06-05T23:22:14.9519176Z adding 'executorch/backends/qualcomm/builders/op_slice_copy.py' 2025-06-05T23:22:14.9519353Z adding 'executorch/backends/qualcomm/builders/op_softmax.py' 2025-06-05T23:22:14.9519566Z adding 'executorch/backends/qualcomm/builders/op_space_to_depth.py' 2025-06-05T23:22:14.9519798Z adding 'executorch/backends/qualcomm/builders/op_split_with_sizes.py' 2025-06-05T23:22:14.9519962Z adding 'executorch/backends/qualcomm/builders/op_sqrt.py' 2025-06-05T23:22:14.9520137Z adding 'executorch/backends/qualcomm/builders/op_squeeze.py' 2025-06-05T23:22:14.9520304Z adding 'executorch/backends/qualcomm/builders/op_stack.py' 2025-06-05T23:22:14.9520480Z adding 'executorch/backends/qualcomm/builders/op_sub.py' 2025-06-05T23:22:14.9520679Z adding 'executorch/backends/qualcomm/builders/op_sum_int_list.py' 2025-06-05T23:22:14.9520841Z adding 'executorch/backends/qualcomm/builders/op_tanh.py' 2025-06-05T23:22:14.9521014Z adding 'executorch/backends/qualcomm/builders/op_to.py' 2025-06-05T23:22:14.9521176Z adding 'executorch/backends/qualcomm/builders/op_topk.py' 2025-06-05T23:22:14.9521362Z adding 'executorch/backends/qualcomm/builders/op_transpose.py' 2025-06-05T23:22:14.9521593Z adding 'executorch/backends/qualcomm/builders/op_unbind.py' 2025-06-05T23:22:14.9521779Z adding 'executorch/backends/qualcomm/builders/op_unsqueeze.py' 2025-06-05T23:22:14.9522016Z adding 'executorch/backends/qualcomm/builders/op_upsample_bilinear2d.py' 2025-06-05T23:22:14.9522245Z adding 'executorch/backends/qualcomm/builders/op_upsample_nearest2d.py' 2025-06-05T23:22:14.9522423Z adding 'executorch/backends/qualcomm/builders/op_where.py' 2025-06-05T23:22:14.9522614Z adding 'executorch/backends/qualcomm/builders/qnn_constants.py' 2025-06-05T23:22:14.9522772Z adding 'executorch/backends/qualcomm/builders/utils.py' 2025-06-05T23:22:14.9522940Z adding 'executorch/backends/qualcomm/debugger/utils.py' 2025-06-05T23:22:14.9523130Z adding 'executorch/backends/qualcomm/partition/common_defs.py' 2025-06-05T23:22:14.9523339Z adding 'executorch/backends/qualcomm/partition/qnn_partitioner.py' 2025-06-05T23:22:14.9523512Z adding 'executorch/backends/qualcomm/partition/utils.py' 2025-06-05T23:22:14.9523697Z adding 'executorch/backends/qualcomm/quantizer/annotators.py' 2025-06-05T23:22:14.9523915Z adding 'executorch/backends/qualcomm/quantizer/custom_annotation.py' 2025-06-05T23:22:14.9524084Z adding 'executorch/backends/qualcomm/quantizer/qconfig.py' 2025-06-05T23:22:14.9524273Z adding 'executorch/backends/qualcomm/quantizer/quantizer.py' 2025-06-05T23:22:14.9524572Z adding 'executorch/backends/qualcomm/quantizer/observers/per_block_param_observer.py' 2025-06-05T23:22:14.9524877Z adding 'executorch/backends/qualcomm/quantizer/observers/per_channel_param_observer.py' 2025-06-05T23:22:14.9525130Z adding 'executorch/backends/qualcomm/serialization/qc_compiler_spec.fbs' 2025-06-05T23:22:14.9525336Z adding 'executorch/backends/qualcomm/serialization/qc_schema.py' 2025-06-05T23:22:14.9841480Z adding 'executorch/backends/qualcomm/serialization/qc_schema_serialize.py' 2025-06-05T23:22:14.9841778Z adding 'executorch/backends/qualcomm/tests/models.py' 2025-06-05T23:22:14.9842199Z adding 'executorch/backends/qualcomm/tests/test_qnn_delegate.py' 2025-06-05T23:22:14.9842384Z adding 'executorch/backends/qualcomm/tests/utils.py' 2025-06-05T23:22:14.9842566Z adding 'executorch/backends/qualcomm/utils/constants.py' 2025-06-05T23:22:14.9842713Z adding 'executorch/backends/qualcomm/utils/utils.py' 2025-06-05T23:22:14.9842857Z adding 'executorch/backends/transforms/__init__.py' 2025-06-05T23:22:14.9843055Z adding 'executorch/backends/transforms/addmm_mm_to_linear.py' 2025-06-05T23:22:14.9843239Z adding 'executorch/backends/transforms/convert_dtype_pass.py' 2025-06-05T23:22:14.9843409Z adding 'executorch/backends/transforms/decompose_sdpa.py' 2025-06-05T23:22:14.9843872Z adding 'executorch/backends/transforms/duplicate_dynamic_quant_chain.py' 2025-06-05T23:22:14.9844086Z adding 'executorch/backends/transforms/fuse_batch_norm_with_conv.py' 2025-06-05T23:22:14.9844279Z adding 'executorch/backends/transforms/fuse_conv_with_clamp.py' 2025-06-05T23:22:14.9844446Z adding 'executorch/backends/transforms/fuse_view_copy.py' 2025-06-05T23:22:14.9844637Z adding 'executorch/backends/transforms/mean_to_sum_div.py' 2025-06-05T23:22:14.9844809Z adding 'executorch/backends/transforms/rank_0_to_rank_1.py' 2025-06-05T23:22:14.9844982Z adding 'executorch/backends/transforms/remove_clone_ops.py' 2025-06-05T23:22:14.9845175Z adding 'executorch/backends/transforms/remove_getitem_op.py' 2025-06-05T23:22:14.9845394Z adding 'executorch/backends/transforms/replace_scalar_with_tensor.py' 2025-06-05T23:22:14.9845528Z adding 'executorch/backends/transforms/utils.py' 2025-06-05T23:22:14.9845778Z adding 'executorch/backends/transforms/view_copy_to_squeeze_unsqueeze.py' 2025-06-05T23:22:14.9846084Z adding 'executorch/backends/transforms/test/test_create_delete_constant_placeholder.py' 2025-06-05T23:22:14.9846358Z adding 'executorch/backends/transforms/test/test_duplicate_dynamic_quant_chain.py' 2025-06-05T23:22:14.9846587Z adding 'executorch/backends/transforms/test/test_rank_0_to_rank_1.py' 2025-06-05T23:22:14.9846817Z adding 'executorch/backends/vulkan/__init__.py' 2025-06-05T23:22:14.9846970Z adding 'executorch/backends/vulkan/custom_ops_lib.py' 2025-06-05T23:22:14.9847109Z adding 'executorch/backends/vulkan/op_registry.py' 2025-06-05T23:22:14.9847248Z adding 'executorch/backends/vulkan/utils.py' 2025-06-05T23:22:14.9847412Z adding 'executorch/backends/vulkan/vulkan_preprocess.py' 2025-06-05T23:22:14.9847569Z adding 'executorch/backends/vulkan/_passes/__init__.py' 2025-06-05T23:22:14.9847780Z adding 'executorch/backends/vulkan/_passes/fuse_quantized_ops.py' 2025-06-05T23:22:14.9847986Z adding 'executorch/backends/vulkan/_passes/insert_prepack_nodes.py' 2025-06-05T23:22:14.9848225Z adding 'executorch/backends/vulkan/_passes/int4_weight_only_quantizer.py' 2025-06-05T23:22:14.9848418Z adding 'executorch/backends/vulkan/_passes/remove_asserts.py' 2025-06-05T23:22:14.9848663Z adding 'executorch/backends/vulkan/_passes/remove_local_scalar_dense_ops.py' 2025-06-05T23:22:14.9848871Z adding 'executorch/backends/vulkan/_passes/remove_redundant_ops.py' 2025-06-05T23:22:14.9849097Z adding 'executorch/backends/vulkan/_passes/squeeze_unsqueeze_inputs.py' 2025-06-05T23:22:14.9849315Z adding 'executorch/backends/vulkan/_passes/tag_memory_meta_pass.py' 2025-06-05T23:22:14.9849538Z adding 'executorch/backends/vulkan/partitioner/vulkan_partitioner.py' 2025-06-05T23:22:14.9849740Z adding 'executorch/backends/vulkan/quantizer/vulkan_quantizer.py' 2025-06-05T23:22:14.9849931Z adding 'executorch/backends/vulkan/runtime/gen_vulkan_spv.py' 2025-06-05T23:22:14.9850213Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_buffer.yaml' 2025-06-05T23:22:14.9850508Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_texture3d.yaml' 2025-06-05T23:22:14.9850786Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_optimized.yaml' 2025-06-05T23:22:14.9851007Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/arange.yaml' 2025-06-05T23:22:14.9851304Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/avg_pool2d.yaml' 2025-06-05T23:22:14.9851642Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/batchnorm.yaml' 2025-06-05T23:22:14.9851878Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/binary_op.yaml' 2025-06-05T23:22:14.9852237Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/bitw8_image_to_nchw_nobitw8buffer.yaml' 2025-06-05T23:22:14.9852513Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_buffer.yaml' 2025-06-05T23:22:14.9852779Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_nchw.yaml' 2025-06-05T23:22:14.9853018Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/clone.yaml' 2025-06-05T23:22:14.9853314Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv1d.yaml' 2025-06-05T23:22:14.9853532Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d.yaml' 2025-06-05T23:22:14.9853768Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw.yaml' 2025-06-05T23:22:14.9854062Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_output_tile.yaml' 2025-06-05T23:22:14.9854390Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_prepack_weights.yaml' 2025-06-05T23:22:14.9854706Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_sned_output_tile.yaml' 2025-06-05T23:22:14.9855003Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_prepack_weights.yaml' 2025-06-05T23:22:14.9855251Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw.yaml' 2025-06-05T23:22:14.9855509Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_s1p0.yaml' 2025-06-05T23:22:14.9855787Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d.yaml' 2025-06-05T23:22:14.9856175Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d_prepack_weights.yaml' 2025-06-05T23:22:14.9856616Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_channel_offset.yaml' 2025-06-05T23:22:14.9856867Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_offset.yaml' 2025-06-05T23:22:14.9857173Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_packed_dim_offset.yaml' 2025-06-05T23:22:14.9857413Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/embedding.yaml' 2025-06-05T23:22:14.9857626Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/flip.yaml' 2025-06-05T23:22:14.9857849Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/full.yaml' 2025-06-05T23:22:14.9858097Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/grid_priors.yaml' 2025-06-05T23:22:14.9858357Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/image_to_nchw.yaml' 2025-06-05T23:22:14.9858607Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select.yaml' 2025-06-05T23:22:14.9858912Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select_channel.yaml' 2025-06-05T23:22:14.9859183Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/kv_cache_update.yaml' 2025-06-05T23:22:14.9859438Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw.yaml' 2025-06-05T23:22:14.9859779Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_coop.yaml' 2025-06-05T23:22:14.9860088Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_tiled.yaml' 2025-06-05T23:22:14.9860501Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_coop.yaml' 2025-06-05T23:22:14.9860992Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_tiled.yaml' 2025-06-05T23:22:14.9861417Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/max_pool2d.yaml' 2025-06-05T23:22:14.9861941Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/native_layer_norm.yaml' 2025-06-05T23:22:14.9862617Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_bitw8_image_nobitw8buffer.yaml' 2025-06-05T23:22:14.9863086Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_buffer.yaml' 2025-06-05T23:22:14.9863557Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_image.yaml' 2025-06-05T23:22:14.9863984Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/no_op.yaml' 2025-06-05T23:22:14.9864777Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pack_int4_linear_weight_transposed_interleaved.yaml' 2025-06-05T23:22:14.9865439Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_channel.yaml' 2025-06-05T23:22:14.9866007Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_height_width.yaml' 2025-06-05T23:22:14.9866654Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/permute.yaml' 2025-06-05T23:22:14.9867054Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/reduce.yaml' 2025-06-05T23:22:14.9867374Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat.yaml' 2025-06-05T23:22:14.9867808Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_channel.yaml' 2025-06-05T23:22:14.9868093Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_interleave.yaml' 2025-06-05T23:22:14.9868368Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/rotary_embedding.yaml' 2025-06-05T23:22:14.9868728Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weight_scale_and_mask.yaml' 2025-06-05T23:22:14.9868961Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/softmax.yaml' 2025-06-05T23:22:14.9869172Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/tan.yaml' 2025-06-05T23:22:14.9869471Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_buffer.yaml' 2025-06-05T23:22:14.9869748Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_texture.yaml' 2025-06-05T23:22:14.9869983Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/unary_op.yaml' 2025-06-05T23:22:14.9870243Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/upsample_2d.yaml' 2025-06-05T23:22:14.9870599Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_buffer.yaml' 2025-06-05T23:22:14.9870858Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_texture3d.yaml' 2025-06-05T23:22:14.9871073Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/view.yaml' 2025-06-05T23:22:14.9871305Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/where.yaml' 2025-06-05T23:22:14.9871489Z adding 'executorch/backends/vulkan/serialization/schema.fbs' 2025-06-05T23:22:14.9871734Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_builder.py' 2025-06-05T23:22:14.9871984Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_schema.py' 2025-06-05T23:22:14.9872239Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_serialize.py' 2025-06-05T23:22:15.0243889Z adding 'executorch/backends/vulkan/test/test_serialization.py' 2025-06-05T23:22:15.0244742Z adding 'executorch/backends/vulkan/test/test_vulkan_delegate.py' 2025-06-05T23:22:15.0245595Z adding 'executorch/backends/vulkan/test/test_vulkan_delegate_header.py' 2025-06-05T23:22:15.0246198Z adding 'executorch/backends/vulkan/test/test_vulkan_passes.py' 2025-06-05T23:22:15.0246774Z adding 'executorch/backends/vulkan/test/glsl/all_shaders.yaml' 2025-06-05T23:22:15.0247563Z adding 'executorch/backends/vulkan/test/glsl/dynamic_dispatch_test.yaml' 2025-06-05T23:22:15.0248215Z adding 'executorch/backends/vulkan/test/glsl/reference_matmul_common.yaml' 2025-06-05T23:22:15.0249058Z adding 'executorch/backends/vulkan/test/op_tests/cases.py' 2025-06-05T23:22:15.0249656Z adding 'executorch/backends/vulkan/test/op_tests/generate_op_benchmarks.py' 2025-06-05T23:22:15.0250300Z adding 'executorch/backends/vulkan/test/op_tests/generate_op_correctness_tests.py' 2025-06-05T23:22:15.0250950Z adding 'executorch/backends/vulkan/test/op_tests/utils/aten_types.py' 2025-06-05T23:22:15.0251713Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_benchmark_vk.py' 2025-06-05T23:22:15.0252389Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_computegraph.py' 2025-06-05T23:22:15.0253003Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_base.py' 2025-06-05T23:22:15.0253799Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_vk.py' 2025-06-05T23:22:15.0254401Z adding 'executorch/backends/vulkan/test/op_tests/utils/test_suite.py' 2025-06-05T23:22:15.0255042Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/apiconventions.py' 2025-06-05T23:22:15.0255810Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/cgenerator.py' 2025-06-05T23:22:15.0256843Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/conventions.py' 2025-06-05T23:22:15.0257550Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/generator.py' 2025-06-05T23:22:15.0258377Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/genvk.py' 2025-06-05T23:22:15.0259047Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/reg.py' 2025-06-05T23:22:15.0259731Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vkconventions.py' 2025-06-05T23:22:15.0260573Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/util.py' 2025-06-05T23:22:15.0261477Z adding 'executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis/GpuMemDumpVis.py' 2025-06-05T23:22:15.0262216Z adding 'executorch/backends/vulkan/third-party/volk/generate.py' 2025-06-05T23:22:15.0262801Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_bandwidth.yaml' 2025-06-05T23:22:15.0263574Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_cacheline_size.yaml' 2025-06-05T23:22:15.0264164Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/reg_count.yaml' 2025-06-05T23:22:15.0264739Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_bandwidth.yaml' 2025-06-05T23:22:15.0265778Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_cacheline_concurr.yaml' 2025-06-05T23:22:15.0266569Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/warp_size.yaml' 2025-06-05T23:22:15.0267053Z adding 'executorch/backends/xnnpack/__init__.py' 2025-06-05T23:22:15.0267472Z adding 'executorch/backends/xnnpack/xnnpack_preprocess.py' 2025-06-05T23:22:15.0267931Z adding 'executorch/backends/xnnpack/_passes/__init__.py' 2025-06-05T23:22:15.0268498Z adding 'executorch/backends/xnnpack/_passes/channels_last_tagged_reshape_pass.py' 2025-06-05T23:22:15.0269241Z adding 'executorch/backends/xnnpack/_passes/conv1d_unsqueeze_pass.py' 2025-06-05T23:22:15.0269773Z adding 'executorch/backends/xnnpack/_passes/convert_to_linear.py' 2025-06-05T23:22:15.0270280Z adding 'executorch/backends/xnnpack/_passes/convert_to_sdpa.py' 2025-06-05T23:22:15.0270850Z adding 'executorch/backends/xnnpack/_passes/convert_to_upsample_bilinear2d.py' 2025-06-05T23:22:15.0271505Z adding 'executorch/backends/xnnpack/_passes/decompose_cat.py' 2025-06-05T23:22:15.0272096Z adding 'executorch/backends/xnnpack/_passes/fuse_activation_pass.py' 2025-06-05T23:22:15.0272648Z adding 'executorch/backends/xnnpack/_passes/fuse_batch_norm_with_conv.py' 2025-06-05T23:22:15.0273221Z adding 'executorch/backends/xnnpack/_passes/prelu_reshape_pass.py' 2025-06-05T23:22:15.0273856Z adding 'executorch/backends/xnnpack/_passes/tag_implicit_q_dq_pass.py' 2025-06-05T23:22:15.0274542Z adding 'executorch/backends/xnnpack/_passes/xnnpack_pass.py' 2025-06-05T23:22:15.0275011Z adding 'executorch/backends/xnnpack/operators/__init__.py' 2025-06-05T23:22:15.0275475Z adding 'executorch/backends/xnnpack/operators/node_visitor.py' 2025-06-05T23:22:15.0275955Z adding 'executorch/backends/xnnpack/operators/op_abs.py' 2025-06-05T23:22:15.0276473Z adding 'executorch/backends/xnnpack/operators/op_add.py' 2025-06-05T23:22:15.0277035Z adding 'executorch/backends/xnnpack/operators/op_addmm.py' 2025-06-05T23:22:15.0277529Z adding 'executorch/backends/xnnpack/operators/op_avg_pooling2d.py' 2025-06-05T23:22:15.0278024Z adding 'executorch/backends/xnnpack/operators/op_bmm.py' 2025-06-05T23:22:15.0278466Z adding 'executorch/backends/xnnpack/operators/op_cat.py' 2025-06-05T23:22:15.0278996Z adding 'executorch/backends/xnnpack/operators/op_ceiling.py' 2025-06-05T23:22:15.0279565Z adding 'executorch/backends/xnnpack/operators/op_clamp.py' 2025-06-05T23:22:15.0280016Z adding 'executorch/backends/xnnpack/operators/op_conv2d.py' 2025-06-05T23:22:15.0280472Z adding 'executorch/backends/xnnpack/operators/op_div.py' 2025-06-05T23:22:15.0280991Z adding 'executorch/backends/xnnpack/operators/op_dynamic_dequantize_ops.py' 2025-06-05T23:22:15.0281928Z adding 'executorch/backends/xnnpack/operators/op_dynamic_quantize_ops.py' 2025-06-05T23:22:15.0282458Z adding 'executorch/backends/xnnpack/operators/op_elu.py' 2025-06-05T23:22:15.0282888Z adding 'executorch/backends/xnnpack/operators/op_exp.py' 2025-06-05T23:22:15.0283354Z adding 'executorch/backends/xnnpack/operators/op_floor.py' 2025-06-05T23:22:15.0283864Z adding 'executorch/backends/xnnpack/operators/op_gelu.py' 2025-06-05T23:22:15.0284436Z adding 'executorch/backends/xnnpack/operators/op_hardswish.py' 2025-06-05T23:22:15.0284918Z adding 'executorch/backends/xnnpack/operators/op_hardtanh.py' 2025-06-05T23:22:15.0285414Z adding 'executorch/backends/xnnpack/operators/op_leaky_relu.py' 2025-06-05T23:22:15.0285902Z adding 'executorch/backends/xnnpack/operators/op_linear.py' 2025-06-05T23:22:15.0286381Z adding 'executorch/backends/xnnpack/operators/op_log.py' 2025-06-05T23:22:15.0287056Z adding 'executorch/backends/xnnpack/operators/op_matrix_multiplication.py' 2025-06-05T23:22:15.0287600Z adding 'executorch/backends/xnnpack/operators/op_max_dim.py' 2025-06-05T23:22:15.0288092Z adding 'executorch/backends/xnnpack/operators/op_max_pool2d.py' 2025-06-05T23:22:15.0288670Z adding 'executorch/backends/xnnpack/operators/op_maximum.py' 2025-06-05T23:22:15.0289228Z adding 'executorch/backends/xnnpack/operators/op_mean_dim.py' 2025-06-05T23:22:15.0289701Z adding 'executorch/backends/xnnpack/operators/op_minimum.py' 2025-06-05T23:22:15.0290183Z adding 'executorch/backends/xnnpack/operators/op_multiply.py' 2025-06-05T23:22:15.0290662Z adding 'executorch/backends/xnnpack/operators/op_negate.py' 2025-06-05T23:22:15.0291120Z adding 'executorch/backends/xnnpack/operators/op_permute.py' 2025-06-05T23:22:15.0291588Z adding 'executorch/backends/xnnpack/operators/op_prelu.py' 2025-06-05T23:22:15.0292071Z adding 'executorch/backends/xnnpack/operators/op_quant_dequant.py' 2025-06-05T23:22:15.0292597Z adding 'executorch/backends/xnnpack/operators/op_relu.py' 2025-06-05T23:22:15.0293185Z adding 'executorch/backends/xnnpack/operators/op_rsqrt.py' 2025-06-05T23:22:15.0293639Z adding 'executorch/backends/xnnpack/operators/op_sdpa.py' 2025-06-05T23:22:15.0294102Z adding 'executorch/backends/xnnpack/operators/op_sigmoid.py' 2025-06-05T23:22:15.0294578Z adding 'executorch/backends/xnnpack/operators/op_skip_ops.py' 2025-06-05T23:22:15.0295074Z adding 'executorch/backends/xnnpack/operators/op_slice_copy.py' 2025-06-05T23:22:15.0295640Z adding 'executorch/backends/xnnpack/operators/op_softmax.py' 2025-06-05T23:22:15.0296209Z adding 'executorch/backends/xnnpack/operators/op_square.py' 2025-06-05T23:22:15.0296686Z adding 'executorch/backends/xnnpack/operators/op_square_root.py' 2025-06-05T23:22:15.0297184Z adding 'executorch/backends/xnnpack/operators/op_squeeze.py' 2025-06-05T23:22:15.0297778Z adding 'executorch/backends/xnnpack/operators/op_static_constant_pad.py' 2025-06-05T23:22:15.0298501Z adding 'executorch/backends/xnnpack/operators/op_static_resize_bilinear_2d.py' 2025-06-05T23:22:15.0299048Z adding 'executorch/backends/xnnpack/operators/op_sub.py' 2025-06-05T23:22:15.0299493Z adding 'executorch/backends/xnnpack/operators/op_to_copy.py' 2025-06-05T23:22:15.0300057Z adding 'executorch/backends/xnnpack/operators/quant_params.py' 2025-06-05T23:22:15.0300621Z adding 'executorch/backends/xnnpack/partition/configs.py' 2025-06-05T23:22:15.0301133Z adding 'executorch/backends/xnnpack/partition/xnnpack_partitioner.py' 2025-06-05T23:22:15.0301712Z adding 'executorch/backends/xnnpack/partition/config/__init__.py' 2025-06-05T23:22:15.0302369Z adding 'executorch/backends/xnnpack/partition/config/gemm_configs.py' 2025-06-05T23:22:15.0302971Z adding 'executorch/backends/xnnpack/partition/config/generic_node_configs.py' 2025-06-05T23:22:15.0303558Z adding 'executorch/backends/xnnpack/partition/config/node_configs.py' 2025-06-05T23:22:15.0304264Z adding 'executorch/backends/xnnpack/partition/config/quant_affine_configs.py' 2025-06-05T23:22:15.0305045Z adding 'executorch/backends/xnnpack/partition/config/xnnpack_config.py' 2025-06-05T23:22:15.0305689Z adding 'executorch/backends/xnnpack/partition/graphs/bilinear_2d.py' 2025-06-05T23:22:15.0306294Z adding 'executorch/backends/xnnpack/partition/graphs/sdpa.py' 2025-06-05T23:22:15.0306908Z adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py' 2025-06-05T23:22:15.0307487Z adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer_utils.py' 2025-06-05T23:22:15.0308063Z adding 'executorch/backends/xnnpack/serialization/runtime_schema.fbs' 2025-06-05T23:22:15.0308659Z adding 'executorch/backends/xnnpack/serialization/schema.fbs' 2025-06-05T23:22:15.0309292Z adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_schema.py' 2025-06-05T23:22:15.0309921Z adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_serialize.py' 2025-06-05T23:22:15.0310492Z adding 'executorch/backends/xnnpack/test/test_xnnpack_utils.py' 2025-06-05T23:22:15.0311073Z adding 'executorch/backends/xnnpack/test/test_xnnpack_utils_classes.py' 2025-06-05T23:22:15.0311741Z adding 'executorch/backends/xnnpack/test/models/deeplab_v3.py' 2025-06-05T23:22:15.0312202Z adding 'executorch/backends/xnnpack/test/models/edsr.py' 2025-06-05T23:22:15.0312682Z adding 'executorch/backends/xnnpack/test/models/emformer_rnnt.py' 2025-06-05T23:22:15.0313267Z adding 'executorch/backends/xnnpack/test/models/inception_v3.py' 2025-06-05T23:22:15.0534661Z adding 'executorch/backends/xnnpack/test/models/inception_v4.py' 2025-06-05T23:22:15.0535375Z adding 'executorch/backends/xnnpack/test/models/llama2_et_example.py' 2025-06-05T23:22:15.0535938Z adding 'executorch/backends/xnnpack/test/models/mobilebert.py' 2025-06-05T23:22:15.0536606Z adding 'executorch/backends/xnnpack/test/models/mobilenet_v2.py' 2025-06-05T23:22:15.0537115Z adding 'executorch/backends/xnnpack/test/models/mobilenet_v3.py' 2025-06-05T23:22:15.0537605Z adding 'executorch/backends/xnnpack/test/models/resnet.py' 2025-06-05T23:22:15.0538117Z adding 'executorch/backends/xnnpack/test/models/torchvision_vit.py' 2025-06-05T23:22:15.0538639Z adding 'executorch/backends/xnnpack/test/models/very_big_model.py' 2025-06-05T23:22:15.0539122Z adding 'executorch/backends/xnnpack/test/models/w2l.py' 2025-06-05T23:22:15.0539587Z adding 'executorch/backends/xnnpack/test/ops/test_abs.py' 2025-06-05T23:22:15.0540194Z adding 'executorch/backends/xnnpack/test/ops/test_add.py' 2025-06-05T23:22:15.0540660Z adding 'executorch/backends/xnnpack/test/ops/test_avgpool2d.py' 2025-06-05T23:22:15.0541175Z adding 'executorch/backends/xnnpack/test/ops/test_bilinear2d.py' 2025-06-05T23:22:15.0541653Z adding 'executorch/backends/xnnpack/test/ops/test_bmm.py' 2025-06-05T23:22:15.0542104Z adding 'executorch/backends/xnnpack/test/ops/test_cat.py' 2025-06-05T23:22:15.0542611Z adding 'executorch/backends/xnnpack/test/ops/test_ceil.py' 2025-06-05T23:22:15.0543314Z adding 'executorch/backends/xnnpack/test/ops/test_check_quant_params.py' 2025-06-05T23:22:15.0543858Z adding 'executorch/backends/xnnpack/test/ops/test_clamp.py' 2025-06-05T23:22:15.0544349Z adding 'executorch/backends/xnnpack/test/ops/test_conv1d.py' 2025-06-05T23:22:15.0545008Z adding 'executorch/backends/xnnpack/test/ops/test_conv2d.py' 2025-06-05T23:22:15.0545506Z adding 'executorch/backends/xnnpack/test/ops/test_div.py' 2025-06-05T23:22:15.0546019Z adding 'executorch/backends/xnnpack/test/ops/test_elu.py' 2025-06-05T23:22:15.0546463Z adding 'executorch/backends/xnnpack/test/ops/test_exp.py' 2025-06-05T23:22:15.0546944Z adding 'executorch/backends/xnnpack/test/ops/test_floor.py' 2025-06-05T23:22:15.0547561Z adding 'executorch/backends/xnnpack/test/ops/test_gelu.py' 2025-06-05T23:22:15.0548028Z adding 'executorch/backends/xnnpack/test/ops/test_hardswish.py' 2025-06-05T23:22:15.0548524Z adding 'executorch/backends/xnnpack/test/ops/test_hardtanh.py' 2025-06-05T23:22:15.0549107Z adding 'executorch/backends/xnnpack/test/ops/test_leaky_relu.py' 2025-06-05T23:22:15.0549840Z adding 'executorch/backends/xnnpack/test/ops/test_linear.py' 2025-06-05T23:22:15.0550301Z adding 'executorch/backends/xnnpack/test/ops/test_log.py' 2025-06-05T23:22:15.0550736Z adding 'executorch/backends/xnnpack/test/ops/test_lstm.py' 2025-06-05T23:22:15.0551256Z adding 'executorch/backends/xnnpack/test/ops/test_max_dim.py' 2025-06-05T23:22:15.0551891Z adding 'executorch/backends/xnnpack/test/ops/test_maximum.py' 2025-06-05T23:22:15.0552374Z adding 'executorch/backends/xnnpack/test/ops/test_maxpool2d.py' 2025-06-05T23:22:15.0552869Z adding 'executorch/backends/xnnpack/test/ops/test_mean_dim.py' 2025-06-05T23:22:15.0553376Z adding 'executorch/backends/xnnpack/test/ops/test_minimum.py' 2025-06-05T23:22:15.0554003Z adding 'executorch/backends/xnnpack/test/ops/test_multiply.py' 2025-06-05T23:22:15.0554489Z adding 'executorch/backends/xnnpack/test/ops/test_negate.py' 2025-06-05T23:22:15.0554953Z adding 'executorch/backends/xnnpack/test/ops/test_permute.py' 2025-06-05T23:22:15.0555473Z adding 'executorch/backends/xnnpack/test/ops/test_pow.py' 2025-06-05T23:22:15.0556077Z adding 'executorch/backends/xnnpack/test/ops/test_prelu.py' 2025-06-05T23:22:15.0556600Z adding 'executorch/backends/xnnpack/test/ops/test_quantize_per_tensor.py' 2025-06-05T23:22:15.0557135Z adding 'executorch/backends/xnnpack/test/ops/test_relu.py' 2025-06-05T23:22:15.0557710Z adding 'executorch/backends/xnnpack/test/ops/test_rsqrt.py' 2025-06-05T23:22:15.0558275Z adding 'executorch/backends/xnnpack/test/ops/test_sdpa.py' 2025-06-05T23:22:15.0558786Z adding 'executorch/backends/xnnpack/test/ops/test_sigmoid.py' 2025-06-05T23:22:15.0559286Z adding 'executorch/backends/xnnpack/test/ops/test_slice_copy.py' 2025-06-05T23:22:15.0559821Z adding 'executorch/backends/xnnpack/test/ops/test_softmax.py' 2025-06-05T23:22:15.0560370Z adding 'executorch/backends/xnnpack/test/ops/test_sqrt.py' 2025-06-05T23:22:15.0560890Z adding 'executorch/backends/xnnpack/test/ops/test_square.py' 2025-06-05T23:22:15.0561421Z adding 'executorch/backends/xnnpack/test/ops/test_static_constant_pad.py' 2025-06-05T23:22:15.0561981Z adding 'executorch/backends/xnnpack/test/ops/test_sub.py' 2025-06-05T23:22:15.0562583Z adding 'executorch/backends/xnnpack/test/passes/test_activation_fusion.py' 2025-06-05T23:22:15.0563262Z adding 'executorch/backends/xnnpack/test/passes/test_batch_norm_fusion.py' 2025-06-05T23:22:15.0563922Z adding 'executorch/backends/xnnpack/test/passes/test_channels_last_tagged_reshape.py' 2025-06-05T23:22:15.0564573Z adding 'executorch/backends/xnnpack/test/passes/test_convert_to_linear.py' 2025-06-05T23:22:15.0565403Z adding 'executorch/backends/xnnpack/test/passes/test_decompose_cat_pass.py' 2025-06-05T23:22:15.0566172Z adding 'executorch/backends/xnnpack/test/passes/test_remove_get_item_pass.py' 2025-06-05T23:22:15.0566814Z adding 'executorch/backends/xnnpack/test/passes/test_tag_implicit_q_dq_pass.py' 2025-06-05T23:22:15.0567467Z adding 'executorch/backends/xnnpack/test/quantizer/test_pt2e_quantization.py' 2025-06-05T23:22:15.0568129Z adding 'executorch/backends/xnnpack/test/quantizer/test_representation.py' 2025-06-05T23:22:15.0568889Z adding 'executorch/backends/xnnpack/test/quantizer/test_xnnpack_quantizer.py' 2025-06-05T23:22:15.0569520Z adding 'executorch/backends/xnnpack/test/serialization/test_serialization.py' 2025-06-05T23:22:15.0570225Z adding 'executorch/backends/xnnpack/test/serialization/test_xnnheader.py' 2025-06-05T23:22:15.0570857Z adding 'executorch/backends/xnnpack/test/tester/__init__.py' 2025-06-05T23:22:15.0571321Z adding 'executorch/backends/xnnpack/test/tester/tester.py' 2025-06-05T23:22:15.0571913Z adding 'executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py' 2025-06-05T23:22:15.0572641Z adding 'executorch/backends/xnnpack/third-party/FP16/configure.py' 2025-06-05T23:22:15.0573168Z adding 'executorch/backends/xnnpack/third-party/FP16/confu.yaml' 2025-06-05T23:22:15.0573727Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/__init__.py' 2025-06-05T23:22:15.0574506Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx.py' 2025-06-05T23:22:15.0575235Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx2.py' 2025-06-05T23:22:15.0575845Z adding 'executorch/backends/xnnpack/third-party/FP16/test/peachpy/stubs.py' 2025-06-05T23:22:15.0576431Z adding 'executorch/backends/xnnpack/third-party/FXdiv/configure.py' 2025-06-05T23:22:15.0576949Z adding 'executorch/backends/xnnpack/third-party/FXdiv/confu.yaml' 2025-06-05T23:22:15.0577579Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_config.py' 2025-06-05T23:22:15.0578409Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_files_changed.py' 2025-06-05T23:22:15.0579176Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py' 2025-06-05T23:22:15.0579918Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py' 2025-06-05T23:22:15.0580602Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-gemm-minmax.yaml' 2025-06-05T23:22:15.0581397Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-conv-hwc2chw.yaml' 2025-06-05T23:22:15.0582137Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-dwconv2d-chw.yaml' 2025-06-05T23:22:15.0582943Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-gemm-minmax.yaml' 2025-06-05T23:22:15.0583715Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-igemm-minmax.yaml' 2025-06-05T23:22:15.0584582Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rdsum.yaml' 2025-06-05T23:22:15.0585261Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rsum.yaml' 2025-06-05T23:22:15.0585991Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-gemm-minmax.yaml' 2025-06-05T23:22:15.0586681Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear-chw.yaml' 2025-06-05T23:22:15.0587470Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear.yaml' 2025-06-05T23:22:15.0588218Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-igemm-minmax.yaml' 2025-06-05T23:22:15.0588946Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-raddstoreexpminusmax.yaml' 2025-06-05T23:22:15.0589632Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmax.yaml' 2025-06-05T23:22:15.0590243Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmin.yaml' 2025-06-05T23:22:15.0590853Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rminmax.yaml' 2025-06-05T23:22:15.0591473Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rsum.yaml' 2025-06-05T23:22:15.0592138Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-spmm-minmax.yaml' 2025-06-05T23:22:15.0592993Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-vmulcaddc-minmax.yaml' 2025-06-05T23:22:15.0593697Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-argmaxpool.yaml' 2025-06-05T23:22:15.0594341Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc.yaml' 2025-06-05T23:22:15.0595003Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc2chw.yaml' 2025-06-05T23:22:15.0595674Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-dwconv2d-chw.yaml' 2025-06-05T23:22:15.0596367Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-goi-minmax.yaml' 2025-06-05T23:22:15.0597057Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-minmax.yaml' 2025-06-05T23:22:15.0597791Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-relu.yaml' 2025-06-05T23:22:15.0598546Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm.yaml' 2025-06-05T23:22:15.0599189Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemminc-minmax.yaml' 2025-06-05T23:22:15.0599998Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear-chw.yaml' 2025-06-05T23:22:15.0600665Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear.yaml' 2025-06-05T23:22:15.0601341Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-minmax.yaml' 2025-06-05T23:22:15.0602051Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-relu.yaml' 2025-06-05T23:22:15.0602836Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm.yaml' 2025-06-05T23:22:15.0879291Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ppmm-minmax.yaml' 2025-06-05T23:22:15.0880091Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:22:15.0880963Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-minmax.yaml' 2025-06-05T23:22:15.0881725Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-relu.yaml' 2025-06-05T23:22:15.0882442Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm.yaml' 2025-06-05T23:22:15.0883289Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddexpminusmax.yaml' 2025-06-05T23:22:15.0883976Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddextexp.yaml' 2025-06-05T23:22:15.0884876Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddstoreexpminusmax.yaml' 2025-06-05T23:22:15.0885665Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rdsum.yaml' 2025-06-05T23:22:15.0886388Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmax.yaml' 2025-06-05T23:22:15.0887040Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmin.yaml' 2025-06-05T23:22:15.0887653Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rminmax.yaml' 2025-06-05T23:22:15.0888282Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rsum.yaml' 2025-06-05T23:22:15.0889130Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-spmm-minmax.yaml' 2025-06-05T23:22:15.0889922Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vmulcaddc-minmax.yaml' 2025-06-05T23:22:15.0890656Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleexpminusmax.yaml' 2025-06-05T23:22:15.0891529Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleextexp.yaml' 2025-06-05T23:22:15.0892380Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qb4w-gemm-minmax.yaml' 2025-06-05T23:22:15.0893127Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc4w-gemm-minmax.yaml' 2025-06-05T23:22:15.0893929Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-gemm-minmax.yaml' 2025-06-05T23:22:15.0894926Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-igemm-minmax.yaml' 2025-06-05T23:22:15.0895679Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qb4w-gemm-minmax.yaml' 2025-06-05T23:22:15.0896472Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:22:15.0897407Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-gemm-minmax.yaml' 2025-06-05T23:22:15.0898234Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-igemm-minmax.yaml' 2025-06-05T23:22:15.0898999Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qb4w-gemm-minmax.yaml' 2025-06-05T23:22:15.0899744Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:22:15.0900513Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-gemm-minmax-fp32.yaml' 2025-06-05T23:22:15.0901279Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-igemm-minmax-fp32.yaml' 2025-06-05T23:22:15.0902044Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rdsum-minmax-fp32.yaml' 2025-06-05T23:22:15.0902870Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rsum.yaml' 2025-06-05T23:22:15.0903530Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-fp32.yaml' 2025-06-05T23:22:15.0904263Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-rndnu.yaml' 2025-06-05T23:22:15.0904991Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-fp32.yaml' 2025-06-05T23:22:15.0905808Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-rndnu.yaml' 2025-06-05T23:22:15.0906501Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rdsum.yaml' 2025-06-05T23:22:15.0907110Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rsum.yaml' 2025-06-05T23:22:15.0907746Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/s8-ibilinear.yaml' 2025-06-05T23:22:15.0908383Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-ibilinear.yaml' 2025-06-05T23:22:15.0909036Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-lut32norm.yaml' 2025-06-05T23:22:15.0909649Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-rmax.yaml' 2025-06-05T23:22:15.0910248Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/x8-lut.yaml' 2025-06-05T23:22:15.0911000Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py' 2025-06-05T23:22:15.0911748Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py' 2025-06-05T23:22:15.0912513Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py' 2025-06-05T23:22:15.0913313Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py' 2025-06-05T23:22:15.0914164Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py' 2025-06-05T23:22:15.0914957Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py' 2025-06-05T23:22:15.0915706Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py' 2025-06-05T23:22:15.0916456Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py' 2025-06-05T23:22:15.0917228Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py' 2025-06-05T23:22:15.0917981Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py' 2025-06-05T23:22:15.0918685Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py' 2025-06-05T23:22:15.0930369Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py' 2025-06-05T23:22:15.0931194Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py' 2025-06-05T23:22:15.0932018Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py' 2025-06-05T23:22:15.0932861Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py' 2025-06-05T23:22:15.0933585Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py' 2025-06-05T23:22:15.0934307Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py' 2025-06-05T23:22:15.0935028Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py' 2025-06-05T23:22:15.0935730Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py' 2025-06-05T23:22:15.0936477Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py' 2025-06-05T23:22:15.0937265Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py' 2025-06-05T23:22:15.0938084Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py' 2025-06-05T23:22:15.0938841Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py' 2025-06-05T23:22:15.0939630Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/primes.py' 2025-06-05T23:22:15.0940284Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py' 2025-06-05T23:22:15.0940922Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xngen.py' 2025-06-05T23:22:15.0941535Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xnncommon.py' 2025-06-05T23:22:15.0942114Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/configure.py' 2025-06-05T23:22:15.0942667Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/confu.yaml' 2025-06-05T23:22:15.0943263Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/configure.py' 2025-06-05T23:22:15.0943894Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/confu.yaml' 2025-06-05T23:22:15.0944574Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py' 2025-06-05T23:22:15.0945326Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py' 2025-06-05T23:22:15.0946156Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py' 2025-06-05T23:22:15.0946809Z adding 'executorch/backends/xnnpack/third-party/pthreadpool/configure.py' 2025-06-05T23:22:15.0947458Z adding 'executorch/backends/xnnpack/third-party/pthreadpool/confu.yaml' 2025-06-05T23:22:15.0947941Z adding 'executorch/backends/xnnpack/utils/configs.py' 2025-06-05T23:22:15.0948358Z adding 'executorch/backends/xnnpack/utils/quant_utils.py' 2025-06-05T23:22:15.0948781Z adding 'executorch/backends/xnnpack/utils/utils.py' 2025-06-05T23:22:15.0949225Z adding 'executorch/backends/xnnpack/utils/xnnpack_constants.py' 2025-06-05T23:22:15.0949656Z adding 'executorch/codegen/__init__.py' 2025-06-05T23:22:15.0949971Z adding 'executorch/codegen/gen.py' 2025-06-05T23:22:15.0950290Z adding 'executorch/codegen/model.py' 2025-06-05T23:22:15.0950597Z adding 'executorch/codegen/parse.py' 2025-06-05T23:22:15.0950928Z adding 'executorch/codegen/api/__init__.py' 2025-06-05T23:22:15.0951273Z adding 'executorch/codegen/api/custom_ops.py' 2025-06-05T23:22:15.0951623Z adding 'executorch/codegen/api/et_cpp.py' 2025-06-05T23:22:15.0951966Z adding 'executorch/codegen/api/unboxing.py' 2025-06-05T23:22:15.0952324Z adding 'executorch/codegen/api/types/__init__.py' 2025-06-05T23:22:15.0952719Z adding 'executorch/codegen/api/types/signatures.py' 2025-06-05T23:22:15.0953096Z adding 'executorch/codegen/api/types/types.py' 2025-06-05T23:22:15.0953524Z adding 'executorch/codegen/test/test_executorch_custom_ops.py' 2025-06-05T23:22:15.0953977Z adding 'executorch/codegen/test/test_executorch_gen.py' 2025-06-05T23:22:15.0954438Z adding 'executorch/codegen/test/test_executorch_signatures.py' 2025-06-05T23:22:15.0954898Z adding 'executorch/codegen/test/test_executorch_types.py' 2025-06-05T23:22:15.0955360Z adding 'executorch/codegen/test/test_executorch_unboxing.py' 2025-06-05T23:22:15.0955821Z adding 'executorch/codegen/test/test_selective_build.py' 2025-06-05T23:22:15.0956211Z adding 'executorch/codegen/tools/__init__.py' 2025-06-05T23:22:15.0956589Z adding 'executorch/codegen/tools/gen_all_oplist.py' 2025-06-05T23:22:15.0956962Z adding 'executorch/codegen/tools/gen_oplist.py' 2025-06-05T23:22:15.0957342Z adding 'executorch/codegen/tools/gen_ops_def.py' 2025-06-05T23:22:15.4194826Z adding 'executorch/codegen/tools/gen_selected_op_variants.py' 2025-06-05T23:22:15.4195385Z adding 'executorch/codegen/tools/merge_yaml.py' 2025-06-05T23:22:15.4195767Z adding 'executorch/codegen/tools/yaml_util.py' 2025-06-05T23:22:15.4196221Z adding 'executorch/codegen/tools/test/test_gen_all_oplist.py' 2025-06-05T23:22:15.4196733Z adding 'executorch/codegen/tools/test/test_gen_oplist.py' 2025-06-05T23:22:15.4197359Z adding 'executorch/codegen/tools/test/test_gen_oplist_real_model.py' 2025-06-05T23:22:15.4197966Z adding 'executorch/codegen/tools/test/test_gen_selected_op_variants.py' 2025-06-05T23:22:15.4198677Z adding 'executorch/data/bin/__init__.py' 2025-06-05T23:22:15.4198990Z adding 'executorch/data/bin/flatc' 2025-06-05T23:22:15.4199315Z adding 'executorch/devtools/__init__.py' 2025-06-05T23:22:15.4199749Z adding 'executorch/devtools/backend_debug/__init__.py' 2025-06-05T23:22:15.4200273Z adding 'executorch/devtools/backend_debug/delegation_info.py' 2025-06-05T23:22:15.4200836Z adding 'executorch/devtools/backend_debug/tests/test_delegation_info.py' 2025-06-05T23:22:15.4201341Z adding 'executorch/devtools/bundled_program/config.py' 2025-06-05T23:22:15.4201754Z adding 'executorch/devtools/bundled_program/core.py' 2025-06-05T23:22:15.4202197Z adding 'executorch/devtools/bundled_program/version.py' 2025-06-05T23:22:15.4202772Z adding 'executorch/devtools/bundled_program/schema/__init__.py' 2025-06-05T23:22:15.4203332Z adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.fbs' 2025-06-05T23:22:15.4203969Z adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.py' 2025-06-05T23:22:15.4204536Z adding 'executorch/devtools/bundled_program/schema/scalar_type.fbs' 2025-06-05T23:22:15.4205085Z adding 'executorch/devtools/bundled_program/schema/test/test_schema.py' 2025-06-05T23:22:15.4205793Z adding 'executorch/devtools/bundled_program/serialize/__init__.py' 2025-06-05T23:22:15.4206373Z adding 'executorch/devtools/bundled_program/serialize/bundled_program_schema.fbs' 2025-06-05T23:22:15.4206984Z adding 'executorch/devtools/bundled_program/serialize/scalar_type.fbs' 2025-06-05T23:22:15.4207562Z adding 'executorch/devtools/bundled_program/serialize/test/test_serialize.py' 2025-06-05T23:22:15.4208150Z adding 'executorch/devtools/bundled_program/test/test_bundle_data.py' 2025-06-05T23:22:15.4208670Z adding 'executorch/devtools/bundled_program/test/test_config.py' 2025-06-05T23:22:15.4209189Z adding 'executorch/devtools/bundled_program/test/test_end2end.py' 2025-06-05T23:22:15.4209698Z adding 'executorch/devtools/bundled_program/util/test_util.py' 2025-06-05T23:22:15.4210156Z adding 'executorch/devtools/debug_format/base_schema.py' 2025-06-05T23:22:15.4210597Z adding 'executorch/devtools/debug_format/et_schema.py' 2025-06-05T23:22:15.4211110Z adding 'executorch/devtools/etdump/etdump_schema_flatcc.fbs' 2025-06-05T23:22:15.4211646Z adding 'executorch/devtools/etdump/scalar_type.fbs' 2025-06-05T23:22:15.4212039Z adding 'executorch/devtools/etdump/schema_flatcc.py' 2025-06-05T23:22:15.4212436Z adding 'executorch/devtools/etdump/serialize.py' 2025-06-05T23:22:15.4212862Z adding 'executorch/devtools/etdump/tests/serialize_test.py' 2025-06-05T23:22:15.4213277Z adding 'executorch/devtools/etrecord/__init__.py' 2025-06-05T23:22:15.4213697Z adding 'executorch/devtools/etrecord/_etrecord.py' 2025-06-05T23:22:15.4214207Z adding 'executorch/devtools/etrecord/tests/etrecord_test.py' 2025-06-05T23:22:15.4214682Z adding 'executorch/devtools/inspector/__init__.py' 2025-06-05T23:22:15.4215079Z adding 'executorch/devtools/inspector/_inspector.py' 2025-06-05T23:22:15.4215516Z adding 'executorch/devtools/inspector/_inspector_utils.py' 2025-06-05T23:22:15.4216065Z adding 'executorch/devtools/inspector/_intermediate_output_capturer.py' 2025-06-05T23:22:15.4216712Z adding 'executorch/devtools/inspector/inspector_cli.py' 2025-06-05T23:22:15.4217197Z adding 'executorch/devtools/inspector/tests/event_blocks_test.py' 2025-06-05T23:22:15.4217697Z adding 'executorch/devtools/inspector/tests/inspector_test.py' 2025-06-05T23:22:15.4218223Z adding 'executorch/devtools/inspector/tests/inspector_test_utils.py' 2025-06-05T23:22:15.4218764Z adding 'executorch/devtools/inspector/tests/inspector_utils_test.py' 2025-06-05T23:22:15.4219380Z adding 'executorch/devtools/inspector/tests/intermediate_output_capturer_test.py' 2025-06-05T23:22:15.4219991Z adding 'executorch/devtools/size_analysis_tool/size_analysis_tool.py' 2025-06-05T23:22:15.4220560Z adding 'executorch/devtools/size_analysis_tool/size_analysis_tool_test.py' 2025-06-05T23:22:15.4221259Z adding 'executorch/devtools/visualization/__init__.py' 2025-06-05T23:22:15.4221795Z adding 'executorch/devtools/visualization/visualization_utils.py' 2025-06-05T23:22:15.4222350Z adding 'executorch/devtools/visualization/visualization_utils_test.py' 2025-06-05T23:22:15.4222862Z adding 'executorch/examples/apple/coreml/llama/export.py' 2025-06-05T23:22:15.4223372Z adding 'executorch/examples/apple/coreml/llama/llama_transformer.py' 2025-06-05T23:22:15.4223932Z adding 'executorch/examples/apple/coreml/llama/run.py' 2025-06-05T23:22:15.4224454Z adding 'executorch/examples/apple/coreml/llama/test.py' 2025-06-05T23:22:15.4224896Z adding 'executorch/examples/apple/coreml/llama/utils.py' 2025-06-05T23:22:15.4225368Z adding 'executorch/examples/apple/coreml/scripts/debugger_cli.py' 2025-06-05T23:22:15.4225939Z adding 'executorch/examples/apple/coreml/scripts/export.py' 2025-06-05T23:22:15.4226497Z adding 'executorch/examples/apple/coreml/scripts/extract_coreml_models.py' 2025-06-05T23:22:15.4227078Z adding 'executorch/examples/apple/coreml/scripts/inspector_cli.py' 2025-06-05T23:22:15.4227700Z adding 'executorch/examples/apple/coreml/scripts/inspector_utils.py' 2025-06-05T23:22:15.4228304Z adding 'executorch/examples/apple/mps/scripts/bench_utils.py' 2025-06-05T23:22:15.4228868Z adding 'executorch/examples/apple/mps/scripts/mps_example.py' 2025-06-05T23:22:15.4229330Z adding 'executorch/examples/llm_pte_finetuning/__init__.py' 2025-06-05T23:22:15.4229823Z adding 'executorch/examples/llm_pte_finetuning/llama3_config.yaml' 2025-06-05T23:22:15.4230368Z adding 'executorch/examples/llm_pte_finetuning/model_exporter.py' 2025-06-05T23:22:15.4231026Z adding 'executorch/examples/llm_pte_finetuning/model_loading_lib.py' 2025-06-05T23:22:15.4231599Z adding 'executorch/examples/llm_pte_finetuning/phi3_alpaca_code_config.yaml' 2025-06-05T23:22:15.4232153Z adding 'executorch/examples/llm_pte_finetuning/phi3_config.yaml' 2025-06-05T23:22:15.4232680Z adding 'executorch/examples/llm_pte_finetuning/qwen_05b_config.yaml' 2025-06-05T23:22:15.4233162Z adding 'executorch/examples/llm_pte_finetuning/runner.py' 2025-06-05T23:22:15.4233710Z adding 'executorch/examples/llm_pte_finetuning/training_lib.py' 2025-06-05T23:22:15.4234234Z adding 'executorch/examples/models/__init__.py' 2025-06-05T23:22:15.4234630Z adding 'executorch/examples/models/checkpoint.py' 2025-06-05T23:22:15.4235021Z adding 'executorch/examples/models/model_base.py' 2025-06-05T23:22:15.4235408Z adding 'executorch/examples/models/model_factory.py' 2025-06-05T23:22:15.4235842Z adding 'executorch/examples/models/deeplab_v3/__init__.py' 2025-06-05T23:22:15.4236344Z adding 'executorch/examples/models/deeplab_v3/model.py' 2025-06-05T23:22:15.4236856Z adding 'executorch/examples/models/edsr/__init__.py' 2025-06-05T23:22:15.4237239Z adding 'executorch/examples/models/edsr/model.py' 2025-06-05T23:22:15.4237673Z adding 'executorch/examples/models/efficient_sam/__init__.py' 2025-06-05T23:22:15.4238148Z adding 'executorch/examples/models/efficient_sam/model.py' 2025-06-05T23:22:15.4238820Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/build_efficient_sam.py' 2025-06-05T23:22:15.4239638Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam.py' 2025-06-05T23:22:15.4240365Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_decoder.py' 2025-06-05T23:22:15.4241204Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_encoder.py' 2025-06-05T23:22:15.4241981Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/mlp.py' 2025-06-05T23:22:15.4242661Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/two_way_transformer.py' 2025-06-05T23:22:15.4243279Z adding 'executorch/examples/models/emformer_rnnt/__init__.py' 2025-06-05T23:22:15.4243814Z adding 'executorch/examples/models/emformer_rnnt/model.py' 2025-06-05T23:22:15.4244463Z adding 'executorch/examples/models/inception_v3/__init__.py' 2025-06-05T23:22:15.4244917Z adding 'executorch/examples/models/inception_v3/model.py' 2025-06-05T23:22:15.4245381Z adding 'executorch/examples/models/inception_v4/__init__.py' 2025-06-05T23:22:15.4245845Z adding 'executorch/examples/models/inception_v4/model.py' 2025-06-05T23:22:15.4246305Z adding 'executorch/examples/models/llama/__init__.py' 2025-06-05T23:22:15.4246856Z adding 'executorch/examples/models/llama/attention.py' 2025-06-05T23:22:15.4247275Z adding 'executorch/examples/models/llama/eval_llama.py' 2025-06-05T23:22:15.4247717Z adding 'executorch/examples/models/llama/eval_llama_lib.py' 2025-06-05T23:22:15.4248155Z adding 'executorch/examples/models/llama/export_llama.py' 2025-06-05T23:22:15.4248617Z adding 'executorch/examples/models/llama/export_llama_lib.py' 2025-06-05T23:22:15.4249052Z adding 'executorch/examples/models/llama/fairseq2.py' 2025-06-05T23:22:15.4249481Z adding 'executorch/examples/models/llama/hf_download.py' 2025-06-05T23:22:15.4250029Z adding 'executorch/examples/models/llama/install_requirement_helper.py' 2025-06-05T23:22:15.4250689Z adding 'executorch/examples/models/llama/llama_transformer.py' 2025-06-05T23:22:15.4251136Z adding 'executorch/examples/models/llama/model.py' 2025-06-05T23:22:15.4251608Z adding 'executorch/examples/models/llama/model_args.py' 2025-06-05T23:22:15.4252020Z adding 'executorch/examples/models/llama/norm.py' 2025-06-05T23:22:15.4252395Z adding 'executorch/examples/models/llama/rope.py' 2025-06-05T23:22:15.4252837Z adding 'executorch/examples/models/llama/static_attention.py' 2025-06-05T23:22:15.4253328Z adding 'executorch/examples/models/llama/evaluate/__init__.py' 2025-06-05T23:22:15.4253832Z adding 'executorch/examples/models/llama/evaluate/eager_eval.py' 2025-06-05T23:22:15.4254499Z adding 'executorch/examples/models/llama/experimental/generate.py' 2025-06-05T23:22:15.4255200Z adding 'executorch/examples/models/llama/experimental/load_gguf_q4_0.py' 2025-06-05T23:22:15.4255799Z adding 'executorch/examples/models/llama/experimental/subclass.py' 2025-06-05T23:22:15.4256346Z adding 'executorch/examples/models/llama/experimental/test_subclass.py' 2025-06-05T23:22:15.4256900Z adding 'executorch/examples/models/llama/runner/eager.py' 2025-06-05T23:22:15.4257520Z adding 'executorch/examples/models/llama/runner/generation.py' 2025-06-05T23:22:15.4258036Z adding 'executorch/examples/models/llama/runner/native.py' 2025-06-05T23:22:15.4258570Z adding 'executorch/examples/models/llama/source_transformation/__init__.py' 2025-06-05T23:22:15.4259235Z adding 'executorch/examples/models/llama/source_transformation/apply_spin_quant_r1_r2.py' 2025-06-05T23:22:15.4259954Z adding 'executorch/examples/models/llama/source_transformation/attention.py' 2025-06-05T23:22:15.4260773Z adding 'executorch/examples/models/llama/source_transformation/attention_sink.py' 2025-06-05T23:22:15.4618943Z adding 'executorch/examples/models/llama/source_transformation/custom_kv_cache.py' 2025-06-05T23:22:15.4619669Z adding 'executorch/examples/models/llama/source_transformation/lora.py' 2025-06-05T23:22:15.4620306Z adding 'executorch/examples/models/llama/source_transformation/pre_quantization.py' 2025-06-05T23:22:15.4620987Z adding 'executorch/examples/models/llama/source_transformation/prune_vocab.py' 2025-06-05T23:22:15.4621751Z adding 'executorch/examples/models/llama/source_transformation/quantize.py' 2025-06-05T23:22:15.4622519Z adding 'executorch/examples/models/llama/source_transformation/rms_norm.py' 2025-06-05T23:22:15.4623117Z adding 'executorch/examples/models/llama/source_transformation/rope.py' 2025-06-05T23:22:15.4623684Z adding 'executorch/examples/models/llama/source_transformation/sdpa.py' 2025-06-05T23:22:15.4624290Z adding 'executorch/examples/models/llama/source_transformation/spin_quant.py' 2025-06-05T23:22:15.4625027Z adding 'executorch/examples/models/llama/source_transformation/test_attention_sink.py' 2025-06-05T23:22:15.4626281Z adding 'executorch/examples/models/llama/source_transformation/test_quantized_kv_cache.py' 2025-06-05T23:22:15.4627001Z adding 'executorch/examples/models/llama/source_transformation/test_quantized_sdpa.py' 2025-06-05T23:22:15.4628035Z adding 'executorch/examples/models/llama/source_transformation/test_sdpa_with_quantized_kv_cache.py' 2025-06-05T23:22:15.4628851Z adding 'executorch/examples/models/llama/source_transformation/vulkan_rope.py' 2025-06-05T23:22:15.4629511Z adding 'executorch/examples/models/llama/tests/test_export_llama_lib.py' 2025-06-05T23:22:15.4630328Z adding 'executorch/examples/models/llama/tests/test_pre_quantization_transforms.py' 2025-06-05T23:22:15.4631064Z adding 'executorch/examples/models/llama/tests/test_replace_kv_cache.py' 2025-06-05T23:22:15.4631649Z adding 'executorch/examples/models/llama/tests/test_ring_attention.py' 2025-06-05T23:22:15.4632201Z adding 'executorch/examples/models/llama/tests/test_ring_kv_cache.py' 2025-06-05T23:22:15.4632770Z adding 'executorch/examples/models/llama/tests/test_simple_sdpa.py' 2025-06-05T23:22:15.4633325Z adding 'executorch/examples/models/llama/tests/test_static_attention.py' 2025-06-05T23:22:15.4633882Z adding 'executorch/examples/models/llama/tokenizer/tiktoken.py' 2025-06-05T23:22:15.4634388Z adding 'executorch/examples/models/llama3_2_vision/__init__.py' 2025-06-05T23:22:15.4635069Z adding 'executorch/examples/models/llama3_2_vision/preprocess/__init__.py' 2025-06-05T23:22:15.4635720Z adding 'executorch/examples/models/llama3_2_vision/preprocess/export_preprocess.py' 2025-06-05T23:22:15.4636345Z adding 'executorch/examples/models/llama3_2_vision/preprocess/model.py' 2025-06-05T23:22:15.4636969Z adding 'executorch/examples/models/llama3_2_vision/preprocess/test_preprocess.py' 2025-06-05T23:22:15.4637563Z adding 'executorch/examples/models/llama3_2_vision/runner/eager.py' 2025-06-05T23:22:15.4638116Z adding 'executorch/examples/models/llama3_2_vision/runner/exported.py' 2025-06-05T23:22:15.4638691Z adding 'executorch/examples/models/llama3_2_vision/runner/generation.py' 2025-06-05T23:22:15.4639243Z adding 'executorch/examples/models/llama3_2_vision/runner/native.py' 2025-06-05T23:22:15.4639910Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/model.py' 2025-06-05T23:22:15.4640690Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/__init__.py' 2025-06-05T23:22:15.4641495Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/test_text_decoder.py' 2025-06-05T23:22:15.4642185Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/__init__.py' 2025-06-05T23:22:15.4642811Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/model.py' 2025-06-05T23:22:15.4643454Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/__init__.py' 2025-06-05T23:22:15.4644155Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/test_vision_encoder.py' 2025-06-05T23:22:15.4644744Z adding 'executorch/examples/models/llava/__init__.py' 2025-06-05T23:22:15.4645174Z adding 'executorch/examples/models/llava/export_llava.py' 2025-06-05T23:22:15.4645597Z adding 'executorch/examples/models/llava/model.py' 2025-06-05T23:22:15.4646029Z adding 'executorch/examples/models/llava/test/test_llava.py' 2025-06-05T23:22:15.4646488Z adding 'executorch/examples/models/llava/test/test_pte.py' 2025-06-05T23:22:15.4646919Z adding 'executorch/examples/models/lstm/__init__.py' 2025-06-05T23:22:15.4647305Z adding 'executorch/examples/models/lstm/model.py' 2025-06-05T23:22:15.4647727Z adding 'executorch/examples/models/mobilebert/__init__.py' 2025-06-05T23:22:15.4647889Z adding 'executorch/examples/models/mobilebert/model.py' 2025-06-05T23:22:15.4648063Z adding 'executorch/examples/models/mobilenet_v2/__init__.py' 2025-06-05T23:22:15.4648239Z adding 'executorch/examples/models/mobilenet_v2/model.py' 2025-06-05T23:22:15.4648413Z adding 'executorch/examples/models/mobilenet_v3/__init__.py' 2025-06-05T23:22:15.4648694Z adding 'executorch/examples/models/mobilenet_v3/model.py' 2025-06-05T23:22:15.4648923Z adding 'executorch/examples/models/moshi/mimi/test_mimi.py' 2025-06-05T23:22:15.4649186Z adding 'executorch/examples/models/phi-3-mini/__init__.py' 2025-06-05T23:22:15.4649437Z adding 'executorch/examples/models/phi-3-mini/eager.py' 2025-06-05T23:22:15.4649710Z adding 'executorch/examples/models/phi-3-mini/export_phi-3-mini.py' 2025-06-05T23:22:15.4649899Z adding 'executorch/examples/models/phi-3-mini/phi_3_mini.py' 2025-06-05T23:22:15.4650138Z adding 'executorch/examples/models/phi-3-mini/static_cache.py' 2025-06-05T23:22:15.4650348Z adding 'executorch/examples/models/phi-3-mini-lora/export_model.py' 2025-06-05T23:22:15.4650526Z adding 'executorch/examples/models/phi_4_mini/__init__.py' 2025-06-05T23:22:15.4650725Z adding 'executorch/examples/models/phi_4_mini/convert_weights.py' 2025-06-05T23:22:15.4650880Z adding 'executorch/examples/models/qwen2_5/__init__.py' 2025-06-05T23:22:15.4651172Z adding 'executorch/examples/models/qwen2_5/convert_weights.py' 2025-06-05T23:22:15.4651324Z adding 'executorch/examples/models/qwen3/__init__.py' 2025-06-05T23:22:15.4651499Z adding 'executorch/examples/models/qwen3/convert_weights.py' 2025-06-05T23:22:15.4651665Z adding 'executorch/examples/models/resnet/__init__.py' 2025-06-05T23:22:15.4651889Z adding 'executorch/examples/models/resnet/model.py' 2025-06-05T23:22:15.4652046Z adding 'executorch/examples/models/smollm2/__init__.py' 2025-06-05T23:22:15.4652232Z adding 'executorch/examples/models/smollm2/convert_weights.py' 2025-06-05T23:22:15.4652389Z adding 'executorch/examples/models/test/__init__.py' 2025-06-05T23:22:15.4652546Z adding 'executorch/examples/models/test/test_export.py' 2025-06-05T23:22:15.4652735Z adding 'executorch/examples/models/torchvision_vit/__init__.py' 2025-06-05T23:22:15.4652973Z adding 'executorch/examples/models/torchvision_vit/model.py' 2025-06-05T23:22:15.4653222Z adding 'executorch/examples/models/toy_model/__init__.py' 2025-06-05T23:22:15.4653482Z adding 'executorch/examples/models/toy_model/model.py' 2025-06-05T23:22:15.4653666Z adding 'executorch/examples/models/wav2letter/__init__.py' 2025-06-05T23:22:15.4653821Z adding 'executorch/examples/models/wav2letter/model.py' 2025-06-05T23:22:15.4653955Z adding 'executorch/exir/__init__.py' 2025-06-05T23:22:15.4654104Z adding 'executorch/exir/_warnings.py' 2025-06-05T23:22:15.4654207Z adding 'executorch/exir/common.py' 2025-06-05T23:22:15.4654319Z adding 'executorch/exir/control_flow.py' 2025-06-05T23:22:15.4654424Z adding 'executorch/exir/delegate.py' 2025-06-05T23:22:15.4654542Z adding 'executorch/exir/delegate.pyi' 2025-06-05T23:22:15.4654659Z adding 'executorch/exir/dim_order_utils.py' 2025-06-05T23:22:15.4654773Z adding 'executorch/exir/dynamic_shape.py' 2025-06-05T23:22:15.4654889Z adding 'executorch/exir/error.py' 2025-06-05T23:22:15.4654990Z adding 'executorch/exir/graph.py' 2025-06-05T23:22:15.4655102Z adding 'executorch/exir/graph_module.py' 2025-06-05T23:22:15.4655297Z adding 'executorch/exir/lowered_backend_module.py' 2025-06-05T23:22:15.4655453Z adding 'executorch/exir/memory.py' 2025-06-05T23:22:15.4655660Z adding 'executorch/exir/memory_planning.py' 2025-06-05T23:22:15.4655768Z adding 'executorch/exir/pass_base.py' 2025-06-05T23:22:15.4655898Z adding 'executorch/exir/pass_manager.py' 2025-06-05T23:22:15.4656013Z adding 'executorch/exir/print_program.py' 2025-06-05T23:22:15.4656123Z adding 'executorch/exir/scalar_type.py' 2025-06-05T23:22:15.4656237Z adding 'executorch/exir/schema.py' 2025-06-05T23:22:15.4656388Z adding 'executorch/exir/sym_util.py' 2025-06-05T23:22:15.4656490Z adding 'executorch/exir/tensor.py' 2025-06-05T23:22:15.4656589Z adding 'executorch/exir/tracer.py' 2025-06-05T23:22:15.4656702Z adding 'executorch/exir/types.py' 2025-06-05T23:22:15.4656806Z adding 'executorch/exir/version.py' 2025-06-05T23:22:15.4656906Z adding 'executorch/exir/wrap.py' 2025-06-05T23:22:15.4657127Z adding 'executorch/exir/_serialize/__init__.py' 2025-06-05T23:22:15.4657249Z adding 'executorch/exir/_serialize/_cord.py' 2025-06-05T23:22:15.4657385Z adding 'executorch/exir/_serialize/_dataclass.py' 2025-06-05T23:22:15.4657525Z adding 'executorch/exir/_serialize/_flatbuffer.py' 2025-06-05T23:22:15.4657700Z adding 'executorch/exir/_serialize/_named_data_store.py' 2025-06-05T23:22:15.4657835Z adding 'executorch/exir/_serialize/_program.py' 2025-06-05T23:22:15.4658017Z adding 'executorch/exir/_serialize/_serialize.py' 2025-06-05T23:22:15.4658242Z adding 'executorch/exir/_serialize/data_serializer.py' 2025-06-05T23:22:15.4658394Z adding 'executorch/exir/_serialize/padding.py' 2025-06-05T23:22:15.4658522Z adding 'executorch/exir/_serialize/program.fbs' 2025-06-05T23:22:15.4658674Z adding 'executorch/exir/_serialize/scalar_type.fbs' 2025-06-05T23:22:15.4658815Z adding 'executorch/exir/_serialize/test/__init__.py' 2025-06-05T23:22:15.4658979Z adding 'executorch/exir/_serialize/test/test_cord.py' 2025-06-05T23:22:15.4659183Z adding 'executorch/exir/_serialize/test/test_flatbuffer.py' 2025-06-05T23:22:15.4659392Z adding 'executorch/exir/_serialize/test/test_named_data_store.py' 2025-06-05T23:22:15.4659549Z adding 'executorch/exir/_serialize/test/test_program.py' 2025-06-05T23:22:15.4659678Z adding 'executorch/exir/backend/backend_api.py' 2025-06-05T23:22:15.4659887Z adding 'executorch/exir/backend/backend_details.py' 2025-06-05T23:22:15.4660044Z adding 'executorch/exir/backend/compile_spec_schema.py' 2025-06-05T23:22:15.4660189Z adding 'executorch/exir/backend/operator_support.py' 2025-06-05T23:22:15.4660335Z adding 'executorch/exir/backend/partitioner.py' 2025-06-05T23:22:15.4660450Z adding 'executorch/exir/backend/utils.py' 2025-06-05T23:22:15.4660719Z adding 'executorch/exir/backend/canonical_partitioners/all_node_partitioner.py' 2025-06-05T23:22:15.4660978Z adding 'executorch/exir/backend/canonical_partitioners/config_partitioner.py' 2025-06-05T23:22:15.4661412Z adding 'executorch/exir/backend/canonical_partitioners/duplicate_constant_node_pass.py' 2025-06-05T23:22:15.4661718Z adding 'executorch/exir/backend/canonical_partitioners/duplicate_dequant_node_pass.py' 2025-06-05T23:22:15.4662048Z adding 'executorch/exir/backend/canonical_partitioners/pattern_op_partitioner.py' 2025-06-05T23:22:15.4662324Z adding 'executorch/exir/backend/test/backend_with_compiler_demo.py' 2025-06-05T23:22:15.4662622Z adding 'executorch/exir/backend/test/backend_with_delegate_mapping_demo.py' 2025-06-05T23:22:15.4662829Z adding 'executorch/exir/backend/test/backend_with_named_data_map.py' 2025-06-05T23:22:15.5216232Z adding 'executorch/exir/backend/test/backend_with_preprocess_all_demo.py' 2025-06-05T23:22:15.5217210Z adding 'executorch/exir/backend/test/hta_partitioner_demo.py' 2025-06-05T23:22:15.5217704Z adding 'executorch/exir/backend/test/op_partitioner_demo.py' 2025-06-05T23:22:15.5218156Z adding 'executorch/exir/backend/test/qnn_backend_demo.py' 2025-06-05T23:22:15.5218938Z adding 'executorch/exir/backend/test/test_backend_with_named_data_map.py' 2025-06-05T23:22:15.5219850Z adding 'executorch/exir/backend/test/test_backends.py' 2025-06-05T23:22:15.5220666Z adding 'executorch/exir/backend/test/test_backends_lifted.py' 2025-06-05T23:22:15.5221252Z adding 'executorch/exir/backend/test/test_backends_nested.py' 2025-06-05T23:22:15.5221761Z adding 'executorch/exir/backend/test/test_compatibility.py' 2025-06-05T23:22:15.5222226Z adding 'executorch/exir/backend/test/test_debug_handle_map.py' 2025-06-05T23:22:15.5223111Z adding 'executorch/exir/backend/test/test_delegate_map_builder.py' 2025-06-05T23:22:15.5224050Z adding 'executorch/exir/backend/test/test_graph_partition.py' 2025-06-05T23:22:15.5224747Z adding 'executorch/exir/backend/test/test_lowered_backend_module.py' 2025-06-05T23:22:15.5225552Z adding 'executorch/exir/backend/test/test_partitioner.py' 2025-06-05T23:22:15.5226422Z adding 'executorch/exir/backend/test/test_passes.py' 2025-06-05T23:22:15.5227609Z adding 'executorch/exir/backend/test/test_to_backend_multi_method.py' 2025-06-05T23:22:15.5228485Z adding 'executorch/exir/backend/test/test_utils.py' 2025-06-05T23:22:15.5229250Z adding 'executorch/exir/backend/test/demos/test_delegate_aten_mode.py' 2025-06-05T23:22:15.5230220Z adding 'executorch/exir/backend/test/demos/test_xnnpack_qnnpack.py' 2025-06-05T23:22:15.5231361Z adding 'executorch/exir/backend/test/demos/rpc/executor_backend_partitioner.py' 2025-06-05T23:22:15.5232036Z adding 'executorch/exir/backend/test/demos/rpc/executor_backend_preprocess.py' 2025-06-05T23:22:15.5232826Z adding 'executorch/exir/backend/test/demos/rpc/test_rpc.py' 2025-06-05T23:22:15.5233591Z adding 'executorch/exir/capture/__init__.py' 2025-06-05T23:22:15.5234219Z adding 'executorch/exir/capture/_capture.py' 2025-06-05T23:22:15.5234854Z adding 'executorch/exir/capture/_config.py' 2025-06-05T23:22:15.5235481Z adding 'executorch/exir/capture/_unlift.py' 2025-06-05T23:22:15.5236119Z adding 'executorch/exir/dialects/__init__.py' 2025-06-05T23:22:15.5236573Z adding 'executorch/exir/dialects/_ops.py' 2025-06-05T23:22:15.5236954Z adding 'executorch/exir/dialects/backend/_ops.py' 2025-06-05T23:22:15.5237465Z adding 'executorch/exir/dialects/backend/test/test_backend_ops.py' 2025-06-05T23:22:15.5237904Z adding 'executorch/exir/dialects/edge/_ops.py' 2025-06-05T23:22:15.5238629Z adding 'executorch/exir/dialects/edge/edge.yaml' 2025-06-05T23:22:15.5239305Z adding 'executorch/exir/dialects/edge/arg/model.py' 2025-06-05T23:22:15.5240016Z adding 'executorch/exir/dialects/edge/arg/type.py' 2025-06-05T23:22:15.5240606Z adding 'executorch/exir/dialects/edge/dtype/runner.py' 2025-06-05T23:22:15.5241056Z adding 'executorch/exir/dialects/edge/dtype/supported.py' 2025-06-05T23:22:15.5241484Z adding 'executorch/exir/dialects/edge/dtype/utils.py' 2025-06-05T23:22:15.5241885Z adding 'executorch/exir/dialects/edge/op/api.py' 2025-06-05T23:22:15.5242303Z adding 'executorch/exir/dialects/edge/op/sample_input.py' 2025-06-05T23:22:15.5242758Z adding 'executorch/exir/dialects/edge/op/test/test_api.py' 2025-06-05T23:22:15.5243186Z adding 'executorch/exir/dialects/edge/spec/gen.py' 2025-06-05T23:22:15.5243572Z adding 'executorch/exir/dialects/edge/spec/utils.py' 2025-06-05T23:22:15.5244083Z adding 'executorch/exir/dialects/edge/test/test_edge_ops.py' 2025-06-05T23:22:15.5244567Z adding 'executorch/exir/dialects/edge/test/test_edge_yaml.py' 2025-06-05T23:22:15.5245058Z adding 'executorch/exir/dialects/test/test_exir_dialect_ops.py' 2025-06-05T23:22:15.5245481Z adding 'executorch/exir/emit/__init__.py' 2025-06-05T23:22:15.5245823Z adding 'executorch/exir/emit/_emit_program.py' 2025-06-05T23:22:15.5246177Z adding 'executorch/exir/emit/_emitter.py' 2025-06-05T23:22:15.5246514Z adding 'executorch/exir/emit/test/test_emit.py' 2025-06-05T23:22:15.5246878Z adding 'executorch/exir/operator/convert.py' 2025-06-05T23:22:15.5247215Z adding 'executorch/exir/operator/manip.py' 2025-06-05T23:22:15.5247555Z adding 'executorch/exir/operator/util.py' 2025-06-05T23:22:15.5247927Z adding 'executorch/exir/operator/test/test_operator.py' 2025-06-05T23:22:15.5248328Z adding 'executorch/exir/passes/__init__.py' 2025-06-05T23:22:15.5248772Z adding 'executorch/exir/passes/_quant_patterns_and_replacements.py' 2025-06-05T23:22:15.5249239Z adding 'executorch/exir/passes/const_prop_pass.py' 2025-06-05T23:22:15.5249646Z adding 'executorch/exir/passes/constant_prop_pass.py' 2025-06-05T23:22:15.5250087Z adding 'executorch/exir/passes/debug_handle_generator_pass.py' 2025-06-05T23:22:15.5250561Z adding 'executorch/exir/passes/dim_order_ops_registry.py' 2025-06-05T23:22:15.5251003Z adding 'executorch/exir/passes/dynamic_shape_prop_pass.py' 2025-06-05T23:22:15.5251483Z adding 'executorch/exir/passes/executorch_prim_ops_registry.py' 2025-06-05T23:22:15.5251963Z adding 'executorch/exir/passes/external_constants_pass.py' 2025-06-05T23:22:15.5252385Z adding 'executorch/exir/passes/init_mutable_pass.py' 2025-06-05T23:22:15.5252979Z adding 'executorch/exir/passes/insert_write_back_for_buffers_pass.py' 2025-06-05T23:22:15.5253472Z adding 'executorch/exir/passes/memory_format_ops_pass.py' 2025-06-05T23:22:15.5253922Z adding 'executorch/exir/passes/memory_planning_pass.py' 2025-06-05T23:22:15.5254354Z adding 'executorch/exir/passes/normalize_transpose_pass.py' 2025-06-05T23:22:15.5254845Z adding 'executorch/exir/passes/normalize_view_copy_base_pass.py' 2025-06-05T23:22:15.5255302Z adding 'executorch/exir/passes/pass_registry.py' 2025-06-05T23:22:15.5255716Z adding 'executorch/exir/passes/prune_empty_tensors_pass.py' 2025-06-05T23:22:15.5256153Z adding 'executorch/exir/passes/quant_fusion_pass.py' 2025-06-05T23:22:15.5256543Z adding 'executorch/exir/passes/quantize_io_pass.py' 2025-06-05T23:22:15.5256978Z adding 'executorch/exir/passes/remove_graph_asserts_pass.py' 2025-06-05T23:22:15.5257510Z adding 'executorch/exir/passes/remove_mixed_type_operators.py' 2025-06-05T23:22:15.5257958Z adding 'executorch/exir/passes/remove_noop_pass.py' 2025-06-05T23:22:15.5258433Z adding 'executorch/exir/passes/remove_unused_parameters_pass.py' 2025-06-05T23:22:15.5258919Z adding 'executorch/exir/passes/replace_aten_with_edge_pass.py' 2025-06-05T23:22:15.5259475Z adding 'executorch/exir/passes/replace_broken_ops_with_function_ops_pass.py' 2025-06-05T23:22:15.5260123Z adding 'executorch/exir/passes/replace_edge_with_backend_pass.py' 2025-06-05T23:22:15.5260605Z adding 'executorch/exir/passes/replace_sym_size_op_pass.py' 2025-06-05T23:22:15.5261110Z adding 'executorch/exir/passes/replace_view_copy_with_view_pass.py' 2025-06-05T23:22:15.5261593Z adding 'executorch/exir/passes/scalar_to_tensor_pass.py' 2025-06-05T23:22:15.5262012Z adding 'executorch/exir/passes/spec_prop_pass.py' 2025-06-05T23:22:15.5262418Z adding 'executorch/exir/passes/sym_shape_eval_pass.py' 2025-06-05T23:22:15.5262928Z adding 'executorch/exir/passes/sym_to_tensor_pass.py' 2025-06-05T23:22:15.5263370Z adding 'executorch/exir/passes/weights_to_outputs_pass.py' 2025-06-05T23:22:15.5263776Z adding 'executorch/exir/program/__init__.py' 2025-06-05T23:22:15.5264155Z adding 'executorch/exir/program/_fake_program.py' 2025-06-05T23:22:15.5264521Z adding 'executorch/exir/program/_program.py' 2025-06-05T23:22:15.5264893Z adding 'executorch/exir/program/test/__init__.py' 2025-06-05T23:22:15.5265500Z adding 'executorch/exir/program/test/test_fake_program.py' 2025-06-05T23:22:15.5266005Z adding 'executorch/exir/program/test/test_program.py' 2025-06-05T23:22:15.5266376Z adding 'executorch/exir/serde/__init__.py' 2025-06-05T23:22:15.5266744Z adding 'executorch/exir/serde/export_serialize.py' 2025-06-05T23:22:15.5267118Z adding 'executorch/exir/serde/schema.py' 2025-06-05T23:22:15.5267455Z adding 'executorch/exir/serde/schema_check.py' 2025-06-05T23:22:15.5267821Z adding 'executorch/exir/serde/serialize.py' 2025-06-05T23:22:15.5268149Z adding 'executorch/exir/serde/union.py' 2025-06-05T23:22:15.5268486Z adding 'executorch/exir/tests/asr_joiner.py' 2025-06-05T23:22:15.5268822Z adding 'executorch/exir/tests/common.py' 2025-06-05T23:22:15.5269192Z adding 'executorch/exir/tests/control_flow_models.py' 2025-06-05T23:22:15.5269596Z adding 'executorch/exir/tests/dynamic_shape_models.py' 2025-06-05T23:22:15.5269974Z adding 'executorch/exir/tests/models.py' 2025-06-05T23:22:15.5270342Z adding 'executorch/exir/tests/test_arg_validator.py' 2025-06-05T23:22:15.5270720Z adding 'executorch/exir/tests/test_capture.py' 2025-06-05T23:22:15.5271083Z adding 'executorch/exir/tests/test_common.py' 2025-06-05T23:22:15.5271434Z adding 'executorch/exir/tests/test_delegate.py' 2025-06-05T23:22:15.5271830Z adding 'executorch/exir/tests/test_dim_order_utils.py' 2025-06-05T23:22:15.5272284Z adding 'executorch/exir/tests/test_dynamic_shape_propagation.py' 2025-06-05T23:22:15.5272725Z adding 'executorch/exir/tests/test_error.py' 2025-06-05T23:22:15.5273096Z adding 'executorch/exir/tests/test_joint_graph.py' 2025-06-05T23:22:15.5273932Z adding 'executorch/exir/tests/test_memory_format_ops_pass.py' 2025-06-05T23:22:15.5274481Z adding 'executorch/exir/tests/test_memory_format_ops_pass_aten.py' 2025-06-05T23:22:15.5275001Z adding 'executorch/exir/tests/test_memory_format_ops_pass_utils.py' 2025-06-05T23:22:15.5275478Z adding 'executorch/exir/tests/test_memory_planning.py' 2025-06-05T23:22:15.5275876Z adding 'executorch/exir/tests/test_op_convert.py' 2025-06-05T23:22:15.5276262Z adding 'executorch/exir/tests/test_pass_infra.py' 2025-06-05T23:22:15.5276622Z adding 'executorch/exir/tests/test_passes.py' 2025-06-05T23:22:15.5277005Z adding 'executorch/exir/tests/test_print_program.py' 2025-06-05T23:22:15.5277458Z adding 'executorch/exir/tests/test_prune_empty_tensors_pass.py' 2025-06-05T23:22:15.5277913Z adding 'executorch/exir/tests/test_quant_fusion_pass.py' 2025-06-05T23:22:15.5278331Z adding 'executorch/exir/tests/test_quantization.py' 2025-06-05T23:22:15.5278731Z adding 'executorch/exir/tests/test_quantize_io_pass.py' 2025-06-05T23:22:15.5279219Z adding 'executorch/exir/tests/test_remove_unused_parameters_pass.py' 2025-06-05T23:22:15.5279693Z adding 'executorch/exir/tests/test_remove_view_copy.py' 2025-06-05T23:22:15.5280088Z adding 'executorch/exir/tests/test_serde.py' 2025-06-05T23:22:15.5280449Z adding 'executorch/exir/tests/test_tensor.py' 2025-06-05T23:22:15.5280899Z adding 'executorch/exir/tests/test_tracer.py' 2025-06-05T23:22:15.5281285Z adding 'executorch/exir/tests/test_verification.py' 2025-06-05T23:22:15.5281662Z adding 'executorch/exir/tests/test_warnings.py' 2025-06-05T23:22:15.5282034Z adding 'executorch/exir/tests/transformer.py' 2025-06-05T23:22:15.5282418Z adding 'executorch/exir/verification/arg_validator.py' 2025-06-05T23:22:15.5282829Z adding 'executorch/exir/verification/dev_html.py' 2025-06-05T23:22:15.5283223Z adding 'executorch/exir/verification/interpreter.py' 2025-06-05T23:22:15.5283665Z adding 'executorch/exir/verification/verifier.py' 2025-06-05T23:22:15.5284132Z adding 'executorch/exir/verification/test/test_verifier.py' 2025-06-05T23:22:15.5284566Z adding 'executorch/extension/export_util/__init__.py' 2025-06-05T23:22:15.5284967Z adding 'executorch/extension/export_util/utils.py' 2025-06-05T23:22:15.5285354Z adding 'executorch/extension/flat_tensor/__init__.py' 2025-06-05T23:22:15.5285810Z adding 'executorch/extension/flat_tensor/serialize/__init__.py' 2025-06-05T23:22:15.5286312Z adding 'executorch/extension/flat_tensor/serialize/flat_tensor.fbs' 2025-06-05T23:22:15.5286874Z adding 'executorch/extension/flat_tensor/serialize/flat_tensor_schema.py' 2025-06-05T23:22:16.1589527Z adding 'executorch/extension/flat_tensor/serialize/scalar_type.fbs' 2025-06-05T23:22:16.1590544Z adding 'executorch/extension/flat_tensor/serialize/serialize.py' 2025-06-05T23:22:16.1591203Z adding 'executorch/extension/flat_tensor/test/test_serialize.py' 2025-06-05T23:22:16.1591741Z adding 'executorch/extension/gguf_util/convert_main.py' 2025-06-05T23:22:16.1592150Z adding 'executorch/extension/gguf_util/converter.py' 2025-06-05T23:22:16.1592581Z adding 'executorch/extension/gguf_util/load_gguf.py' 2025-06-05T23:22:16.1593114Z adding 'executorch/extension/gguf_util/converters/llama_converter.py' 2025-06-05T23:22:16.1593741Z adding 'executorch/extension/llm/custom_ops/__init__.py' 2025-06-05T23:22:16.1594249Z adding 'executorch/extension/llm/custom_ops/custom_ops.py' 2025-06-05T23:22:16.1594749Z adding 'executorch/extension/llm/custom_ops/libcustom_ops_aot_lib.so' 2025-06-05T23:22:16.1595449Z adding 'executorch/extension/llm/custom_ops/model_sharding.py' 2025-06-05T23:22:16.1596006Z adding 'executorch/extension/llm/custom_ops/op_tile_crop_aot.py' 2025-06-05T23:22:16.1596538Z adding 'executorch/extension/llm/custom_ops/preprocess_custom_ops.py' 2025-06-05T23:22:16.1597103Z adding 'executorch/extension/llm/custom_ops/test_preprocess_custom_ops.py' 2025-06-05T23:22:16.1597674Z adding 'executorch/extension/llm/custom_ops/test_quantized_sdpa.py' 2025-06-05T23:22:16.1598458Z adding 'executorch/extension/llm/custom_ops/test_sdpa_with_kv_cache.py' 2025-06-05T23:22:16.1599071Z adding 'executorch/extension/llm/custom_ops/test_update_cache.py' 2025-06-05T23:22:16.1599785Z adding 'executorch/extension/llm/custom_ops/spinquant/special_hadamard_code_gen.py' 2025-06-05T23:22:16.1600528Z adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/example.py' 2025-06-05T23:22:16.1601187Z adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/gen.py' 2025-06-05T23:22:16.1601704Z adding 'executorch/extension/llm/export/__init__.py' 2025-06-05T23:22:16.1602110Z adding 'executorch/extension/llm/export/builder.py' 2025-06-05T23:22:16.1602532Z adding 'executorch/extension/llm/export/export_passes.py' 2025-06-05T23:22:16.1603073Z adding 'executorch/extension/llm/export/partitioner_lib.py' 2025-06-05T23:22:16.1603646Z adding 'executorch/extension/llm/export/quantizer_lib.py' 2025-06-05T23:22:16.1604171Z adding 'executorch/extension/llm/export/test_export_passes.py' 2025-06-05T23:22:16.1604649Z adding 'executorch/extension/llm/export/test/__init__.py' 2025-06-05T23:22:16.1605098Z adding 'executorch/extension/llm/export/test/test_builder.py' 2025-06-05T23:22:16.1605547Z adding 'executorch/extension/llm/modules/__init__.py' 2025-06-05T23:22:16.1606133Z adding 'executorch/extension/llm/modules/_position_embeddings.py' 2025-06-05T23:22:16.1606620Z adding 'executorch/extension/llm/modules/attention.py' 2025-06-05T23:22:16.1607029Z adding 'executorch/extension/llm/modules/kv_cache.py' 2025-06-05T23:22:16.1607466Z adding 'executorch/extension/llm/modules/test/__init__.py' 2025-06-05T23:22:16.1608069Z adding 'executorch/extension/llm/modules/test/test_attention.py' 2025-06-05T23:22:16.1608634Z adding 'executorch/extension/llm/modules/test/test_kv_cache.py' 2025-06-05T23:22:16.1609245Z adding 'executorch/extension/llm/modules/test/test_position_embeddings.py' 2025-06-05T23:22:16.1609751Z adding 'executorch/extension/llm/tokenizers/setup.py' 2025-06-05T23:22:16.1610322Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/__init__.py' 2025-06-05T23:22:16.1611231Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/constants.py' 2025-06-05T23:22:16.1612029Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/hf_tokenizer.py' 2025-06-05T23:22:16.1612767Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/llama2c.py' 2025-06-05T23:22:16.1613656Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tiktoken.py' 2025-06-05T23:22:16.1614456Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/__init__.py' 2025-06-05T23:22:16.1615319Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-06-05T23:22:16.1616356Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/convert.py' 2025-06-05T23:22:16.1617086Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/__init__.py' 2025-06-05T23:22:16.1617708Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/constants.py' 2025-06-05T23:22:16.1618353Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/hf_tokenizer.py' 2025-06-05T23:22:16.1618991Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/llama2c.py' 2025-06-05T23:22:16.1619775Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tiktoken.py' 2025-06-05T23:22:16.1620463Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/__init__.py' 2025-06-05T23:22:16.1621167Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-06-05T23:22:16.1621969Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/convert.py' 2025-06-05T23:22:16.1622752Z adding 'executorch/extension/llm/tokenizers/test/test_tiktoken.py' 2025-06-05T23:22:16.1623380Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/conanfile.py' 2025-06-05T23:22:16.1624344Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/create_lts.py' 2025-06-05T23:22:16.1625089Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py' 2025-06-05T23:22:16.1625869Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/copts.py' 2025-06-05T23:22:16.1626697Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/generate_copts.py' 2025-06-05T23:22:16.1627759Z adding 'executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts/check_structure.py' 2025-06-05T23:22:16.1628646Z adding 'executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl/filterbr.py' 2025-06-05T23:22:16.1629444Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate/amalgamate.py' 2025-06-05T23:22:16.1630270Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py' 2025-06-05T23:22:16.1631133Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis/generate_natvis.py' 2025-06-05T23:22:16.1631967Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/serve_header/serve_header.py' 2025-06-05T23:22:16.1632900Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateCommon.py' 2025-06-05T23:22:16.1633778Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateTest.py' 2025-06-05T23:22:16.1634477Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcd.py' 2025-06-05T23:22:16.1635189Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpHeader.py' 2025-06-05T23:22:16.1635950Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpTables.py' 2025-06-05T23:22:16.1636668Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateCommon.py' 2025-06-05T23:22:16.1637368Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateDates.py' 2025-06-05T23:22:16.1638060Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateRelease.py' 2025-06-05T23:22:16.1638758Z adding 'executorch/extension/llm/tokenizers/third-party/re2/benchlog/benchplot.py' 2025-06-05T23:22:16.1639417Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2.py' 2025-06-05T23:22:16.1640214Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2_test.py' 2025-06-05T23:22:16.1640922Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/setup.py' 2025-06-05T23:22:16.1641605Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/toolchains/generate.py' 2025-06-05T23:22:16.1642358Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_casefold.py' 2025-06-05T23:22:16.1643089Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_groups.py' 2025-06-05T23:22:16.1643805Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/unicode.py' 2025-06-05T23:22:16.1644656Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/setup.py' 2025-06-05T23:22:16.1645489Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/__init__.py' 2025-06-05T23:22:16.1646432Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/_version.py' 2025-06-05T23:22:16.1647528Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_model_pb2.py' 2025-06-05T23:22:16.1648771Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_pb2.py' 2025-06-05T23:22:16.1649689Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/__init__.py' 2025-06-05T23:22:16.1650728Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/sentencepiece_test.py' 2025-06-05T23:22:16.1651638Z adding 'executorch/extension/module/test/resources/gen_bundled_program.py' 2025-06-05T23:22:16.1652359Z adding 'executorch/extension/pybindings/_portable_lib.cpython-310-x86_64-linux-gnu.so' 2025-06-05T23:22:16.1653087Z adding 'executorch/extension/pybindings/portable_lib.py' 2025-06-05T23:22:16.1653600Z adding 'executorch/extension/pybindings/pybindings.pyi' 2025-06-05T23:22:16.1654041Z adding 'executorch/extension/pybindings/test/make_test.py' 2025-06-05T23:22:16.1654563Z adding 'executorch/extension/pybindings/test/test_backend_pybinding.py' 2025-06-05T23:22:16.1655215Z adding 'executorch/extension/pybindings/test/test_pybindings.py' 2025-06-05T23:22:16.1655767Z adding 'executorch/extension/pytree/__init__.py' 2025-06-05T23:22:16.1656198Z adding 'executorch/extension/pytree/test/test.py' 2025-06-05T23:22:16.1656593Z adding 'executorch/extension/training/__init__.py' 2025-06-05T23:22:16.1657060Z adding 'executorch/extension/training/examples/XOR/export_model.py' 2025-06-05T23:22:16.1657565Z adding 'executorch/extension/training/examples/XOR/model.py' 2025-06-05T23:22:16.1658145Z adding 'executorch/extension/training/examples/XOR/test/test_export.py' 2025-06-05T23:22:16.1658847Z adding 'executorch/extension/training/pybindings/_training_lib.pyi' 2025-06-05T23:22:16.1659536Z adding 'executorch/extension/training/pybindings/_training_module.py' 2025-06-05T23:22:16.1660058Z adding 'executorch/extension/training/pybindings/test/test.py' 2025-06-05T23:22:16.7964881Z adding 'executorch/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h' 2025-06-05T23:22:16.7966001Z adding 'executorch/include/executorch/extension/kernel_util/meta_programming.h' 2025-06-05T23:22:16.7966644Z adding 'executorch/include/executorch/extension/kernel_util/type_list.h' 2025-06-05T23:22:16.7967286Z adding 'executorch/include/executorch/extension/tensor/tensor.h' 2025-06-05T23:22:16.7967848Z adding 'executorch/include/executorch/extension/tensor/tensor_accessor.h' 2025-06-05T23:22:16.7968446Z adding 'executorch/include/executorch/extension/tensor/tensor_ptr.h' 2025-06-05T23:22:16.7969028Z adding 'executorch/include/executorch/extension/tensor/tensor_ptr_maker.h' 2025-06-05T23:22:16.7969635Z adding 'executorch/include/executorch/extension/threadpool/cpuinfo_utils.h' 2025-06-05T23:22:16.7970259Z adding 'executorch/include/executorch/extension/threadpool/threadpool.h' 2025-06-05T23:22:16.7970876Z adding 'executorch/include/executorch/extension/threadpool/threadpool_guard.h' 2025-06-05T23:22:16.7971467Z adding 'executorch/include/executorch/runtime/core/array_ref.h' 2025-06-05T23:22:16.7971989Z adding 'executorch/include/executorch/runtime/core/data_loader.h' 2025-06-05T23:22:16.7972482Z adding 'executorch/include/executorch/runtime/core/defines.h' 2025-06-05T23:22:16.7972962Z adding 'executorch/include/executorch/runtime/core/error.h' 2025-06-05T23:22:16.7973419Z adding 'executorch/include/executorch/runtime/core/evalue.h' 2025-06-05T23:22:16.7973931Z adding 'executorch/include/executorch/runtime/core/event_tracer.h' 2025-06-05T23:22:16.7974483Z adding 'executorch/include/executorch/runtime/core/event_tracer_hooks.h' 2025-06-05T23:22:16.7975118Z adding 'executorch/include/executorch/runtime/core/event_tracer_hooks_delegate.h' 2025-06-05T23:22:16.7975742Z adding 'executorch/include/executorch/runtime/core/freeable_buffer.h' 2025-06-05T23:22:16.7976276Z adding 'executorch/include/executorch/runtime/core/function_ref.h' 2025-06-05T23:22:16.7976857Z adding 'executorch/include/executorch/runtime/core/hierarchical_allocator.h' 2025-06-05T23:22:16.7977448Z adding 'executorch/include/executorch/runtime/core/memory_allocator.h' 2025-06-05T23:22:16.7978009Z adding 'executorch/include/executorch/runtime/core/named_data_map.h' 2025-06-05T23:22:16.7978507Z adding 'executorch/include/executorch/runtime/core/result.h' 2025-06-05T23:22:16.7978974Z adding 'executorch/include/executorch/runtime/core/span.h' 2025-06-05T23:22:16.7979699Z adding 'executorch/include/executorch/runtime/core/tag.h' 2025-06-05T23:22:16.7980179Z adding 'executorch/include/executorch/runtime/core/tensor_layout.h' 2025-06-05T23:22:16.7980760Z adding 'executorch/include/executorch/runtime/core/tensor_shape_dynamism.h' 2025-06-05T23:22:16.7981352Z adding 'executorch/include/executorch/runtime/core/exec_aten/exec_aten.h' 2025-06-05T23:22:16.7982037Z adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h' 2025-06-05T23:22:16.7982772Z adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h' 2025-06-05T23:22:16.7983479Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/dim_order_util.h' 2025-06-05T23:22:16.7984169Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h' 2025-06-05T23:22:16.7984886Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h' 2025-06-05T23:22:16.7985649Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h' 2025-06-05T23:22:16.7986425Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_util.h' 2025-06-05T23:22:16.7987071Z adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16.h' 2025-06-05T23:22:16.7987850Z adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16_math.h' 2025-06-05T23:22:16.7988497Z adding 'executorch/include/executorch/runtime/core/portable_type/bits_types.h' 2025-06-05T23:22:16.7989136Z adding 'executorch/include/executorch/runtime/core/portable_type/complex.h' 2025-06-05T23:22:16.7989737Z adding 'executorch/include/executorch/runtime/core/portable_type/device.h' 2025-06-05T23:22:16.7990340Z adding 'executorch/include/executorch/runtime/core/portable_type/half.h' 2025-06-05T23:22:16.7990935Z adding 'executorch/include/executorch/runtime/core/portable_type/optional.h' 2025-06-05T23:22:16.7991575Z adding 'executorch/include/executorch/runtime/core/portable_type/qint_types.h' 2025-06-05T23:22:16.7992293Z adding 'executorch/include/executorch/runtime/core/portable_type/scalar.h' 2025-06-05T23:22:16.7992912Z adding 'executorch/include/executorch/runtime/core/portable_type/scalar_type.h' 2025-06-05T23:22:16.7993564Z adding 'executorch/include/executorch/runtime/core/portable_type/string_view.h' 2025-06-05T23:22:16.7994183Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor.h' 2025-06-05T23:22:16.7994812Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor_impl.h' 2025-06-05T23:22:16.7995481Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor_options.h' 2025-06-05T23:22:16.7996184Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h' 2025-06-05T23:22:16.7996927Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h' 2025-06-05T23:22:16.7997682Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h' 2025-06-05T23:22:16.7998470Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h' 2025-06-05T23:22:16.7999222Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h' 2025-06-05T23:22:16.7999966Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h' 2025-06-05T23:22:16.8000688Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h' 2025-06-05T23:22:16.8001441Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h' 2025-06-05T23:22:16.8002224Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h' 2025-06-05T23:22:16.8003142Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h' 2025-06-05T23:22:16.8003951Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h' 2025-06-05T23:22:16.8004837Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h' 2025-06-05T23:22:16.8005651Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h' 2025-06-05T23:22:16.8006447Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h' 2025-06-05T23:22:16.8007100Z adding 'executorch/include/executorch/runtime/kernel/kernel_includes.h' 2025-06-05T23:22:16.8007718Z adding 'executorch/include/executorch/runtime/kernel/kernel_runtime_context.h' 2025-06-05T23:22:16.8008345Z adding 'executorch/include/executorch/runtime/kernel/operator_registry.h' 2025-06-05T23:22:16.8008969Z adding 'executorch/include/executorch/runtime/kernel/thread_parallel_interface.h' 2025-06-05T23:22:16.8009591Z adding 'executorch/include/executorch/runtime/kernel/test/test_util.h' 2025-06-05T23:22:16.8010120Z adding 'executorch/include/executorch/runtime/platform/abort.h' 2025-06-05T23:22:16.8010640Z adding 'executorch/include/executorch/runtime/platform/assert.h' 2025-06-05T23:22:16.8011141Z adding 'executorch/include/executorch/runtime/platform/clock.h' 2025-06-05T23:22:16.8011685Z adding 'executorch/include/executorch/runtime/platform/compat_unistd.h' 2025-06-05T23:22:16.8012250Z adding 'executorch/include/executorch/runtime/platform/compiler.h' 2025-06-05T23:22:16.8012810Z adding 'executorch/include/executorch/runtime/platform/log.h' 2025-06-05T23:22:16.8013322Z adding 'executorch/include/executorch/runtime/platform/platform.h' 2025-06-05T23:22:16.8013845Z adding 'executorch/include/executorch/runtime/platform/profiler.h' 2025-06-05T23:22:16.8014370Z adding 'executorch/include/executorch/runtime/platform/runtime.h' 2025-06-05T23:22:16.8014872Z adding 'executorch/include/executorch/runtime/platform/system.h' 2025-06-05T23:22:16.8015380Z adding 'executorch/include/executorch/runtime/platform/types.h' 2025-06-05T23:22:16.8015921Z adding 'executorch/include/executorch/runtime/platform/test/pal_spy.h' 2025-06-05T23:22:16.8016513Z adding 'executorch/include/executorch/runtime/platform/test/stub_platform.h' 2025-06-05T23:22:16.8017023Z adding 'executorch/kernels/quantized/__init__.py' 2025-06-05T23:22:16.8017465Z adding 'executorch/kernels/quantized/libquantized_ops_aot_lib.so' 2025-06-05T23:22:16.8017933Z adding 'executorch/kernels/quantized/quantized.yaml' 2025-06-05T23:22:16.8018412Z adding 'executorch/kernels/quantized/test/supported_features_def.yaml' 2025-06-05T23:22:16.8018951Z adding 'executorch/kernels/quantized/test/test_out_variants.py' 2025-06-05T23:22:16.8019499Z adding 'executorch/kernels/quantized/test/test_quant_dequant_per_token.py' 2025-06-05T23:22:16.8019962Z adding 'executorch/runtime/__init__.py' 2025-06-05T23:22:16.8020348Z adding 'executorch/runtime/kernel/test/functions.yaml' 2025-06-05T23:22:16.8020747Z adding 'executorch/runtime/test/test_runtime.py' 2025-06-05T23:22:16.8021111Z adding 'executorch/schema/program.fbs' 2025-06-05T23:22:16.8021438Z adding 'executorch/schema/scalar_type.fbs' 2025-06-05T23:22:16.8021833Z adding 'executorch/share/cmake/executorch-config.cmake' 2025-06-05T23:22:16.8022256Z adding 'executorch/util/activation_memory_profiler.py' 2025-06-05T23:22:16.8022636Z adding 'executorch/util/collect_env.py' 2025-06-05T23:22:16.8022979Z adding 'executorch/util/python_profiler.py' 2025-06-05T23:22:16.8023393Z adding 'executorch-0.7.0a0+bd57234.dist-info/licenses/LICENSE' 2025-06-05T23:22:16.8023856Z adding 'executorch-0.7.0a0+bd57234.dist-info/METADATA' 2025-06-05T23:22:16.8024258Z adding 'executorch-0.7.0a0+bd57234.dist-info/WHEEL' 2025-06-05T23:22:16.8024705Z adding 'executorch-0.7.0a0+bd57234.dist-info/entry_points.txt' 2025-06-05T23:22:16.8025173Z adding 'executorch-0.7.0a0+bd57234.dist-info/top_level.txt' 2025-06-05T23:22:16.8025620Z adding 'executorch-0.7.0a0+bd57234.dist-info/RECORD' 2025-06-05T23:22:16.8026078Z removing pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:22:16.8036809Z Building wheel for executorch (pyproject.toml) ... [?25l[?25hdone 2025-06-05T23:22:16.8037889Z Created wheel for executorch: filename=executorch-0.7.0a0+bd57234-cp310-cp310-linux_x86_64.whl size=9987128 sha256=665d351e995f04b988076518b5731d24a81cf1551b0782001d09c43cc0fd7e83 2025-06-05T23:22:16.8039128Z Stored in directory: /tmp/pip-ephem-wheel-cache-a14fpwu5/wheels/9e/f0/2b/6a778c77421b91e006bef425e288a1e5c7c35b04c51317756b 2025-06-05T23:22:16.8039828Z Successfully built executorch 2025-06-05T23:22:21.2868156Z Installing collected packages: flatbuffers, tabulate, pyaml, protobuf, execnet, pytest, cattrs, pytest-xdist, pytest-rerunfailures, coremltools, executorch 2025-06-05T23:22:21.2869143Z [?25l 2025-06-05T23:22:21.2869520Z  changing mode of /opt/conda/envs/py_3.10/bin/tabulate to 755 2025-06-05T23:22:21.2869817Z 2025-06-05T23:22:21.2870071Z  changing mode of /opt/conda/envs/py_3.10/bin/pyaml to 755 2025-06-05T23:22:21.2870369Z 2025-06-05T23:22:21.2870703Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:22:21.2871215Z  Attempting uninstall: pytest 2025-06-05T23:22:21.2871721Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:22:21.2872197Z  Found existing installation: pytest 7.2.0 2025-06-05T23:22:21.2872933Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:22:21.2873385Z  Uninstalling pytest-7.2.0: 2025-06-05T23:22:21.2873882Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:22:21.2874468Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2875033Z  Removing file or directory /opt/conda/envs/py_3.10/bin/py.test 2025-06-05T23:22:21.2875626Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2876162Z  Removing file or directory /opt/conda/envs/py_3.10/bin/pytest 2025-06-05T23:22:21.2876835Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2877615Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/__pycache__/py.cpython-310.pyc 2025-06-05T23:22:21.2878423Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2879016Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2879677Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/_pytest/ 2025-06-05T23:22:21.2880367Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2881009Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/py.py 2025-06-05T23:22:21.2881685Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2882556Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pytest-7.2.0.dist-info/ 2025-06-05T23:22:21.2883301Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2883983Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pytest/ 2025-06-05T23:22:21.2884654Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2885124Z  Successfully uninstalled pytest-7.2.0 2025-06-05T23:22:21.2885643Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2886218Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2886767Z  changing mode of /opt/conda/envs/py_3.10/bin/py.test to 755 2025-06-05T23:22:21.2887347Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2887883Z  changing mode of /opt/conda/envs/py_3.10/bin/pytest to 755 2025-06-05T23:22:21.2888443Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:22:21.2889123Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:22:21.2889742Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:22:21.2890334Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:22:21.2890935Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:22:21.2891527Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:22:21.2892149Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:22:21.2892747Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:22:21.2893332Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:22:21.2893956Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:22:21.2894542Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:22:21.2895136Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:22:21.2895727Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:22:21.2896306Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:22:21.2896980Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:22:21.2897558Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:22:21.2898216Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:22:21.2898813Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:22:21.2899396Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:22:21.2899984Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:22:21.2900569Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:22:21.2901162Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:23:14.5230235Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:23:14.5231049Z  changing mode of /opt/conda/envs/py_3.10/bin/flatc to 755 2025-06-05T23:23:14.5231842Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:23:14.5232703Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11/11 [executorch] 2025-06-05T23:23:14.5233378Z [?25h 2025-06-05T23:23:14.5234509Z Successfully installed cattrs-25.1.1 coremltools-8.3.0 execnet-2.1.1 executorch-0.7.0a0+bd57234 flatbuffers-25.2.10 protobuf-6.31.1 pyaml-25.5.0 pytest-8.4.0 pytest-rerunfailures-15.1 pytest-xdist-3.7.0 tabulate-0.9.0 2025-06-05T23:23:14.5237737Z + pip list 2025-06-05T23:23:14.5238273Z Package Version Build Editable project location 2025-06-05T23:23:14.5239094Z ----------------------------- ------------------ ----- ----------------------------------- 2025-06-05T23:23:14.5239846Z aiohappyeyeballs 2.6.1 2025-06-05T23:23:14.5240345Z aiohttp 3.12.9 2025-06-05T23:23:14.5240792Z aiosignal 1.3.2 2025-06-05T23:23:14.5241185Z alabaster 0.7.16 2025-06-05T23:23:14.5241626Z antlr4-python3-runtime 4.9.3 2025-06-05T23:23:14.5242128Z async-timeout 5.0.1 2025-06-05T23:23:14.5242543Z attrs 25.3.0 2025-06-05T23:23:14.5242931Z babel 2.17.0 2025-06-05T23:23:14.5243334Z beautifulsoup4 4.13.4 2025-06-05T23:23:14.5243784Z blobfile 3.0.0 2025-06-05T23:23:14.5244224Z breathe 4.34.0 2025-06-05T23:23:14.5244640Z bs4 0.0.2 2025-06-05T23:23:14.5245063Z cattrs 25.1.1 2025-06-05T23:23:14.5245553Z certifi 2025.4.26 2025-06-05T23:23:14.5246044Z charset-normalizer 3.4.2 2025-06-05T23:23:14.5247198Z cmake 3.31.6 2025-06-05T23:23:14.5247647Z contourpy 1.3.2 2025-06-05T23:23:14.5248042Z coremltools 8.3.0 2025-06-05T23:23:14.5248494Z coverage 7.8.2 2025-06-05T23:23:14.5248957Z cycler 0.12.1 2025-06-05T23:23:14.5249357Z datasets 3.6.0 2025-06-05T23:23:14.5249743Z dill 0.3.8 2025-06-05T23:23:14.5250172Z docutils 0.16 2025-06-05T23:23:14.5250644Z exceptiongroup 1.3.0 2025-06-05T23:23:14.5251042Z execnet 2.1.1 2025-06-05T23:23:14.5251326Z executorch 0.7.0a0+bd57234 2025-06-05T23:23:14.5251644Z exhale 0.2.3 2025-06-05T23:23:14.5251906Z expecttest 0.1.6 2025-06-05T23:23:14.5252185Z filelock 3.18.0 2025-06-05T23:23:14.5252454Z flatbuffers 25.2.10 2025-06-05T23:23:14.5252744Z fonttools 4.58.1 2025-06-05T23:23:14.5253021Z frozenlist 1.6.2 2025-06-05T23:23:14.5253287Z fsspec 2025.3.0 2025-06-05T23:23:14.5253571Z hf_transfer 0.1.9 2025-06-05T23:23:14.5253832Z hf-xet 1.1.3 2025-06-05T23:23:14.5254110Z huggingface-hub 0.32.4 2025-06-05T23:23:14.5254526Z hypothesis 6.84.2 2025-06-05T23:23:14.5254808Z idna 3.10 2025-06-05T23:23:14.5255070Z imagesize 1.4.1 2025-06-05T23:23:14.5255346Z iniconfig 2.1.0 2025-06-05T23:23:14.5255608Z Jinja2 3.1.6 2025-06-05T23:23:14.5255945Z kagglehub 0.3.12 2025-06-05T23:23:14.5256224Z kiwisolver 1.4.8 2025-06-05T23:23:14.5256484Z lxml 5.4.0 2025-06-05T23:23:14.5256844Z markdown-it-py 2.2.0 2025-06-05T23:23:14.5257223Z MarkupSafe 3.0.2 2025-06-05T23:23:14.5257623Z matplotlib 3.10.3 2025-06-05T23:23:14.5258006Z mdit-py-plugins 0.3.5 2025-06-05T23:23:14.5258397Z mdurl 0.1.2 2025-06-05T23:23:14.5258733Z mpmath 1.3.0 2025-06-05T23:23:14.5259008Z multidict 6.4.4 2025-06-05T23:23:14.5259277Z multiprocess 0.70.16 2025-06-05T23:23:14.5259576Z myst-parser 0.18.1 2025-06-05T23:23:14.5259861Z networkx 3.4.2 2025-06-05T23:23:14.5260121Z numpy 2.2.6 2025-06-05T23:23:14.5260408Z nvidia-cublas-cu12 12.1.3.1 2025-06-05T23:23:14.5260710Z nvidia-cuda-cupti-cu12 12.1.105 2025-06-05T23:23:14.5261021Z nvidia-cuda-nvrtc-cu12 12.1.105 2025-06-05T23:23:14.5261319Z nvidia-cuda-runtime-cu12 12.1.105 2025-06-05T23:23:14.5261627Z nvidia-cudnn-cu12 9.1.0.70 2025-06-05T23:23:14.5261913Z nvidia-cufft-cu12 11.0.2.54 2025-06-05T23:23:14.5262219Z nvidia-curand-cu12 10.3.2.106 2025-06-05T23:23:14.5262539Z nvidia-cusolver-cu12 11.4.5.107 2025-06-05T23:23:14.5262841Z nvidia-cusparse-cu12 12.1.0.106 2025-06-05T23:23:14.5263151Z nvidia-nccl-cu12 2.20.5 2025-06-05T23:23:14.5263435Z nvidia-nvjitlink-cu12 12.9.41 2025-06-05T23:23:14.5263737Z nvidia-nvtx-cu12 12.1.105 2025-06-05T23:23:14.5264020Z omegaconf 2.3.0 2025-06-05T23:23:14.5264299Z packaging 25.0 2025-06-05T23:23:14.5264565Z pandas 2.2.3 2025-06-05T23:23:14.5264847Z parameterized 0.9.0 2025-06-05T23:23:14.5265304Z pillow 11.2.1 2025-06-05T23:23:14.5265650Z pip 25.1 2025-06-05T23:23:14.5265922Z pluggy 1.6.0 2025-06-05T23:23:14.5266186Z propcache 0.3.1 2025-06-05T23:23:14.5266465Z protobuf 6.31.1 2025-06-05T23:23:14.5266729Z psutil 7.0.0 2025-06-05T23:23:14.5267159Z pyaml 25.5.0 2025-06-05T23:23:14.5267419Z pyarrow 20.0.0 2025-06-05T23:23:14.5267702Z pycryptodomex 3.23.0 2025-06-05T23:23:14.5268055Z Pygments 2.19.1 2025-06-05T23:23:14.5268525Z pyparsing 3.2.3 2025-06-05T23:23:14.5269051Z pytest 8.4.0 2025-06-05T23:23:14.5269316Z pytest-cov 4.1.0 2025-06-05T23:23:14.5269604Z pytest-rerunfailures 15.1 2025-06-05T23:23:14.5269882Z pytest-xdist 3.7.0 2025-06-05T23:23:14.5270180Z python-dateutil 2.9.0.post0 2025-06-05T23:23:14.5270610Z pytorch_sphinx_theme 0.0.24 /opt/conda/src/pytorch-sphinx-theme 2025-06-05T23:23:14.5271054Z pytorch_tokenizers 0.1.0 2025-06-05T23:23:14.5271329Z pytz 2025.2 2025-06-05T23:23:14.5271610Z PyYAML 6.0.1 2025-06-05T23:23:14.5271874Z regex 2024.11.6 2025-06-05T23:23:14.5272172Z requests 2.32.3 2025-06-05T23:23:14.5272457Z ruamel.yaml 0.17.32 2025-06-05T23:23:14.5272738Z ruamel.yaml.clib 0.2.12 2025-06-05T23:23:14.5273023Z safetensors 0.5.3 2025-06-05T23:23:14.5273293Z sentencepiece 0.2.0 2025-06-05T23:23:14.5273686Z setuptools 78.1.1 2025-06-05T23:23:14.5273952Z six 1.17.0 2025-06-05T23:23:14.5274233Z snowballstemmer 3.0.1 2025-06-05T23:23:14.5274511Z sortedcontainers 2.4.0 2025-06-05T23:23:14.5274800Z soupsieve 2.7 2025-06-05T23:23:14.5275080Z Sphinx 5.3.0 2025-06-05T23:23:14.5275354Z sphinx-copybutton 0.5.0 2025-06-05T23:23:14.5275645Z sphinx_design 0.4.1 2025-06-05T23:23:14.5275918Z sphinx-gallery 0.14.0 2025-06-05T23:23:14.5276211Z sphinx_reredirects 0.1.4 2025-06-05T23:23:14.5276505Z sphinxcontrib-applehelp 2.0.0 2025-06-05T23:23:14.5276817Z sphinxcontrib-devhelp 2.0.0 2025-06-05T23:23:14.5277110Z sphinxcontrib-htmlhelp 2.1.0 2025-06-05T23:23:14.5277418Z sphinxcontrib-jsmath 1.0.1 2025-06-05T23:23:14.5277710Z sphinxcontrib-qthelp 2.0.0 2025-06-05T23:23:14.5278029Z sphinxcontrib-serializinghtml 2.0.0 2025-06-05T23:23:14.5278335Z sympy 1.14.0 2025-06-05T23:23:14.5278604Z tabulate 0.9.0 2025-06-05T23:23:14.5278884Z tiktoken 0.9.0 2025-06-05T23:23:14.5279144Z timm 1.0.7 2025-06-05T23:23:14.5279423Z tokenizers 0.21.1 2025-06-05T23:23:14.5279690Z tomli 2.0.1 2025-06-05T23:23:14.5279987Z torch 2.8.0a0+git5616fa4 2025-06-05T23:23:14.5280310Z torchao 0.12.0+gitbc68b11 2025-06-05T23:23:14.5280643Z torchaudio 2.6.0a0+1a8f621 2025-06-05T23:23:14.5280955Z torchdata 0.11.0 2025-06-05T23:23:14.5281224Z torchsr 1.0.4 2025-06-05T23:23:14.5287862Z torchtune 0.6.1 2025-06-05T23:23:14.5288188Z torchvision 0.22.0a0+966da7e 2025-06-05T23:23:14.5288517Z tqdm 4.67.1 2025-06-05T23:23:14.5288810Z transformers 4.47.1 2025-06-05T23:23:14.5289114Z triton 3.0.0 1 2025-06-05T23:23:14.5289446Z typing_extensions 4.14.0 2025-06-05T23:23:14.5289718Z tzdata 2025.2 2025-06-05T23:23:14.5289997Z urllib3 2.4.0 2025-06-05T23:23:14.5290260Z wheel 0.45.1 2025-06-05T23:23:14.5290536Z xxhash 3.5.0 2025-06-05T23:23:14.5290794Z yarl 1.20.0 2025-06-05T23:23:14.5291070Z zstd 1.5.5.1 2025-06-05T23:23:14.5291354Z + build_executorch_runner buck2 Release 2025-06-05T23:23:14.5291659Z + [[ buck2 == \b\u\c\k\2 ]] 2025-06-05T23:23:14.5292059Z + build_executorch_runner_buck2 2025-06-05T23:23:14.5292446Z + retry buck2 build //examples/portable/executor_runner:executor_runner 2025-06-05T23:23:14.5292968Z + buck2 build //examples/portable/executor_runner:executor_runner 2025-06-05T23:23:14.5293621Z Directory changed: root//third-party/flatcc/lib 2025-06-05T23:23:14.5294289Z Directory changed: root//third-party/flatcc/bin 2025-06-05T23:23:14.5294910Z File changed: root//third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:23:14.5295369Z 199 additional file change events 2025-06-05T23:23:14.6902244Z BUILD SUCCEEDED 2025-06-05T23:23:14.6911578Z + [[ '' == *main* ]] 2025-06-05T23:23:14.6911972Z + [[ '' == *gh* ]] 2025-06-05T23:23:14.6912525Z + export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded 2025-06-05T23:23:14.6913257Z + ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded 2025-06-05T23:23:14.6913905Z + mkdir -p artifacts-to-be-uploaded/ 2025-06-05T23:23:14.6914493Z + export BUILD_AAR_DIR=aar-out 2025-06-05T23:23:14.6914970Z + BUILD_AAR_DIR=aar-out 2025-06-05T23:23:14.6915410Z + mkdir -p aar-out 2025-06-05T23:23:14.6915836Z + bash scripts/build_android_library.sh 2025-06-05T23:23:14.6916381Z + [[ -z '' ]] 2025-06-05T23:23:14.6916771Z + PYTHON_EXECUTABLE=python3 2025-06-05T23:23:14.6917255Z + which python3 2025-06-05T23:23:14.6917674Z /opt/conda/envs/py_3.10/bin/python3 2025-06-05T23:23:14.6918599Z + [[ scripts/build_android_library.sh == \s\c\r\i\p\t\s\/\b\u\i\l\d\_\a\n\d\r\o\i\d\_\l\i\b\r\a\r\y\.\s\h ]] 2025-06-05T23:23:14.6919518Z + main 2025-06-05T23:23:14.6919857Z + '[' -z '' ']' 2025-06-05T23:23:14.6920268Z + ANDROID_ABIS=("arm64-v8a" "x86_64") 2025-06-05T23:23:14.6920783Z + export ANDROID_ABIS 2025-06-05T23:23:14.6921423Z + mkdir -p cmake-out-android-so/ 2025-06-05T23:23:14.6921964Z + for ANDROID_ABI in "${ANDROID_ABIS[@]}" 2025-06-05T23:23:14.6922557Z + build_android_native_library arm64-v8a 2025-06-05T23:23:14.6923090Z + ANDROID_ABI=arm64-v8a 2025-06-05T23:23:14.6923516Z + ANDROID_NDK=/opt/ndk 2025-06-05T23:23:14.6923971Z + CMAKE_OUT=cmake-out-android-arm64-v8a 2025-06-05T23:23:14.6924546Z + EXECUTORCH_CMAKE_BUILD_TYPE=Release 2025-06-05T23:23:14.6925059Z + QNN_SDK_ROOT= 2025-06-05T23:23:14.6925429Z + '[' -n '' ']' 2025-06-05T23:23:14.6925825Z + EXECUTORCH_BUILD_QNN=OFF 2025-06-05T23:23:14.6926293Z + NEURON_BUFFER_ALLOCATOR_LIB= 2025-06-05T23:23:14.6926775Z + NEURON_USDK_ADAPTER_LIB= 2025-06-05T23:23:14.6927203Z + '[' -n '' ']' 2025-06-05T23:23:14.6927556Z + EXECUTORCH_BUILD_NEURON=OFF 2025-06-05T23:23:14.6928035Z + EXECUTORCH_BUILD_VULKAN=OFF 2025-06-05T23:23:14.6935067Z + cmake . -DCMAKE_INSTALL_PREFIX=cmake-out-android-arm64-v8a -DCMAKE_TOOLCHAIN_FILE=/opt/ndk/build/cmake/android.toolchain.cmake -DANDROID_ABI=arm64-v8a -DANDROID_PLATFORM=android-26 -DBUILD_TESTING=OFF -DEXECUTORCH_PAL_DEFAULT=android -DEXECUTORCH_ENABLE_LOGGING=ON -DEXECUTORCH_BUILD_DEVTOOLS=ON -DEXECUTORCH_ENABLE_EVENT_TRACER=OFF -DEXECUTORCH_LOG_LEVEL=Info -DEXECUTORCH_BUILD_XNNPACK=ON -DEXECUTORCH_XNNPACK_SHARED_WORKSPACE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON -DEXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL=ON -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON -DEXECUTORCH_BUILD_EXTENSION_TRAINING=ON -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON -DEXECUTORCH_BUILD_NEURON=OFF -DNEURON_BUFFER_ALLOCATOR_LIB= -DEXECUTORCH_BUILD_QNN=OFF -DQNN_SDK_ROOT= -DEXECUTORCH_BUILD_VULKAN=OFF -DSUPPORT_REGEX_LOOKAHEAD=ON -DCMAKE_BUILD_TYPE=Release -Bcmake-out-android-arm64-v8a 2025-06-05T23:23:14.6943699Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:14.6945096Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:14.6946001Z CMake. 2025-06-05T23:23:14.6946221Z 2025-06-05T23:23:14.6946636Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:14.6947669Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:14.6948569Z to work with policies introduced by or earlier. 2025-06-05T23:23:14.6949249Z Call Stack (most recent call first): 2025-06-05T23:23:14.6950561Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:146 (include) 2025-06-05T23:23:14.6952071Z CMakeLists.txt:49 (project) 2025-06-05T23:23:14.6952399Z 2025-06-05T23:23:14.6952625Z  2025-06-05T23:23:14.6953728Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:14.6955050Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:14.6955799Z CMake. 2025-06-05T23:23:14.6956005Z 2025-06-05T23:23:14.6956431Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:14.6957446Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:14.6958338Z to work with policies introduced by or earlier. 2025-06-05T23:23:14.6958985Z Call Stack (most recent call first): 2025-06-05T23:23:14.6959665Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:14.6961131Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:146 (include) 2025-06-05T23:23:14.6962468Z CMakeLists.txt:49 (project) 2025-06-05T23:23:14.6962810Z 2025-06-05T23:23:14.6963037Z  2025-06-05T23:23:14.6964102Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:14.6965711Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:14.6966647Z CMake. 2025-06-05T23:23:14.6966865Z 2025-06-05T23:23:14.6967262Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:14.6968270Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:14.6969135Z to work with policies introduced by or earlier. 2025-06-05T23:23:14.6969788Z Call Stack (most recent call first): 2025-06-05T23:23:14.6970626Z cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:14.6971495Z CMakeLists.txt:49 (project) 2025-06-05T23:23:14.6971827Z 2025-06-05T23:23:14.6972073Z  2025-06-05T23:23:14.6972522Z -- The C compiler identification is Clang 18.0.2 2025-06-05T23:23:14.6973211Z -- The CXX compiler identification is Clang 18.0.2 2025-06-05T23:23:14.6974431Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:14.6975666Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:14.6976447Z CMake. 2025-06-05T23:23:14.6976662Z 2025-06-05T23:23:14.6977059Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:14.6978104Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:14.6979026Z to work with policies introduced by or earlier. 2025-06-05T23:23:14.6979691Z Call Stack (most recent call first): 2025-06-05T23:23:15.1162596Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:15.1163770Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:23:15.1164857Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:23:15.1165715Z CMakeLists.txt:49 (project) 2025-06-05T23:23:15.1165897Z 2025-06-05T23:23:15.1166168Z  2025-06-05T23:23:15.1166393Z -- Detecting C compiler ABI info 2025-06-05T23:23:15.1167082Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:15.1167788Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.1168207Z CMake. 2025-06-05T23:23:15.1168316Z 2025-06-05T23:23:15.1168535Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.1169090Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.1169554Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.1170167Z Call Stack (most recent call first): 2025-06-05T23:23:15.1170720Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:15.1171636Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-Dw7Lhe/CMakeLists.txt:2 (project) 2025-06-05T23:23:15.1172227Z 2025-06-05T23:23:15.1172331Z  2025-06-05T23:23:15.1172938Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:15.1173682Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.1174083Z CMake. 2025-06-05T23:23:15.1174204Z 2025-06-05T23:23:15.1174423Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.1174972Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.1175438Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.1175812Z Call Stack (most recent call first): 2025-06-05T23:23:15.1176181Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:15.1176821Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:15.1177847Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-Dw7Lhe/CMakeLists.txt:2 (project) 2025-06-05T23:23:15.1178420Z 2025-06-05T23:23:15.1178521Z  2025-06-05T23:23:15.1179030Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:15.1179668Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.1180084Z CMake. 2025-06-05T23:23:15.1180195Z 2025-06-05T23:23:15.1180504Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.1181055Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.1181538Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.1181889Z Call Stack (most recent call first): 2025-06-05T23:23:15.1182582Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:15.1183663Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:23:15.1184721Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:23:15.1185831Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-Dw7Lhe/CMakeLists.txt:2 (project) 2025-06-05T23:23:15.1186403Z 2025-06-05T23:23:15.1186508Z  2025-06-05T23:23:15.1186734Z -- Detecting C compiler ABI info - done 2025-06-05T23:23:15.1187269Z -- Check for working C compiler: /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang - skipped 2025-06-05T23:23:15.1187819Z -- Detecting C compile features 2025-06-05T23:23:15.1188104Z -- Detecting C compile features - done 2025-06-05T23:23:15.1188415Z -- Detecting CXX compiler ABI info 2025-06-05T23:23:15.1189079Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:15.1189780Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.1190190Z CMake. 2025-06-05T23:23:15.1190297Z 2025-06-05T23:23:15.1190512Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.1191060Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.1191524Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.1191881Z Call Stack (most recent call first): 2025-06-05T23:23:15.1192426Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:15.1193416Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-QvyOQN/CMakeLists.txt:2 (project) 2025-06-05T23:23:15.1193988Z 2025-06-05T23:23:15.1194099Z  2025-06-05T23:23:15.1194703Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:15.1195453Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.1195851Z CMake. 2025-06-05T23:23:15.1195973Z 2025-06-05T23:23:15.1196191Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.1196740Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.1197206Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.1197564Z Call Stack (most recent call first): 2025-06-05T23:23:15.1197928Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:15.1198563Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:15.1199474Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-QvyOQN/CMakeLists.txt:2 (project) 2025-06-05T23:23:15.1200054Z 2025-06-05T23:23:15.1200149Z  2025-06-05T23:23:15.1200719Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:15.1201357Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.1201770Z CMake. 2025-06-05T23:23:15.1201880Z 2025-06-05T23:23:15.1202096Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.1202652Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.1203131Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.1203479Z Call Stack (most recent call first): 2025-06-05T23:23:15.1204183Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:15.1205285Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:23:15.1206372Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:23:15.1207420Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-QvyOQN/CMakeLists.txt:2 (project) 2025-06-05T23:23:15.1207990Z 2025-06-05T23:23:15.1208087Z  2025-06-05T23:23:15.1208347Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:23:15.1208901Z -- Check for working CXX compiler: /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ - skipped 2025-06-05T23:23:15.1209464Z -- Detecting CXX compile features 2025-06-05T23:23:15.1209775Z -- Detecting CXX compile features - done 2025-06-05T23:23:15.1210087Z -- --- Configured Options --- 2025-06-05T23:23:15.1210271Z 2025-06-05T23:23:15.1210399Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:23:15.1210745Z -- CMAKE_SYSTEM_PROCESSOR : aarch64 2025-06-05T23:23:15.1211111Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:23:15.1211460Z -- PYTHON_EXECUTABLE : python 2025-06-05T23:23:15.1211822Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:23:15.1212276Z -- CMAKE_TOOLCHAIN_FILE : /opt/ndk/build/cmake/android.toolchain.cmake 2025-06-05T23:23:15.1212720Z -- BUCK2 x (unset) 2025-06-05T23:23:15.1213070Z -- EXECUTORCH_ENABLE_LOGGING : ON 2025-06-05T23:23:15.1213406Z -- EXECUTORCH_BUILD_COREML : OFF 2025-06-05T23:23:15.1213770Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:23:15.1214131Z -- EXECUTORCH_PAL_DEFAULT : android 2025-06-05T23:23:15.1214684Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/android.cpp 2025-06-05T23:23:15.1215295Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:23:15.1215658Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:23:15.1216024Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:23:15.1216364Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:23:15.1216719Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:23:15.1217061Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : ON 2025-06-05T23:23:15.1217417Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : OFF 2025-06-05T23:23:15.1217763Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : OFF 2025-06-05T23:23:15.1218123Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : ON 2025-06-05T23:23:15.1218471Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : OFF 2025-06-05T23:23:15.1218829Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:23:15.1219185Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : ON 2025-06-05T23:23:15.1219535Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : ON 2025-06-05T23:23:15.1219897Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-06-05T23:23:15.1220237Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : ON 2025-06-05T23:23:15.1220604Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:23:15.1220946Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:23:15.1221350Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:23:15.1221686Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:23:15.1222032Z -- EXECUTORCH_BUILD_PYBIND : OFF 2025-06-05T23:23:15.1222371Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:23:15.1222706Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : ON 2025-06-05T23:23:15.1223068Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-06-05T23:23:15.1223411Z -- EXECUTORCH_BUILD_DEVTOOLS : ON 2025-06-05T23:23:15.1223759Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:23:15.1224088Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:23:15.1224434Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:23:15.1224769Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:23:15.1225112Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-06-05T23:23:15.1225455Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:23:15.1225864Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:23:15.1226210Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:23:15.1226539Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:23:15.1226887Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:23:15.1227221Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:23:15.1227660Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:23:15.1228088Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:23:15.3515393Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:23:15.3516162Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : ON 2025-06-05T23:23:15.3516585Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:23:15.3516956Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:23:15.3517308Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:23:15.3517639Z -- -------------------------- 2025-06-05T23:23:15.3518072Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:23:15.3519002Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:23:15.3519657Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.3520063Z CMake. 2025-06-05T23:23:15.3520186Z 2025-06-05T23:23:15.3520405Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.3520942Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.3521420Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.3521880Z 2025-06-05T23:23:15.3522001Z  2025-06-05T23:23:15.3522267Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:23:15.3522723Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:23:15.3523102Z -- Setting Clang compiler options 2025-06-05T23:23:15.3524517Z -- Configured C_FLAGS: -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:23:15.3526333Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:23:15.3527047Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.3527459Z CMake. 2025-06-05T23:23:15.3527567Z 2025-06-05T23:23:15.3527785Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.3528341Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.3528813Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.3529076Z 2025-06-05T23:23:15.3529173Z  2025-06-05T23:23:15.3529875Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:23:15.3530599Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.3531009Z CMake. 2025-06-05T23:23:15.3531116Z 2025-06-05T23:23:15.3531332Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.3531885Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.3532367Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.3532620Z 2025-06-05T23:23:15.3532718Z  2025-06-05T23:23:15.3532948Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:23:15.3533632Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:15.3534333Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.3534730Z CMake. 2025-06-05T23:23:15.3534848Z 2025-06-05T23:23:15.3535067Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.3535612Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.3536076Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.3536436Z Call Stack (most recent call first): 2025-06-05T23:23:15.3536974Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:15.3537899Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wNXN4e/CMakeLists.txt:4 (project) 2025-06-05T23:23:15.3538470Z 2025-06-05T23:23:15.3538567Z  2025-06-05T23:23:15.3539180Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:15.3539921Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.3540319Z CMake. 2025-06-05T23:23:15.3540428Z 2025-06-05T23:23:15.3540661Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.3541200Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.3541676Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.3542026Z Call Stack (most recent call first): 2025-06-05T23:23:15.3542415Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:15.3543047Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:15.3543953Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wNXN4e/CMakeLists.txt:4 (project) 2025-06-05T23:23:15.3544599Z 2025-06-05T23:23:15.3544696Z  2025-06-05T23:23:15.3545231Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:15.3545957Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.3546370Z CMake. 2025-06-05T23:23:15.3546477Z 2025-06-05T23:23:15.3546700Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.3547249Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.3547727Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.3548075Z Call Stack (most recent call first): 2025-06-05T23:23:15.3548767Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:15.3549841Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:23:15.3550907Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:23:15.3551944Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wNXN4e/CMakeLists.txt:4 (project) 2025-06-05T23:23:15.3552511Z 2025-06-05T23:23:15.3552683Z  2025-06-05T23:23:15.3552942Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2025-06-05T23:23:15.3553304Z -- Check if compiler accepts -pthread 2025-06-05T23:23:15.3553985Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:15.3554676Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.3555088Z CMake. 2025-06-05T23:23:15.3555197Z 2025-06-05T23:23:15.3555426Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.3555963Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.3556444Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.3556794Z Call Stack (most recent call first): 2025-06-05T23:23:15.3557340Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:15.3558256Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-avKd7s/CMakeLists.txt:4 (project) 2025-06-05T23:23:15.3558839Z 2025-06-05T23:23:15.3558936Z  2025-06-05T23:23:15.3559545Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:15.3560285Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.3560793Z CMake. 2025-06-05T23:23:15.3560902Z 2025-06-05T23:23:15.3561123Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.3561755Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.3562228Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.3562591Z Call Stack (most recent call first): 2025-06-05T23:23:15.3562969Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:15.3563593Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:15.3564510Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-avKd7s/CMakeLists.txt:4 (project) 2025-06-05T23:23:15.3565608Z 2025-06-05T23:23:15.3565734Z  2025-06-05T23:23:15.3566247Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:15.3566895Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.3567297Z CMake. 2025-06-05T23:23:15.3567406Z 2025-06-05T23:23:15.3567636Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.3568322Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.3568801Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.3569152Z Call Stack (most recent call first): 2025-06-05T23:23:15.3569856Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:15.3570945Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:23:15.3572003Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:23:15.3573348Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-avKd7s/CMakeLists.txt:4 (project) 2025-06-05T23:23:15.3573927Z 2025-06-05T23:23:15.3574050Z  2025-06-05T23:23:15.3574287Z -- Check if compiler accepts -pthread - yes 2025-06-05T23:23:15.3574620Z -- Found Threads: TRUE 2025-06-05T23:23:15.3575288Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:23:15.3576042Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.3576447Z CMake. 2025-06-05T23:23:15.3576567Z 2025-06-05T23:23:15.3576905Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.3577445Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.3577919Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.3578170Z 2025-06-05T23:23:15.3578279Z  2025-06-05T23:23:15.3578491Z -- Looking for pthread_create in pthreads 2025-06-05T23:23:15.3579182Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:15.3579876Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:15.3580296Z CMake. 2025-06-05T23:23:15.3580402Z 2025-06-05T23:23:15.3580617Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:15.3581166Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:15.3581639Z to work with policies introduced by or earlier. 2025-06-05T23:23:15.3581995Z Call Stack (most recent call first): 2025-06-05T23:23:15.3582545Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:15.3583451Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-VEmrIo/CMakeLists.txt:4 (project) 2025-06-05T23:23:15.3584035Z 2025-06-05T23:23:15.3584128Z  2025-06-05T23:23:15.3584726Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.1470552Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.1471336Z CMake. 2025-06-05T23:23:18.1471453Z 2025-06-05T23:23:18.1471707Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.1472262Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.1472744Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.1473109Z Call Stack (most recent call first): 2025-06-05T23:23:18.1473500Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:18.1474123Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.1475051Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-VEmrIo/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.1475623Z 2025-06-05T23:23:18.1475934Z  2025-06-05T23:23:18.1476470Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:18.1477393Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.1477800Z CMake. 2025-06-05T23:23:18.1477922Z 2025-06-05T23:23:18.1478142Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.1478680Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.1479170Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.1479535Z Call Stack (most recent call first): 2025-06-05T23:23:18.1480220Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:18.1481324Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:23:18.1482373Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:23:18.1483423Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-VEmrIo/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.1484000Z 2025-06-05T23:23:18.1484120Z  2025-06-05T23:23:18.1484376Z -- Looking for pthread_create in pthreads - not found 2025-06-05T23:23:18.1484757Z -- Looking for pthread_create in pthread 2025-06-05T23:23:18.1485643Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.1486438Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.1486912Z CMake. 2025-06-05T23:23:18.1487040Z 2025-06-05T23:23:18.1487262Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.1487815Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.1488311Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.1488732Z Call Stack (most recent call first): 2025-06-05T23:23:18.1489279Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.1490215Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-rpPPJa/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.1490790Z 2025-06-05T23:23:18.1490908Z  2025-06-05T23:23:18.1491529Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.1492272Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.1492675Z CMake. 2025-06-05T23:23:18.1492789Z 2025-06-05T23:23:18.1493023Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.1493560Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.1494039Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.1494389Z Call Stack (most recent call first): 2025-06-05T23:23:18.1494774Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:18.1495403Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.1496317Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-rpPPJa/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.1496900Z 2025-06-05T23:23:18.1497000Z  2025-06-05T23:23:18.1497492Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:18.1498139Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.1498538Z CMake. 2025-06-05T23:23:18.1498657Z 2025-06-05T23:23:18.1498875Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.1499424Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.1499886Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.1500350Z Call Stack (most recent call first): 2025-06-05T23:23:18.1501032Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:18.1502115Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:23:18.1503185Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:23:18.1504219Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-rpPPJa/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.1504803Z 2025-06-05T23:23:18.1504905Z  2025-06-05T23:23:18.1505153Z -- Looking for pthread_create in pthread - not found 2025-06-05T23:23:18.1505695Z -- Resolved buck2 as buck2. 2025-06-05T23:23:18.1505955Z -- Killing buck2 daemon 2025-06-05T23:23:18.1506198Z 'buck2 killall' 2025-06-05T23:23:18.1506442Z -- executorch: Generating source lists 2025-06-05T23:23:18.1507047Z -- executorch: Generating source file list /pytorch/executorch/cmake-out-android-arm64-v8a/executorch_srcs.cmake 2025-06-05T23:23:18.1507910Z -- executorch: Using sources file /pytorch/executorch/cmake-out-android-arm64-v8a/executorch_srcs.cmake 2025-06-05T23:23:18.1508799Z 'python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-06-05T23:23:18.1509372Z -- Generating operator lib: 2025-06-05T23:23:18.1509639Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:23:18.1510043Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:23:18.1510505Z -- ROOT_OPS: 2025-06-05T23:23:18.1510753Z -- INCLUDE_ALL_OPS: 2025-06-05T23:23:18.1512259Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out-android-arm64-v8a/kernels/portable/portable_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/portable/functions.yaml" 2025-06-05T23:23:18.1513604Z -- Generating kernel bindings: 2025-06-05T23:23:18.1513880Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:23:18.1514284Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:23:18.1514700Z -- CUSTOM_OPS_YAML: 2025-06-05T23:23:18.1514962Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:23:18.1516967Z Generated files /pytorch/executorch/cmake-out-android-arm64-v8a/kernels/portable/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out-android-arm64-v8a/kernels/portable/portable_ops_lib/Functions.h;/pytorch/executorch/cmake-out-android-arm64-v8a/kernels/portable/portable_ops_lib/NativeFunctions.h 2025-06-05T23:23:18.1518704Z -- Generating operator lib: 2025-06-05T23:23:18.1518977Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:23:18.1519247Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:23:18.1519537Z -- DEPS: executorch_core 2025-06-05T23:23:18.1519787Z -- Generating operator lib: 2025-06-05T23:23:18.1520064Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:23:18.1520458Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:23:18.1520948Z -- ROOT_OPS: 2025-06-05T23:23:18.1521214Z -- INCLUDE_ALL_OPS: 2025-06-05T23:23:18.1522647Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out-android-arm64-v8a/kernels/optimized/optimized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/optimized/optimized.yaml" 2025-06-05T23:23:18.1523861Z -- Generating kernel bindings: 2025-06-05T23:23:18.1524136Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:23:18.1524541Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:23:18.1524954Z -- CUSTOM_OPS_YAML: 2025-06-05T23:23:18.1525205Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:23:18.1527240Z Generated files /pytorch/executorch/cmake-out-android-arm64-v8a/kernels/optimized/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out-android-arm64-v8a/kernels/optimized/optimized_ops_lib/Functions.h;/pytorch/executorch/cmake-out-android-arm64-v8a/kernels/optimized/optimized_ops_lib/NativeFunctions.h 2025-06-05T23:23:18.1529404Z -- Generating operator lib: 2025-06-05T23:23:18.1529682Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:23:18.1529968Z -- KERNEL_LIBS: optimized_kernels 2025-06-05T23:23:18.1530268Z -- DEPS: executorch_core 2025-06-05T23:23:18.1530523Z -- Merging kernel yaml files: 2025-06-05T23:23:18.1531004Z -- FUNCTIONS_YAML: /pytorch/executorch/configurations/../kernels/optimized/optimized.yaml 2025-06-05T23:23:18.1531712Z -- FALLBACK_YAML: /pytorch/executorch/configurations/../kernels/portable/functions.yaml 2025-06-05T23:23:18.1532356Z -- OUTPUT_DIR: /pytorch/executorch/cmake-out-android-arm64-v8a/configurations 2025-06-05T23:23:18.1532823Z -- Generating operator lib: 2025-06-05T23:23:18.1533102Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:23:18.1533649Z -- OPS_SCHEMA_YAML: /pytorch/executorch/cmake-out-android-arm64-v8a/configurations/merged.yaml 2025-06-05T23:23:18.1534158Z -- ROOT_OPS: 2025-06-05T23:23:18.1534381Z -- INCLUDE_ALL_OPS: 2025-06-05T23:23:18.1536444Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out-android-arm64-v8a/configurations/optimized_native_cpu_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/cmake-out-android-arm64-v8a/configurations/merged.yaml" 2025-06-05T23:23:18.1537771Z -- Generating kernel bindings: 2025-06-05T23:23:18.1538077Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:23:18.1538609Z -- FUNCTIONS_YAML: /pytorch/executorch/cmake-out-android-arm64-v8a/configurations/merged.yaml 2025-06-05T23:23:18.1539135Z -- CUSTOM_OPS_YAML: 2025-06-05T23:23:18.1539379Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:23:18.1541515Z Generated files /pytorch/executorch/cmake-out-android-arm64-v8a/configurations/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out-android-arm64-v8a/configurations/optimized_native_cpu_ops_lib/Functions.h;/pytorch/executorch/cmake-out-android-arm64-v8a/configurations/optimized_native_cpu_ops_lib/NativeFunctions.h 2025-06-05T23:23:18.1543368Z -- Generating operator lib: 2025-06-05T23:23:18.1543651Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:23:18.1544044Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-06-05T23:23:18.5049611Z -- DEPS: executorch_core 2025-06-05T23:23:18.5050979Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:23:18.5052235Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.5053038Z CMake. 2025-06-05T23:23:18.5053243Z 2025-06-05T23:23:18.5053706Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.5054739Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.5055571Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.5056041Z 2025-06-05T23:23:18.5056234Z  2025-06-05T23:23:18.5056627Z -- Looking for C++ include unistd.h 2025-06-05T23:23:18.5057891Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.5059230Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.5059999Z CMake. 2025-06-05T23:23:18.5060190Z 2025-06-05T23:23:18.5060613Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.5061632Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.5062518Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.5063174Z Call Stack (most recent call first): 2025-06-05T23:23:18.5064204Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.5066520Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-HBGvKL/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.5067649Z 2025-06-05T23:23:18.5067881Z  2025-06-05T23:23:18.5069054Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.5070452Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.5071183Z CMake. 2025-06-05T23:23:18.5071387Z 2025-06-05T23:23:18.5071793Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.5072841Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.5073745Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.5074410Z Call Stack (most recent call first): 2025-06-05T23:23:18.5075096Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:18.5076309Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.5078094Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-HBGvKL/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.5079190Z 2025-06-05T23:23:18.5079424Z  2025-06-05T23:23:18.5080543Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:18.5081786Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.5082559Z CMake. 2025-06-05T23:23:18.5082771Z 2025-06-05T23:23:18.5083190Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.5084233Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.5085103Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.5085747Z Call Stack (most recent call first): 2025-06-05T23:23:18.5087033Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:18.5089208Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:23:18.5091311Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:23:18.5093329Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-HBGvKL/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.5094451Z 2025-06-05T23:23:18.5094685Z  2025-06-05T23:23:18.5095070Z -- Looking for C++ include unistd.h - found 2025-06-05T23:23:18.5095620Z -- Looking for C++ include stdint.h 2025-06-05T23:23:18.5096917Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.5098279Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.5099052Z CMake. 2025-06-05T23:23:18.5099275Z 2025-06-05T23:23:18.5099689Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.5100743Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.5101630Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.5102309Z Call Stack (most recent call first): 2025-06-05T23:23:18.5103344Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.5105160Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-D0baxP/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.5106396Z 2025-06-05T23:23:18.5106624Z  2025-06-05T23:23:18.5107796Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.5109215Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.5110186Z CMake. 2025-06-05T23:23:18.5110401Z 2025-06-05T23:23:18.5110821Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.5111870Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.5112785Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.5113453Z Call Stack (most recent call first): 2025-06-05T23:23:18.5114149Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:18.5115360Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.5117154Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-D0baxP/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.5118300Z 2025-06-05T23:23:18.5118517Z  2025-06-05T23:23:18.5119429Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:18.5120665Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.5121454Z CMake. 2025-06-05T23:23:18.5121652Z 2025-06-05T23:23:18.5122065Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.5123111Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.5124136Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.5124823Z Call Stack (most recent call first): 2025-06-05T23:23:18.5126139Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:18.5128249Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:23:18.5130308Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:23:18.5132329Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-D0baxP/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.5133476Z 2025-06-05T23:23:18.5133701Z  2025-06-05T23:23:18.5134111Z -- Looking for C++ include stdint.h - found 2025-06-05T23:23:18.5134708Z -- Looking for C++ include inttypes.h 2025-06-05T23:23:18.5135942Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.5137259Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.5138003Z CMake. 2025-06-05T23:23:18.5138197Z 2025-06-05T23:23:18.5138584Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.5139621Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.5140477Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.5141152Z Call Stack (most recent call first): 2025-06-05T23:23:18.5142170Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.5143949Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-3PGNdF/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.5145085Z 2025-06-05T23:23:18.5145296Z  2025-06-05T23:23:18.5146538Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.5147962Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.5148732Z CMake. 2025-06-05T23:23:18.5148931Z 2025-06-05T23:23:18.5149340Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.5150386Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.5151263Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.5151915Z Call Stack (most recent call first): 2025-06-05T23:23:18.5152585Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:18.5153942Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.5155728Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-3PGNdF/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.5156852Z 2025-06-05T23:23:18.5157072Z  2025-06-05T23:23:18.5158002Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:18.5159246Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.5160033Z CMake. 2025-06-05T23:23:18.5160237Z 2025-06-05T23:23:18.5160645Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.5161706Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.5162604Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.5163220Z Call Stack (most recent call first): 2025-06-05T23:23:18.5164260Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:18.5166114Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:23:18.5167976Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:23:18.5169032Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-3PGNdF/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.5169622Z 2025-06-05T23:23:18.5169771Z  2025-06-05T23:23:18.5170002Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:23:18.5170350Z -- Looking for C++ include sys/types.h 2025-06-05T23:23:18.5171033Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.5171731Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.5172156Z CMake. 2025-06-05T23:23:18.5172266Z 2025-06-05T23:23:18.5172485Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.5173034Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.5173511Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.5173860Z Call Stack (most recent call first): 2025-06-05T23:23:18.8825068Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.8826120Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-PXnbRJ/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.8826699Z 2025-06-05T23:23:18.8826962Z  2025-06-05T23:23:18.8827589Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.8828321Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.8828777Z CMake. 2025-06-05T23:23:18.8828885Z 2025-06-05T23:23:18.8829115Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.8829659Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.8830156Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.8830509Z Call Stack (most recent call first): 2025-06-05T23:23:18.8830893Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:18.8831518Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.8832440Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-PXnbRJ/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.8833013Z 2025-06-05T23:23:18.8833127Z  2025-06-05T23:23:18.8833618Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:18.8834470Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.8834872Z CMake. 2025-06-05T23:23:18.8834992Z 2025-06-05T23:23:18.8835210Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.8835755Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.8836233Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.8836600Z Call Stack (most recent call first): 2025-06-05T23:23:18.8837289Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:18.8838391Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:23:18.8839466Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:23:18.8840522Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-PXnbRJ/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.8841095Z 2025-06-05T23:23:18.8841209Z  2025-06-05T23:23:18.8841436Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:23:18.8841776Z -- Looking for C++ include sys/stat.h 2025-06-05T23:23:18.8842539Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.8843248Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.8843647Z CMake. 2025-06-05T23:23:18.8843768Z 2025-06-05T23:23:18.8843986Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.8844537Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.8845004Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.8845370Z Call Stack (most recent call first): 2025-06-05T23:23:18.8845910Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.8846837Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-O0HpM7/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.8847407Z 2025-06-05T23:23:18.8847520Z  2025-06-05T23:23:18.8848120Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.8848860Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.8849260Z CMake. 2025-06-05T23:23:18.8849380Z 2025-06-05T23:23:18.8849595Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.8850128Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.8850605Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.8850966Z Call Stack (most recent call first): 2025-06-05T23:23:18.8851337Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:18.8851968Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.8852872Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-O0HpM7/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.8853456Z 2025-06-05T23:23:18.8853553Z  2025-06-05T23:23:18.8854043Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:18.8854686Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.8855097Z CMake. 2025-06-05T23:23:18.8855205Z 2025-06-05T23:23:18.8855422Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.8855967Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.8856430Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.8856853Z Call Stack (most recent call first): 2025-06-05T23:23:18.8857533Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:18.8858637Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:23:18.8859753Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:23:18.8860805Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-O0HpM7/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.8861376Z 2025-06-05T23:23:18.8861477Z  2025-06-05T23:23:18.8861709Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:23:18.8862031Z -- Looking for C++ include fnmatch.h 2025-06-05T23:23:18.8862699Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.8863394Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.8863805Z CMake. 2025-06-05T23:23:18.8863912Z 2025-06-05T23:23:18.8864141Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.8865432Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.8866017Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.8866366Z Call Stack (most recent call first): 2025-06-05T23:23:18.8866915Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.8867831Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-Q2g6oS/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.8868413Z 2025-06-05T23:23:18.8868537Z  2025-06-05T23:23:18.8869157Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.8869897Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.8870318Z CMake. 2025-06-05T23:23:18.8870429Z 2025-06-05T23:23:18.8870650Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.8871205Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.8871684Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.8872039Z Call Stack (most recent call first): 2025-06-05T23:23:18.8872423Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:18.8873255Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.8874597Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-Q2g6oS/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.8875171Z 2025-06-05T23:23:18.8875296Z  2025-06-05T23:23:18.8875811Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:18.8876477Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.8876882Z CMake. 2025-06-05T23:23:18.8876993Z 2025-06-05T23:23:18.8877226Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.8877769Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.8878242Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.8878590Z Call Stack (most recent call first): 2025-06-05T23:23:18.8879287Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:18.8880387Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:23:18.8881461Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:23:18.8882658Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-Q2g6oS/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.8883229Z 2025-06-05T23:23:18.8883344Z  2025-06-05T23:23:18.8883562Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:23:18.8883904Z -- Looking for C++ include stddef.h 2025-06-05T23:23:18.8884555Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.8885262Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.8885660Z CMake. 2025-06-05T23:23:18.8885779Z 2025-06-05T23:23:18.8885993Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.8886532Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.8887006Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.8887373Z Call Stack (most recent call first): 2025-06-05T23:23:18.8887904Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:18.8888821Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-7640yH/CMakeLists.txt:4 (project) 2025-06-05T23:23:18.8889472Z 2025-06-05T23:23:18.8889570Z  2025-06-05T23:23:18.8890187Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:18.8890930Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:18.8891331Z CMake. 2025-06-05T23:23:18.8891438Z 2025-06-05T23:23:18.8891670Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:18.8892206Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:18.8892684Z to work with policies introduced by or earlier. 2025-06-05T23:23:18.8893035Z Call Stack (most recent call first): 2025-06-05T23:23:18.8893416Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:18.8894047Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:22.7746427Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-7640yH/CMakeLists.txt:4 (project) 2025-06-05T23:23:22.7747251Z 2025-06-05T23:23:22.7747639Z  2025-06-05T23:23:22.7748198Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:22.7748860Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:22.7749278Z CMake. 2025-06-05T23:23:22.7749387Z 2025-06-05T23:23:22.7749605Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:22.7750158Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:22.7750636Z to work with policies introduced by or earlier. 2025-06-05T23:23:22.7751075Z Call Stack (most recent call first): 2025-06-05T23:23:22.7751833Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:22.7752945Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:23:22.7754032Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:23:22.7755175Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-7640yH/CMakeLists.txt:4 (project) 2025-06-05T23:23:22.7755932Z 2025-06-05T23:23:22.7756047Z  2025-06-05T23:23:22.7756271Z -- Looking for C++ include stddef.h - found 2025-06-05T23:23:22.7756596Z -- Check size of uint32_t 2025-06-05T23:23:22.7757308Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:22.7758347Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:22.7758762Z CMake. 2025-06-05T23:23:22.7758870Z 2025-06-05T23:23:22.7759089Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:22.7759646Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:22.7760107Z to work with policies introduced by or earlier. 2025-06-05T23:23:22.7760468Z Call Stack (most recent call first): 2025-06-05T23:23:22.7761015Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:22.7761930Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wWPDsN/CMakeLists.txt:4 (project) 2025-06-05T23:23:22.7762507Z 2025-06-05T23:23:22.7762615Z  2025-06-05T23:23:22.7763214Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:22.7763958Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:22.7764373Z CMake. 2025-06-05T23:23:22.7764481Z 2025-06-05T23:23:22.7764698Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:22.7765616Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:22.7766091Z to work with policies introduced by or earlier. 2025-06-05T23:23:22.7766457Z Call Stack (most recent call first): 2025-06-05T23:23:22.7766829Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:22.7767464Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:22.7768386Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wWPDsN/CMakeLists.txt:4 (project) 2025-06-05T23:23:22.7768954Z 2025-06-05T23:23:22.7769072Z  2025-06-05T23:23:22.7769620Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:22.7770375Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:22.7770845Z CMake. 2025-06-05T23:23:22.7770955Z 2025-06-05T23:23:22.7771179Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:22.7771733Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:22.7772215Z to work with policies introduced by or earlier. 2025-06-05T23:23:22.7772569Z Call Stack (most recent call first): 2025-06-05T23:23:22.7773288Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:22.7774375Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:23:22.7775471Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:23:22.7776525Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wWPDsN/CMakeLists.txt:4 (project) 2025-06-05T23:23:22.7777098Z 2025-06-05T23:23:22.7777204Z  2025-06-05T23:23:22.7777423Z -- Check size of uint32_t - done 2025-06-05T23:23:22.7777697Z -- Looking for strtoll 2025-06-05T23:23:22.7778327Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:22.7779025Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:22.7779443Z CMake. 2025-06-05T23:23:22.7779554Z 2025-06-05T23:23:22.7779787Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:22.7780332Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:22.7780817Z to work with policies introduced by or earlier. 2025-06-05T23:23:22.7781295Z Call Stack (most recent call first): 2025-06-05T23:23:22.7781847Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:22.7782756Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-uFO8lo/CMakeLists.txt:4 (project) 2025-06-05T23:23:22.7783341Z 2025-06-05T23:23:22.7783443Z  2025-06-05T23:23:22.7784057Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:23:22.7784780Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:22.7785200Z CMake. 2025-06-05T23:23:22.7785306Z 2025-06-05T23:23:22.7785584Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:22.7786141Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:22.7786618Z to work with policies introduced by or earlier. 2025-06-05T23:23:22.7786976Z Call Stack (most recent call first): 2025-06-05T23:23:22.7787356Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:23:22.7787975Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:23:22.7788969Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-uFO8lo/CMakeLists.txt:4 (project) 2025-06-05T23:23:22.7789541Z 2025-06-05T23:23:22.7789644Z  2025-06-05T23:23:22.7790142Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:23:22.7790789Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:22.7791185Z CMake. 2025-06-05T23:23:22.7791293Z 2025-06-05T23:23:22.7791523Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:22.7792059Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:22.7792544Z to work with policies introduced by or earlier. 2025-06-05T23:23:22.7792892Z Call Stack (most recent call first): 2025-06-05T23:23:22.7793587Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:23:22.7794695Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:23:22.7795772Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:23:22.7796826Z /pytorch/executorch/cmake-out-android-arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-uFO8lo/CMakeLists.txt:4 (project) 2025-06-05T23:23:22.7797395Z 2025-06-05T23:23:22.7797489Z  2025-06-05T23:23:22.7797704Z -- Looking for strtoll - found 2025-06-05T23:23:22.7798099Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-06-05T23:23:22.7798657Z -- Found assembler: /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang 2025-06-05T23:23:22.7799143Z -- Building for XNNPACK_TARGET_PROCESSOR: arm64 2025-06-05T23:23:22.7799729Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.16") found components: Interpreter 2025-06-05T23:23:22.7800318Z -- Generating microkernels.cmake 2025-06-05T23:23:22.7800683Z No microkernel found in src/reference/binary-elementwise.cc 2025-06-05T23:23:22.7801110Z No microkernel found in src/reference/packing.cc 2025-06-05T23:23:22.7801529Z No microkernel found in src/reference/unary-elementwise.cc 2025-06-05T23:23:22.7802329Z -- executorch: Using source file list /pytorch/executorch/cmake-out-android-arm64-v8a/extension/llm/custom_ops/../../../executorch_srcs.cmake 2025-06-05T23:23:22.7803068Z -- Generating operator lib: 2025-06-05T23:23:22.7803335Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:23:22.7803741Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:23:22.7804225Z -- ROOT_OPS: 2025-06-05T23:23:22.7804455Z -- INCLUDE_ALL_OPS: 2025-06-05T23:23:22.7805833Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out-android-arm64-v8a/kernels/quantized/quantized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/quantized/quantized.yaml" 2025-06-05T23:23:22.7807048Z -- Generating kernel bindings: 2025-06-05T23:23:22.7807340Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:23:22.7807607Z -- FUNCTIONS_YAML: 2025-06-05T23:23:22.7807979Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:23:22.7808409Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:23:22.7812250Z Generated files /pytorch/executorch/cmake-out-android-arm64-v8a/kernels/quantized/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out-android-arm64-v8a/kernels/quantized/quantized_ops_lib/Functions.h;/pytorch/executorch/cmake-out-android-arm64-v8a/kernels/quantized/quantized_ops_lib/NativeFunctions.h;/pytorch/executorch/cmake-out-android-arm64-v8a/kernels/quantized/quantized_ops_lib/RegisterCPUCustomOps.cpp;/pytorch/executorch/cmake-out-android-arm64-v8a/kernels/quantized/quantized_ops_lib/RegisterSchema.cpp;/pytorch/executorch/cmake-out-android-arm64-v8a/kernels/quantized/quantized_ops_lib/CustomOpsNativeFunctions.h 2025-06-05T23:23:22.7815518Z -- Generating operator lib: 2025-06-05T23:23:22.7815781Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:23:22.7816070Z -- KERNEL_LIBS: quantized_kernels 2025-06-05T23:23:22.7816362Z -- DEPS: executorch_core 2025-06-05T23:23:22.7816614Z -- Configuring done (7.7s) 2025-06-05T23:23:22.7816877Z -- Generating done (0.4s) 2025-06-05T23:23:22.7817150Z CMake Warning: 2025-06-05T23:23:22.7817473Z Manually-specified variables were not used by the project: 2025-06-05T23:23:22.7817765Z 2025-06-05T23:23:22.7817863Z NEURON_BUFFER_ALLOCATOR_LIB 2025-06-05T23:23:22.7818130Z QNN_SDK_ROOT 2025-06-05T23:23:23.8091194Z SUPPORT_REGEX_LOOKAHEAD 2025-06-05T23:23:23.8091597Z 2025-06-05T23:23:23.8091979Z  2025-06-05T23:23:23.8092588Z -- Build files have been written to: /pytorch/executorch/cmake-out-android-arm64-v8a 2025-06-05T23:23:23.8093359Z ++ uname 2025-06-05T23:23:23.8093659Z + '[' Linux == Darwin ']' 2025-06-05T23:23:23.8094056Z ++ nproc 2025-06-05T23:23:23.8094388Z + CMAKE_JOBS=7 2025-06-05T23:23:23.8095079Z + cmake --build cmake-out-android-arm64-v8a -j 7 --target install --config Release 2025-06-05T23:23:23.8096269Z [ 0%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:23:23.8097834Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:23:23.8099281Z [ 0%] Creating directories for 'flatcc_external_project' 2025-06-05T23:23:23.8100673Z [ 0%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.o 2025-06-05T23:23:23.8101992Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:23:23.8102939Z [ 0%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-06-05T23:23:23.8103952Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-06-05T23:23:23.8104709Z [ 0%] No download step for 'flatbuffers_external_project' 2025-06-05T23:23:23.8105227Z [ 0%] No download step for 'flatcc_external_project' 2025-06-05T23:23:23.8105865Z [ 0%] No update step for 'flatbuffers_external_project' 2025-06-05T23:23:23.8106678Z [ 0%] No update step for 'flatcc_external_project' 2025-06-05T23:23:23.8118356Z [ 1%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:23:23.8119181Z [ 1%] No patch step for 'flatcc_external_project' 2025-06-05T23:23:23.8119979Z [ 1%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:23:23.8120612Z [ 1%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:23:23.8121044Z CMake Warning: 2025-06-05T23:23:23.8121463Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:23:23.8121926Z 2025-06-05T23:23:23.8122099Z  2025-06-05T23:23:23.8122484Z CMake Warning: 2025-06-05T23:23:23.8122996Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:23:23.8123502Z 2025-06-05T23:23:23.8123668Z  2025-06-05T23:23:23.8124401Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:23:23.8125451Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:23:23.8126222Z CMake. 2025-06-05T23:23:23.8126423Z 2025-06-05T23:23:23.8126813Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:23:23.8127858Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:23:23.8128729Z to work with policies introduced by or earlier. 2025-06-05T23:23:23.8129200Z 2025-06-05T23:23:23.8129393Z  2025-06-05T23:23:23.8129786Z fatal: No names found, cannot describe anything. 2025-06-05T23:23:23.8130560Z CMake Warning at CMake/Version.cmake:32 (message): 2025-06-05T23:23:23.8131413Z git describe failed with exit code: 128 2025-06-05T23:23:23.8131803Z 2025-06-05T23:23:23.8132079Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-06-05T23:23:23.8132753Z Call Stack (most recent call first): 2025-06-05T23:23:23.8133271Z CMakeLists.txt:5 (include) 2025-06-05T23:23:23.8133594Z 2025-06-05T23:23:23.8133778Z  2025-06-05T23:23:23.8134123Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:23:23.8135424Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:23:23.8137262Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-06-05T23:23:23.8138337Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:23:23.8138959Z -- Detecting C compiler ABI info 2025-06-05T23:23:23.8140105Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:23:23.8141889Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:23:23.8143650Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:23:23.8144752Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:23:23.8146095Z [ 3%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.o 2025-06-05T23:23:23.8147174Z -- Detecting CXX compiler ABI info 2025-06-05T23:23:23.8148423Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-06-05T23:23:23.8150136Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:23:23.8151492Z [ 3%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:23:23.8152504Z -- Detecting C compiler ABI info - done 2025-06-05T23:23:23.8152996Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:23:23.8153388Z -- Detecting C compile features 2025-06-05T23:23:23.8153678Z -- Detecting C compile features - done 2025-06-05T23:23:23.8154139Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:23:23.8154577Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:23:23.8154969Z -- Setting Clang compiler options 2025-06-05T23:23:23.8155650Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:23:23.8156509Z -- Configuring done (0.3s) 2025-06-05T23:23:23.8157210Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-06-05T23:23:23.8157810Z -- Generating done (0.0s) 2025-06-05T23:23:23.8158562Z -- Build files have been written to: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/src/flatcc_external_project-build 2025-06-05T23:23:23.8159504Z [ 3%] Performing build step for 'flatcc_external_project' 2025-06-05T23:23:23.8160030Z [ 3%] Linking C static library libpthreadpool.a 2025-06-05T23:23:23.8160606Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:23:23.8161425Z [ 3%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-06-05T23:23:23.8162153Z [ 3%] Built target pthreadpool 2025-06-05T23:23:23.8162861Z [ 3%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-06-05T23:23:23.8163520Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:23:23.8164202Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o 2025-06-05T23:23:23.8165550Z [ 3%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.o 2025-06-05T23:23:23.8166730Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o 2025-06-05T23:23:23.8167514Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:23:23.8167973Z -- Detecting CXX compile features 2025-06-05T23:23:23.8168389Z -- Detecting CXX compile features - done 2025-06-05T23:23:23.8168933Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:23:23.8169430Z -- Looking for strtof_l 2025-06-05T23:23:23.8170202Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/cache.c.o 2025-06-05T23:23:23.8171082Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:23:23.8172309Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o 2025-06-05T23:23:23.8173344Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/linux/init.c.o 2025-06-05T23:23:23.8174557Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/linux/init.c.o 2025-06-05T23:23:23.8176071Z [ 12%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:23:23.8177030Z [ 3%] Linking CXX static library libgflags_nothreads.a 2025-06-05T23:23:23.8178269Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/linux/cpuinfo.c.o 2025-06-05T23:23:23.8179201Z -- Looking for strtof_l - found 2025-06-05T23:23:23.8179588Z -- Looking for strtoull_l 2025-06-05T23:23:23.8179987Z [ 3%] Built target gflags_nothreads_static 2025-06-05T23:23:23.8181040Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/linux/clusters.c.o 2025-06-05T23:23:23.8182370Z [ 15%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:23:23.8183727Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/linux/cpuinfo.c.o 2025-06-05T23:23:23.8185112Z [ 18%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:23:23.8186521Z [ 3%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-06-05T23:23:23.8188023Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/linux/chipset.c.o 2025-06-05T23:23:23.8190013Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/linux/clusters.c.o 2025-06-05T23:23:23.8191745Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/linux/chipset.c.o 2025-06-05T23:23:23.8193240Z [ 21%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:23:23.8194861Z [ 4%] Building C object extension/llm/custom_ops/spinquant/third-party/FFHT/CMakeFiles/dumb_fht.dir/dumb_fht.c.o 2025-06-05T23:23:23.8196412Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/linux/midr.c.o 2025-06-05T23:23:23.8197273Z [ 21%] Built target flatccrt 2025-06-05T23:23:23.8198126Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:23:23.8199584Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/linux/midr.c.o 2025-06-05T23:23:23.8201106Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:23:23.8201997Z [ 4%] Linking C static library libdumb_fht.a 2025-06-05T23:23:24.8225794Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/linux/hwcap.c.o 2025-06-05T23:23:24.8226485Z [ 4%] Built target dumb_fht 2025-06-05T23:23:24.8227070Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:23:24.8227615Z -- Looking for strtoull_l - found 2025-06-05T23:23:24.8227895Z -- Looking for realpath 2025-06-05T23:23:24.8228619Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/linux/hwcap.c.o 2025-06-05T23:23:24.8229773Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/linux/aarch64-isa.c.o 2025-06-05T23:23:24.8230962Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/android/properties.c.o 2025-06-05T23:23:24.8232086Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/linux/aarch64-isa.c.o 2025-06-05T23:23:24.8233011Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:23:24.8233971Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/android/properties.c.o 2025-06-05T23:23:24.8235027Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:23:24.8236078Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o 2025-06-05T23:23:24.8237132Z [ 5%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-06-05T23:23:24.8238102Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-06-05T23:23:24.8239092Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:23:24.8239986Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:23:24.8240492Z -- Looking for realpath - found 2025-06-05T23:23:24.8240829Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:23:24.8241176Z -- Configuring done (1.1s) 2025-06-05T23:23:24.8241448Z -- Generating done (0.0s) 2025-06-05T23:23:24.8242567Z -- Build files have been written to: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/src/flatbuffers_external_project-build 2025-06-05T23:23:24.8243979Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:23:24.8244876Z [ 5%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:23:24.8245756Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o 2025-06-05T23:23:24.8246627Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:23:24.8247253Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:23:24.8248077Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-06-05T23:23:24.8249281Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:23:24.8250478Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:23:24.8251474Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:23:24.8252419Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o 2025-06-05T23:23:24.8253637Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-06-05T23:23:24.8254658Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:23:24.8255279Z [ 6%] Linking C static library libcpuinfo.a 2025-06-05T23:23:24.8255799Z [ 6%] Built target cpuinfo 2025-06-05T23:23:24.8256851Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o 2025-06-05T23:23:24.8258058Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-06-05T23:23:24.8259227Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-06-05T23:23:24.8260200Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:23:24.8261172Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:23:24.8262520Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-06-05T23:23:24.8263954Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:23:24.8265217Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:23:24.8266191Z [ 6%] Linking C static library libcpuinfo_internals.a 2025-06-05T23:23:24.8266776Z [ 6%] Built target cpuinfo_internals 2025-06-05T23:23:24.8267721Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-06-05T23:23:24.8269096Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-06-05T23:23:24.8269967Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:23:24.8270580Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:23:24.8271226Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:23:24.8271853Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:23:24.8272991Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-06-05T23:23:24.8274059Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:23:24.8274756Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:23:24.8275690Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-06-05T23:23:24.8276827Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-06-05T23:23:24.8277790Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-06-05T23:23:24.8278757Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-06-05T23:23:24.8279712Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-06-05T23:23:24.8280544Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:23:24.8281680Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-neonfp16arith-c8.c.o 2025-06-05T23:23:24.8283262Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-conv-hwc2chw/f16-conv-hwc2chw-3x3s2p1c3x4-neonfp16arith-2x2.c.o 2025-06-05T23:23:24.8284871Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith-acc2.c.o 2025-06-05T23:23:24.8286085Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:23:24.8286793Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:23:24.8287604Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-06-05T23:23:24.8288597Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-06-05T23:23:24.8289612Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-06-05T23:23:24.8290455Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:23:24.8291162Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:23:24.8291843Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:23:24.8293060Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith.c.o 2025-06-05T23:23:24.8294732Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-06-05T23:23:24.8296003Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith.c.o 2025-06-05T23:23:24.8297300Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-06-05T23:23:24.8298231Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:23:24.8299184Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-06-05T23:23:24.8300250Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-06-05T23:23:24.8301068Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:23:25.2971846Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith.c.o 2025-06-05T23:23:25.2974032Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:23:25.2975463Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:23:25.2977175Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-06-05T23:23:25.2978895Z [ 7%] Linking CXX static library libeigen_blas.a 2025-06-05T23:23:25.2980788Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith.c.o 2025-06-05T23:23:25.2983162Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-06-05T23:23:25.2984977Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-06-05T23:23:25.2986136Z [ 8%] Built target eigen_blas 2025-06-05T23:23:25.2987924Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-2x8.c.o 2025-06-05T23:23:25.2990077Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:23:25.2991419Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:23:25.2992858Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-06-05T23:23:25.2994210Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:23:25.2995607Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:23:25.2997112Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-06-05T23:23:25.2999052Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-06-05T23:23:25.3000723Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:23:25.3002995Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8.c.o 2025-06-05T23:23:25.3004633Z [ 10%] Built target logging 2025-06-05T23:23:25.3005854Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-06-05T23:23:25.3006962Z [ 93%] Built target flatcc 2025-06-05T23:23:25.3007421Z [ 10%] Built target indirection 2025-06-05T23:23:25.3007956Z [ 10%] Built target microparams-init 2025-06-05T23:23:25.3008848Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:23:25.3011009Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8.c.o 2025-06-05T23:23:25.3014047Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8.c.o 2025-06-05T23:23:25.3016831Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u16.c.o 2025-06-05T23:23:25.3018639Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:23:25.3019852Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:23:25.3020669Z [ 10%] Built target normalization 2025-06-05T23:23:25.3021494Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:23:25.3023344Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u16.c.o 2025-06-05T23:23:25.3025837Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-06-05T23:23:25.3027522Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:23:25.3028446Z [100%] Built target flatcc_cli 2025-06-05T23:23:25.3029189Z [ 10%] Performing install step for 'flatcc_external_project' 2025-06-05T23:23:25.3030949Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-06-05T23:23:25.3032313Z [ 21%] Built target flatccrt 2025-06-05T23:23:25.3032746Z [ 93%] Built target flatcc 2025-06-05T23:23:25.3033167Z [100%] Built target flatcc_cli 2025-06-05T23:23:25.3034921Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-minmax-neonfp16arith-c16.c.o 2025-06-05T23:23:25.3036637Z Install the project... 2025-06-05T23:23:25.3037105Z -- Install configuration: "" 2025-06-05T23:23:25.3038956Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc4.c.o 2025-06-05T23:23:25.3041332Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:23:25.3043196Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc.h 2025-06-05T23:23:25.3045454Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_accessors.h 2025-06-05T23:23:25.3047562Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_alloc.h 2025-06-05T23:23:25.3049704Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_assert.h 2025-06-05T23:23:25.3051805Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_builder.h 2025-06-05T23:23:25.3053893Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_emitter.h 2025-06-05T23:23:25.3055916Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_endian.h 2025-06-05T23:23:25.3057919Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_epilogue.h 2025-06-05T23:23:25.3059990Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_flatbuffers.h 2025-06-05T23:23:25.3062123Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_identifier.h 2025-06-05T23:23:25.3064253Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_iov.h 2025-06-05T23:23:25.3068083Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_json_parser.h 2025-06-05T23:23:25.3070328Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_json_printer.h 2025-06-05T23:23:25.3072519Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_portable.h 2025-06-05T23:23:25.3074684Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_prologue.h 2025-06-05T23:23:25.3076833Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_refmap.h 2025-06-05T23:23:25.3078842Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_rtconfig.h 2025-06-05T23:23:25.3080961Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_types.h 2025-06-05T23:23:25.3083343Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_unaligned.h 2025-06-05T23:23:25.3085541Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_verifier.h 2025-06-05T23:23:25.3087708Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/flatcc_version.h 2025-06-05T23:23:25.3089795Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable 2025-06-05T23:23:25.3091898Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/LICENSE 2025-06-05T23:23:25.3094063Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/README.md 2025-06-05T23:23:25.3096290Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/grisu3_math.h 2025-06-05T23:23:25.3098421Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/grisu3_parse.h 2025-06-05T23:23:25.3100769Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/grisu3_print.h 2025-06-05T23:23:25.4568996Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/include 2025-06-05T23:23:25.4570193Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/include/README 2025-06-05T23:23:25.4571330Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/include/linux 2025-06-05T23:23:25.4572512Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/include/linux/endian.h 2025-06-05T23:23:25.4573691Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/include/std 2025-06-05T23:23:25.4574867Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/include/std/inttypes.h 2025-06-05T23:23:25.4576079Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdalign.h 2025-06-05T23:23:25.4577273Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdbool.h 2025-06-05T23:23:25.4578477Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdint.h 2025-06-05T23:23:25.4579657Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/paligned_alloc.h 2025-06-05T23:23:25.4580799Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pattributes.h 2025-06-05T23:23:25.4581925Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pbase64.h 2025-06-05T23:23:25.4583012Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pcrt.h 2025-06-05T23:23:25.4584124Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic.h 2025-06-05T23:23:25.4585283Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_pop.h 2025-06-05T23:23:25.4586539Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_push.h 2025-06-05T23:23:25.4588377Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pendian.h 2025-06-05T23:23:25.4589518Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pendian_detect.h 2025-06-05T23:23:25.4590640Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pinline.h 2025-06-05T23:23:25.4591783Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pinttypes.h 2025-06-05T23:23:25.4592909Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pmemaccess.h 2025-06-05T23:23:25.4594018Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/portable.h 2025-06-05T23:23:25.4595163Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/portable_basic.h 2025-06-05T23:23:25.4596287Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pparsefp.h 2025-06-05T23:23:25.4598028Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pparseint.h 2025-06-05T23:23:25.4599305Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pprintfp.h 2025-06-05T23:23:25.4601137Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pprintint.h 2025-06-05T23:23:25.4602660Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/prestrict.h 2025-06-05T23:23:25.4603830Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert.h 2025-06-05T23:23:25.4605153Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert_scope.h 2025-06-05T23:23:25.4606478Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pstdalign.h 2025-06-05T23:23:25.4607582Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pstdbool.h 2025-06-05T23:23:25.4608684Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pstdint.h 2025-06-05T23:23:25.4609796Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/punaligned.h 2025-06-05T23:23:25.4610895Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pversion.h 2025-06-05T23:23:25.4612010Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/portable/pwarnings.h 2025-06-05T23:23:25.4613088Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/reflection 2025-06-05T23:23:25.4614137Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/reflection/README 2025-06-05T23:23:25.4615333Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_builder.h 2025-06-05T23:23:25.4616615Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_reader.h 2025-06-05T23:23:25.4617868Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/reflection/reflection_builder.h 2025-06-05T23:23:25.4619228Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/reflection/reflection_reader.h 2025-06-05T23:23:25.4620439Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/reflection/reflection_verifier.h 2025-06-05T23:23:25.4621559Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/support 2025-06-05T23:23:25.4622605Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/support/README 2025-06-05T23:23:25.4623667Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/support/cdump.h 2025-06-05T23:23:25.4624751Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/support/elapsed.h 2025-06-05T23:23:25.4625948Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/support/hexdump.h 2025-06-05T23:23:25.4627133Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/include/flatcc/support/readfile.h 2025-06-05T23:23:25.4628201Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/lib/libflatccrt.a 2025-06-05T23:23:25.4629144Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/lib/libflatcc.a 2025-06-05T23:23:25.4630071Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:23:25.4630953Z [ 10%] Completed 'flatcc_external_project' 2025-06-05T23:23:25.4631328Z [ 10%] Built target flatcc_external_project 2025-06-05T23:23:25.4632100Z [ 10%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-06-05T23:23:25.4633125Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-06-05T23:23:25.4634065Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-06-05T23:23:25.4634982Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-06-05T23:23:25.4635917Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-06-05T23:23:25.4636706Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:23:25.4637918Z [ 10%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-06-05T23:23:25.4638844Z [ 10%] Built target allocator 2025-06-05T23:23:25.4639787Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-06-05T23:23:26.3240117Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-06-05T23:23:26.3241530Z [ 10%] Built target datatype 2025-06-05T23:23:26.3243409Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-06-05T23:23:26.3245060Z [ 10%] Built target memory 2025-06-05T23:23:26.3246227Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-06-05T23:23:26.3247338Z [ 10%] Built target microkernel-utils 2025-06-05T23:23:26.3248333Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:23:26.3249433Z [ 10%] Built target cache 2025-06-05T23:23:26.3249894Z [ 10%] Built target packing 2025-06-05T23:23:26.3250806Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:23:26.3252772Z [ 10%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-06-05T23:23:26.3255796Z [ 10%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-06-05T23:23:26.3257592Z [ 10%] Built target mutex 2025-06-05T23:23:26.3259660Z [ 10%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2025-06-05T23:23:26.3263181Z [ 10%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S.o 2025-06-05T23:23:26.3266398Z [ 10%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-06-05T23:23:26.3269554Z [ 11%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2025-06-05T23:23:26.3271840Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:23:26.3274173Z [ 11%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-06-05T23:23:26.3277295Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-06-05T23:23:26.3279376Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:23:26.3281164Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-06-05T23:23:26.3284189Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p8.c.o 2025-06-05T23:23:26.3287192Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c8.c.o 2025-06-05T23:23:26.3288858Z [ 11%] Built target reference-ukernels 2025-06-05T23:23:26.3290324Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-06-05T23:23:26.3292414Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-06-05T23:23:26.3294108Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:23:26.3295264Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:23:26.3297195Z [ 11%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-06-05T23:23:26.3300131Z [ 11%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-06-05T23:23:26.3302190Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:23:26.3303650Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:23:26.3304590Z [ 11%] Built target operator-utils 2025-06-05T23:23:26.3305794Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:23:26.3308305Z [ 11%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2025-06-05T23:23:26.3309881Z [ 11%] Built target operator-run 2025-06-05T23:23:26.3311887Z [ 11%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S.o 2025-06-05T23:23:26.3314269Z [ 11%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:23:26.3316168Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-06-05T23:23:26.3317690Z [ 11%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2025-06-05T23:23:26.3320308Z [ 11%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-06-05T23:23:26.3322052Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:23:26.3323501Z [ 12%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:23:26.3325151Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-06-05T23:23:26.3327812Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-06-05T23:23:26.3330627Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-06-05T23:23:26.3332112Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-06-05T23:23:26.3332956Z [ 12%] Built target hardware-config 2025-06-05T23:23:26.3333927Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-06-05T23:23:26.3335354Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-06-05T23:23:26.3336778Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-06-05T23:23:26.3337952Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-06-05T23:23:26.3339102Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-06-05T23:23:26.3340465Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-06-05T23:23:26.3341618Z [ 12%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:23:26.3342632Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-06-05T23:23:26.3343314Z [ 12%] Built target flatccrt 2025-06-05T23:23:26.3344071Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-06-05T23:23:26.3345048Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:23:26.3345921Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:23:26.3346929Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-06-05T23:23:26.3348498Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-06-05T23:23:26.3350529Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-06-05T23:23:26.3352452Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-06-05T23:23:26.3354292Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-06-05T23:23:26.3356372Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-06-05T23:23:26.3358056Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:23:26.3359021Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:23:27.4386963Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:23:27.4387997Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-06-05T23:23:27.4390235Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-06-05T23:23:27.4392537Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-06-05T23:23:27.4394265Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:23:27.4395615Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:23:27.4397033Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-06-05T23:23:27.4398390Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-06-05T23:23:27.4399252Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:23:27.4399908Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:23:27.4400547Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:23:27.4401701Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-06-05T23:23:27.4403151Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-06-05T23:23:27.4404206Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:23:27.4404974Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:23:27.4405887Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-06-05T23:23:27.4407222Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-neonfp16arith-c8.c.o 2025-06-05T23:23:27.4408349Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:23:27.4409500Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u32.c.o 2025-06-05T23:23:27.4410606Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:23:27.4411741Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:23:27.4413199Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-06-05T23:23:27.4414131Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:23:27.4414899Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:23:27.4415857Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-06-05T23:23:27.4417414Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32.c.o 2025-06-05T23:23:27.4419401Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-06-05T23:23:27.4421391Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-06-05T23:23:27.4423844Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc4.c.o 2025-06-05T23:23:27.4426101Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-06-05T23:23:27.4428276Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc4.c.o 2025-06-05T23:23:27.4430826Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-06-05T23:23:27.4433452Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-pipelined.c.o 2025-06-05T23:23:27.4435052Z [100%] Linking CXX executable flatc 2025-06-05T23:23:27.4436519Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u16.c.o 2025-06-05T23:23:27.4437654Z [ 14%] Built target operators 2025-06-05T23:23:27.4438912Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u16.c.o 2025-06-05T23:23:27.4440685Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-06-05T23:23:27.4442176Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-06-05T23:23:27.4443931Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u8.c.o 2025-06-05T23:23:27.4445671Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-06-05T23:23:27.4447152Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-06-05T23:23:27.4448852Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-06-05T23:23:27.4450677Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u2.c.o 2025-06-05T23:23:27.4452598Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-06-05T23:23:27.4454253Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-06-05T23:23:27.4456392Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u8.c.o 2025-06-05T23:23:27.4458493Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-06-05T23:23:27.4460346Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-06-05T23:23:27.4461458Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-06-05T23:23:27.4462652Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-06-05T23:23:27.4463750Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-06-05T23:23:27.4466136Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u2.c.o 2025-06-05T23:23:27.4467814Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u16.c.o 2025-06-05T23:23:27.4469234Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-06-05T23:23:27.4470586Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-06-05T23:23:27.4471751Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-06-05T23:23:27.4472959Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-06-05T23:23:27.4474127Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-06-05T23:23:27.4475246Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-06-05T23:23:27.4476529Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u16.c.o 2025-06-05T23:23:27.4477945Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u16.c.o 2025-06-05T23:23:27.4479335Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u16.c.o 2025-06-05T23:23:27.4480553Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-06-05T23:23:28.0002525Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0005418Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0008238Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0010715Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-06-05T23:23:28.0013250Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0015701Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-06-05T23:23:28.0018424Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u8.c.o 2025-06-05T23:23:28.0020082Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-06-05T23:23:28.0021191Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-06-05T23:23:28.0022365Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-06-05T23:23:28.0023648Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u2.c.o 2025-06-05T23:23:28.0024862Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-06-05T23:23:28.0026130Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-06-05T23:23:28.0027720Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-06-05T23:23:28.0030000Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-06-05T23:23:28.0032013Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-06-05T23:23:28.0033871Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-06-05T23:23:28.0036126Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0038351Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-06-05T23:23:28.0040152Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0041606Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0042792Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-06-05T23:23:28.0043998Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0045428Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0046826Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0048252Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0049057Z [ 18%] Built target subgraph 2025-06-05T23:23:28.0049941Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0050728Z [100%] Built target flatc 2025-06-05T23:23:28.0051618Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u16.c.o 2025-06-05T23:23:28.0052674Z [ 18%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:23:28.0053750Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0055485Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-neonfp16arith-2x.c.o 2025-06-05T23:23:28.0057285Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0059521Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u16.c.o 2025-06-05T23:23:28.0060571Z [100%] Built target flatc 2025-06-05T23:23:28.0061077Z Install the project... 2025-06-05T23:23:28.0061403Z -- Install configuration: "" 2025-06-05T23:23:28.0062234Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:23:28.0063527Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/allocator.h 2025-06-05T23:23:28.0064727Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/array.h 2025-06-05T23:23:28.0066514Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/base.h 2025-06-05T23:23:28.0067758Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/buffer.h 2025-06-05T23:23:28.0069197Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/buffer_ref.h 2025-06-05T23:23:28.0070750Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/code_generator.h 2025-06-05T23:23:28.0072053Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/code_generators.h 2025-06-05T23:23:28.0073718Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/default_allocator.h 2025-06-05T23:23:28.0074966Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/detached_buffer.h 2025-06-05T23:23:28.0076153Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/file_manager.h 2025-06-05T23:23:28.0077342Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffer_builder.h 2025-06-05T23:23:28.0079197Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffers.h 2025-06-05T23:23:28.0081297Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/flatc.h 2025-06-05T23:23:28.0083580Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/flex_flat_util.h 2025-06-05T23:23:28.0085701Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/flexbuffers.h 2025-06-05T23:23:28.0087734Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/grpc.h 2025-06-05T23:23:28.0089903Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/hash.h 2025-06-05T23:23:28.0091956Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/idl.h 2025-06-05T23:23:28.0093930Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/minireflect.h 2025-06-05T23:23:28.0095956Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/pch 2025-06-05T23:23:28.0098164Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/pch/flatc_pch.h 2025-06-05T23:23:28.0100550Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/pch/pch.h 2025-06-05T23:23:28.0102568Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/reflection.h 2025-06-05T23:23:28.6925553Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/reflection_generated.h 2025-06-05T23:23:28.6927979Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/registry.h 2025-06-05T23:23:28.6930273Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/stl_emulation.h 2025-06-05T23:23:28.6932516Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/string.h 2025-06-05T23:23:28.6934964Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/struct.h 2025-06-05T23:23:28.6937093Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/table.h 2025-06-05T23:23:28.6939253Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/util.h 2025-06-05T23:23:28.6941437Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/vector.h 2025-06-05T23:23:28.6943708Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/vector_downward.h 2025-06-05T23:23:28.6946073Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/include/flatbuffers/verifier.h 2025-06-05T23:23:28.6948477Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config.cmake 2025-06-05T23:23:28.6950980Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/BuildFlatBuffers.cmake 2025-06-05T23:23:28.6953555Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config-version.cmake 2025-06-05T23:23:28.6955796Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:23:28.6958419Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u16.c.o 2025-06-05T23:23:28.6960875Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets.cmake 2025-06-05T23:23:28.6963297Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake 2025-06-05T23:23:28.6966070Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u16.c.o 2025-06-05T23:23:28.6967829Z [ 18%] Completed 'flatbuffers_external_project' 2025-06-05T23:23:28.6969585Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u16.c.o 2025-06-05T23:23:28.6971048Z [ 19%] Built target flatbuffers_external_project 2025-06-05T23:23:28.6971770Z [ 19%] Generating common_schema headers 2025-06-05T23:23:28.6973888Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u16.c.o 2025-06-05T23:23:28.6975470Z [ 19%] Built target common_schema 2025-06-05T23:23:28.6977371Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u40.c.o 2025-06-05T23:23:28.6979179Z [ 20%] Generating xnnpack_schema headers 2025-06-05T23:23:28.6979944Z [ 20%] Generating scalar_type_schema headers 2025-06-05T23:23:28.6980591Z [ 20%] Built target xnnpack_schema 2025-06-05T23:23:28.6982557Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u16.c.o 2025-06-05T23:23:28.6984334Z [ 20%] Built target scalar_type_schema 2025-06-05T23:23:28.6985062Z [ 20%] Generating program_schema headers 2025-06-05T23:23:28.6987105Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u8.c.o 2025-06-05T23:23:28.6988754Z [ 20%] Built target program_schema 2025-06-05T23:23:28.6990825Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u8.c.o 2025-06-05T23:23:28.6992673Z [ 20%] Generating flat_tensor_schema headers 2025-06-05T23:23:28.6993319Z [ 20%] Built target flat_tensor_schema 2025-06-05T23:23:28.6995490Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u32.c.o 2025-06-05T23:23:28.6999009Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u32.c.o 2025-06-05T23:23:28.7002047Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u16.c.o 2025-06-05T23:23:28.7004776Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u16.c.o 2025-06-05T23:23:28.7006912Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:23:28.7008293Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:23:28.7010356Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u16.c.o 2025-06-05T23:23:28.7012658Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:23:28.7014904Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-neon-c4.c.o 2025-06-05T23:23:28.7017649Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2025-06-05T23:23:28.7020021Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:23:28.7021839Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:23:28.7023414Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:23:28.7025588Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-neon-c4.c.o 2025-06-05T23:23:28.7028383Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-06-05T23:23:28.7031332Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-neon-c4.c.o 2025-06-05T23:23:28.7034088Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-06-05T23:23:28.7036228Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:23:28.7038458Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-neon-c4.c.o 2025-06-05T23:23:28.7041036Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:23:28.7043647Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-neon-c4.c.o 2025-06-05T23:23:28.7045719Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:23:28.7048112Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:23:28.7051123Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2025-06-05T23:23:28.7054047Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-neon-2x2.c.o 2025-06-05T23:23:28.7056312Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:23:28.7058627Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-06-05T23:23:28.7060890Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:23:29.9279379Z [ 22%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-06-05T23:23:29.9281169Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-06-05T23:23:29.9283169Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:23:29.9284809Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:23:29.9287148Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-06-05T23:23:29.9289802Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon-acc2.c.o 2025-06-05T23:23:29.9292013Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:23:29.9294333Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma-acc2.c.o 2025-06-05T23:23:29.9296483Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:23:29.9298772Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-06-05T23:23:29.9301602Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-06-05T23:23:29.9304002Z [ 23%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:23:29.9305530Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:23:29.9307097Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:23:29.9308845Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-06-05T23:23:29.9310904Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon.c.o 2025-06-05T23:23:29.9312440Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:23:29.9313806Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma.c.o 2025-06-05T23:23:29.9314919Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:23:29.9315898Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:23:29.9316748Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/android.cpp.o 2025-06-05T23:23:29.9318096Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-06-05T23:23:29.9319560Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-06-05T23:23:29.9320967Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon.c.o 2025-06-05T23:23:29.9322383Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma.c.o 2025-06-05T23:23:29.9323912Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma-acc2.c.o 2025-06-05T23:23:29.9325482Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon-acc2.c.o 2025-06-05T23:23:29.9326984Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-06-05T23:23:29.9328425Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-06-05T23:23:29.9329833Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon.c.o 2025-06-05T23:23:29.9330753Z [ 24%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:23:29.9331781Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma.c.o 2025-06-05T23:23:29.9332581Z [ 25%] Built target executorch_core 2025-06-05T23:23:29.9333661Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-3x4.c.o 2025-06-05T23:23:29.9335311Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-2x4.c.o 2025-06-05T23:23:29.9337188Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:23:29.9339633Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o 2025-06-05T23:23:29.9341007Z [ 25%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:23:29.9341797Z [ 25%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:23:29.9343122Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-06-05T23:23:29.9344529Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:23:29.9345693Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:23:29.9346765Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:23:29.9348208Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4.c.o 2025-06-05T23:23:29.9349522Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:23:29.9350911Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o 2025-06-05T23:23:29.9352142Z [ 25%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:23:29.9353066Z [ 25%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:23:29.9354051Z [ 25%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:23:29.9355420Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:23:29.9356730Z [ 25%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:23:29.9357851Z [ 25%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-06-05T23:23:29.9358964Z [ 25%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-06-05T23:23:29.9360125Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:23:29.9361655Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-4x4.c.o 2025-06-05T23:23:29.9363403Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4.c.o 2025-06-05T23:23:29.9364502Z [ 25%] Linking CXX static library libextension_data_loader.a 2025-06-05T23:23:29.9364930Z [ 25%] Built target extension_data_loader 2025-06-05T23:23:29.9366685Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:23:31.4941206Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:23:31.4944245Z [ 25%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:23:31.4945752Z [ 25%] Linking CXX static library libexecutorch.a 2025-06-05T23:23:31.4946409Z [ 25%] Built target executorch 2025-06-05T23:23:31.4947793Z [ 25%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/flat_tensor_data_map.cpp.o 2025-06-05T23:23:31.4949846Z [ 25%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/serialize/flat_tensor_header.cpp.o 2025-06-05T23:23:31.4951757Z [ 25%] Building CXX object extension/runner_util/CMakeFiles/extension_runner_util.dir/inputs.cpp.o 2025-06-05T23:23:31.4953418Z [ 25%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-06-05T23:23:31.4956027Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-06-05T23:23:31.4958758Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:23:31.4960720Z [ 26%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:23:31.4963563Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4.c.o 2025-06-05T23:23:31.4965779Z [ 26%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:23:31.4967286Z [ 26%] Building CXX object extension/runner_util/CMakeFiles/extension_runner_util.dir/inputs_portable.cpp.o 2025-06-05T23:23:31.4968452Z [ 26%] Built target extension_threadpool 2025-06-05T23:23:31.4970478Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:23:31.4973790Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:23:31.4975927Z [ 27%] Linking CXX static library libextension_flat_tensor.a 2025-06-05T23:23:31.4977406Z [ 27%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-06-05T23:23:31.4978462Z [ 27%] Built target extension_flat_tensor 2025-06-05T23:23:31.4979770Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:23:31.4981643Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:23:31.4983458Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-06-05T23:23:31.4984619Z [ 28%] Generating etdump headers 2025-06-05T23:23:31.4986514Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u8.c.o 2025-06-05T23:23:31.4988534Z [ 28%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/etdump_flatcc.cpp.o 2025-06-05T23:23:31.4990757Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u16.c.o 2025-06-05T23:23:31.4992591Z [ 28%] Linking CXX static library libextension_runner_util.a 2025-06-05T23:23:31.4993351Z [ 28%] Built target extension_runner_util 2025-06-05T23:23:31.4994119Z [ 28%] Generating bundled_program headers 2025-06-05T23:23:31.4995609Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:23:31.4997477Z [ 28%] Building CXX object devtools/bundled_program/CMakeFiles/bundled_program.dir/bundled_program.cpp.o 2025-06-05T23:23:31.5000167Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-06-05T23:23:31.5002360Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:23:31.5003649Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-06-05T23:23:31.5005803Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-06-05T23:23:31.5007657Z [ 28%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/emitter.cpp.o 2025-06-05T23:23:31.5008798Z [ 28%] Linking CXX static library libextension_tensor.a 2025-06-05T23:23:31.5009481Z [ 28%] Built target extension_tensor 2025-06-05T23:23:31.5010773Z [ 29%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/buffer_data_sink.cpp.o 2025-06-05T23:23:31.5012999Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:23:31.5015615Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:23:31.5017090Z [ 29%] Linking CXX static library libbundled_program.a 2025-06-05T23:23:31.5017817Z [ 29%] Built target bundled_program 2025-06-05T23:23:31.5018879Z [ 29%] Building CXX object extension/module/CMakeFiles/extension_module.dir/module.cpp.o 2025-06-05T23:23:31.5020530Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:23:31.5022827Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-06-05T23:23:31.5025001Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:23:31.5026440Z [ 29%] Linking CXX static library libcpublas.a 2025-06-05T23:23:31.5027066Z [ 29%] Built target cpublas 2025-06-05T23:23:31.5028712Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-06-05T23:23:31.5031441Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-06-05T23:23:31.5034031Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:23:31.5035846Z [ 29%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/file_data_sink.cpp.o 2025-06-05T23:23:31.5037059Z [ 30%] Linking CXX static library libextension_module.a 2025-06-05T23:23:31.5037782Z [ 30%] Built target extension_module 2025-06-05T23:23:31.5039118Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:23:31.5041075Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:23:31.5043775Z [ 30%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-06-05T23:23:31.5046345Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:23:31.5048219Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:23:31.5050791Z [ 30%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-06-05T23:23:31.5054168Z [ 30%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-06-05T23:23:31.5057379Z [ 30%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-06-05T23:23:31.5059881Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:23:31.5062485Z [ 30%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2025-06-05T23:23:31.5064442Z [ 30%] Linking CXX static library libetdump.a 2025-06-05T23:23:31.5065615Z [ 30%] Built target etdump 2025-06-05T23:23:31.5067295Z [ 31%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2025-06-05T23:23:31.5069826Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:23:31.5072033Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:23:31.5074457Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-06-05T23:23:31.5076820Z [ 31%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:23:33.0742821Z [ 31%] Building CXX object extension/module/CMakeFiles/extension_module_static.dir/module.cpp.o 2025-06-05T23:23:33.0745203Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neonfma.c.o 2025-06-05T23:23:33.0748042Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-06-05T23:23:33.0750748Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-06-05T23:23:33.0753008Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:23:33.0754877Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:23:33.0756764Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:23:33.0758727Z [ 31%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:23:33.0760739Z [ 31%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:23:33.0763010Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-06-05T23:23:33.0764749Z [ 31%] Linking CXX static library libextension_module_static.a 2025-06-05T23:23:33.0765669Z [ 31%] Built target extension_module_static 2025-06-05T23:23:33.0767393Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-06-05T23:23:33.0770609Z [ 31%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2025-06-05T23:23:33.0773703Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-neon-lane-ld64.c.o 2025-06-05T23:23:33.0776894Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-06-05T23:23:33.0779327Z [ 31%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:23:33.0781361Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:23:33.0783350Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:23:33.0785788Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-06-05T23:23:33.0788068Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:23:33.0790496Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:23:33.0793255Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-06-05T23:23:33.0796085Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-06-05T23:23:33.0798408Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:23:33.0801161Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-06-05T23:23:33.0804532Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-06-05T23:23:33.0806693Z [ 33%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:23:33.0808234Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:23:33.0809430Z [ 33%] Built target kernels_util_all_deps 2025-06-05T23:23:33.0810811Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:23:33.0812725Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:23:33.0815406Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-06-05T23:23:33.0818545Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:23:33.0820490Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:23:33.0823189Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-06-05T23:23:33.0826614Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-06-05T23:23:33.0829839Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-06-05T23:23:33.0832799Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld128.c.o 2025-06-05T23:23:33.0835639Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neonfma.c.o 2025-06-05T23:23:33.0838168Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:23:33.0840206Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:23:33.0842244Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:23:33.0844265Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:23:33.0846947Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-06-05T23:23:33.0849405Z [ 33%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:23:33.0851357Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:23:33.0854295Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-06-05T23:23:33.0857265Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-06-05T23:23:33.0859807Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:23:33.0862447Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-06-05T23:23:33.0866031Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2025-06-05T23:23:33.0868581Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:23:33.0871296Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-06-05T23:23:33.0874587Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-06-05T23:23:33.0877164Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:23:33.0879054Z [ 33%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:23:33.0881331Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neonfma.c.o 2025-06-05T23:23:33.0883667Z [ 34%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:23:33.0885518Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-06-05T23:23:35.1129201Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p8.c.o 2025-06-05T23:23:35.1131628Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:23:35.1133543Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:23:35.1135416Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:23:35.1137578Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:23:35.1139318Z [ 36%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:23:35.1141481Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p8.c.o 2025-06-05T23:23:35.1143792Z [ 36%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:23:35.1146261Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-06-05T23:23:35.1148952Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c8.c.o 2025-06-05T23:23:35.1151086Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:23:35.1153331Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c8.c.o 2025-06-05T23:23:35.1155603Z [ 36%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:23:35.1157392Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:23:35.1159168Z [ 36%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:23:35.1161598Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-06-05T23:23:35.1163874Z [ 36%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:23:35.1166598Z [ 36%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-06-05T23:23:35.1169720Z [ 36%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-06-05T23:23:35.1172067Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:23:35.1174464Z [ 37%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2025-06-05T23:23:35.1177252Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:23:35.1179397Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:23:35.1181935Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:23:35.1183810Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:23:35.1186107Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-06-05T23:23:35.1188338Z [ 37%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:23:35.1190613Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-06-05T23:23:35.1192901Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:23:35.1195554Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-06-05T23:23:35.1199129Z [ 38%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-06-05T23:23:35.1202480Z [ 38%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-06-05T23:23:35.1205834Z [ 38%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-06-05T23:23:35.1208245Z [ 38%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:23:35.1209943Z [ 38%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:23:35.1212461Z [ 38%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-06-05T23:23:35.1215033Z [ 38%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:23:35.1217777Z [ 38%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-06-05T23:23:35.1220226Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:23:35.1222558Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld64.c.o 2025-06-05T23:23:35.1225081Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:23:35.1227701Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neonfma.c.o 2025-06-05T23:23:35.1230401Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-06-05T23:23:35.1232606Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:23:35.1234442Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:23:35.1236253Z [ 38%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:23:35.1238499Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-06-05T23:23:35.1240698Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:23:35.1242938Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-06-05T23:23:35.1245111Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:23:35.1247591Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-06-05T23:23:35.1250010Z [ 38%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_quantize.cpp.o 2025-06-05T23:23:35.1252681Z [ 38%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-06-05T23:23:35.1255166Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:23:35.1257558Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-neon-lane-ld64.c.o 2025-06-05T23:23:35.1259948Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:23:35.1272477Z [ 38%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:23:35.1274509Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-06-05T23:23:35.1275951Z [ 38%] Linking CXX static library libquantized_kernels.a 2025-06-05T23:23:35.1277409Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-06-05T23:23:35.1278538Z [ 38%] Built target quantized_kernels 2025-06-05T23:23:37.5982981Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:23:37.5985085Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:23:37.5987582Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-06-05T23:23:37.5989750Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:23:37.5991536Z [ 39%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-06-05T23:23:37.5993692Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-06-05T23:23:37.5995783Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:23:37.5998420Z [ 39%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-06-05T23:23:37.6001633Z [ 39%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-06-05T23:23:37.6004753Z [ 39%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-06-05T23:23:37.6008117Z [ 39%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-06-05T23:23:37.6011236Z [ 39%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-06-05T23:23:37.6013935Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:23:37.6015620Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:23:37.6017798Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld128.c.o 2025-06-05T23:23:37.6020443Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neonfma.c.o 2025-06-05T23:23:37.6022664Z [ 39%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-06-05T23:23:37.6024308Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:23:37.6027073Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-06-05T23:23:37.6030172Z [ 39%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-06-05T23:23:37.6032667Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:23:37.6035105Z [ 39%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-06-05T23:23:37.6037700Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:23:37.6040268Z [ 39%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-06-05T23:23:37.6043469Z [ 40%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-06-05T23:23:37.6045813Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:23:37.6047974Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neonfma.c.o 2025-06-05T23:23:37.6050614Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-neon-c4.c.o 2025-06-05T23:23:37.6052764Z [ 40%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:23:37.6054927Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:23:37.6056979Z [ 40%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:23:37.6059236Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-neon-c4.c.o 2025-06-05T23:23:37.6061528Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:23:37.6063222Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:23:37.6064961Z [ 40%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-06-05T23:23:37.6067559Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:23:37.6070270Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-neon-c4.c.o 2025-06-05T23:23:37.6072904Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:23:37.6074711Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:23:37.6076965Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:23:37.6079687Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:23:37.6083310Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-06-05T23:23:37.6086540Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-06-05T23:23:37.6088958Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:23:37.6090619Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:23:37.6092912Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:23:37.6095557Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:23:37.6097967Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-06-05T23:23:37.6100943Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-06-05T23:23:37.6103320Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:23:37.6105054Z [ 41%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:23:37.6106866Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:23:37.6109359Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-06-05T23:23:37.6111669Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:23:37.6113926Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:23:37.6116031Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:23:37.6118468Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-06-05T23:23:37.6120871Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:23:40.5995883Z [ 43%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2025-06-05T23:23:40.5998504Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:23:40.6001139Z [ 43%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-06-05T23:23:40.6004259Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-06-05T23:23:40.6007102Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:23:40.6009402Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:23:40.6011316Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:23:40.6013726Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-06-05T23:23:40.6016455Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:23:40.6018995Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-06-05T23:23:40.6021469Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:23:40.6024028Z [ 43%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-06-05T23:23:40.6030936Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u32.c.o 2025-06-05T23:23:40.6033139Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:23:40.6034866Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:23:40.6037096Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u32.c.o 2025-06-05T23:23:40.6039499Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:23:40.6041513Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:23:40.6043161Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:23:40.6044569Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:23:40.6045996Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:23:40.6047614Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:23:40.6049562Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u32.c.o 2025-06-05T23:23:40.6051405Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u32.c.o 2025-06-05T23:23:40.6053286Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:23:40.6054936Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:23:40.6056250Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:23:40.6057453Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:23:40.6059060Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:23:40.6061024Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:23:40.6063372Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u16-acc2.c.o 2025-06-05T23:23:40.6065538Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:23:40.6067080Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:23:40.6069055Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-06-05T23:23:40.6070794Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:23:40.6072381Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c16.c.o 2025-06-05T23:23:40.6074275Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-06-05T23:23:40.6076120Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:23:40.6077749Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc4.c.o 2025-06-05T23:23:40.6079865Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-06-05T23:23:40.6081696Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:23:40.6083190Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:23:40.6085070Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc4.c.o 2025-06-05T23:23:40.6087304Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:23:40.6089637Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-06-05T23:23:40.6092273Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc4.c.o 2025-06-05T23:23:40.6094809Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-06-05T23:23:40.6096945Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:23:40.6098856Z [ 45%] Building CXX object extension/training/CMakeFiles/extension_training.dir/__/data_loader/file_data_loader.cpp.o 2025-06-05T23:23:40.6101274Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon.c.o 2025-06-05T23:23:40.6103479Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:23:40.6106061Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-pipelined.c.o 2025-06-05T23:23:40.6108497Z [ 47%] Building CXX object extension/training/CMakeFiles/extension_training.dir/__/data_loader/mmap_data_loader.cpp.o 2025-06-05T23:23:40.6110881Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x2-minmax-aarch64-neonfma.c.o 2025-06-05T23:23:40.6113263Z [ 47%] Building CXX object extension/training/CMakeFiles/extension_training.dir/__/flat_tensor/flat_tensor_data_map.cpp.o 2025-06-05T23:23:40.6115631Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x4-minmax-aarch64-neonfma.c.o 2025-06-05T23:23:40.6117646Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:23:40.6119425Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:23:43.7983930Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-06-05T23:23:43.7986420Z [ 47%] Building CXX object extension/training/CMakeFiles/extension_training.dir/__/flat_tensor/serialize/flat_tensor_header.cpp.o 2025-06-05T23:23:43.7988779Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-06-05T23:23:43.7991314Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-06-05T23:23:43.7993755Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:23:43.7995465Z [ 48%] Building CXX object extension/training/CMakeFiles/extension_training.dir/__/module/module.cpp.o 2025-06-05T23:23:43.7997293Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:23:43.7999712Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-neon-u8.c.o 2025-06-05T23:23:43.8002179Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-06-05T23:23:43.8004325Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:23:43.8006343Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-neon-u8.c.o 2025-06-05T23:23:43.8008487Z [ 48%] Building CXX object extension/training/CMakeFiles/extension_training.dir/module/training_module.cpp.o 2025-06-05T23:23:43.8010290Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:23:43.8012516Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-06-05T23:23:43.8014989Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u8.c.o 2025-06-05T23:23:43.8017493Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-06-05T23:23:43.8019825Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:23:43.8022158Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u8.c.o 2025-06-05T23:23:43.8024307Z [ 48%] Building CXX object extension/training/CMakeFiles/extension_training.dir/optimizer/sgd.cpp.o 2025-06-05T23:23:43.8026503Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-06-05T23:23:43.8028612Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:23:43.8030693Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-neon-u8.c.o 2025-06-05T23:23:43.8032662Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:23:43.8034735Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-06-05T23:23:43.8036482Z [ 49%] Linking CXX static library libextension_training.a 2025-06-05T23:23:43.8037214Z [ 49%] Built target extension_training 2025-06-05T23:23:43.8038867Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u8.c.o 2025-06-05T23:23:43.8041163Z [ 49%] Generating selected_operators.yaml for quantized_ops_lib 2025-06-05T23:23:43.8042677Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:23:43.8044897Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-06-05T23:23:43.8046986Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:23:43.8048130Z [ 50%] Generating code for kernel registration 2025-06-05T23:23:43.8050247Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-neon-u8.c.o 2025-06-05T23:23:43.8053703Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-06-05T23:23:43.8056055Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:23:43.8058189Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-neon-u8.c.o 2025-06-05T23:23:43.8060795Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-06-05T23:23:43.8062888Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:23:43.8064473Z [ 50%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:23:43.8066803Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-neon-u8.c.o 2025-06-05T23:23:43.8068836Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:23:43.8070946Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-06-05T23:23:43.8073293Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-neon-u8.c.o 2025-06-05T23:23:43.8075346Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:23:43.8077051Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:23:43.8079556Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-06-05T23:23:43.8082027Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:23:43.8084282Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-neon-u8.c.o 2025-06-05T23:23:43.8086364Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:23:43.8088530Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-06-05T23:23:43.8091264Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:23:43.8092935Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:23:43.8095098Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u8.c.o 2025-06-05T23:23:43.8097628Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-06-05T23:23:43.8100072Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u8.c.o 2025-06-05T23:23:43.8102230Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:23:43.8104095Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:23:43.8106498Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-06-05T23:23:43.8109064Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u8.c.o 2025-06-05T23:23:43.8111046Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:23:43.8113341Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-06-05T23:23:43.8115485Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:23:43.8117793Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u8.c.o 2025-06-05T23:23:43.8119703Z [ 51%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:23:46.7194873Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:23:46.7197120Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-06-05T23:23:46.7199661Z [ 51%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_lib.dir/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:23:46.7202326Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u8.c.o 2025-06-05T23:23:46.7204735Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:23:46.7207254Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-06-05T23:23:46.7209391Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:23:46.7210723Z [ 51%] Linking CXX static library libquantized_ops_lib.a 2025-06-05T23:23:46.7211467Z [ 51%] Built target quantized_ops_lib 2025-06-05T23:23:46.7212590Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:23:46.7214800Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u8.c.o 2025-06-05T23:23:46.7217022Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:23:46.7219186Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-06-05T23:23:46.7221761Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-neon-u8.c.o 2025-06-05T23:23:46.7224082Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:23:46.7225779Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:23:46.7227515Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:23:46.7229649Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-06-05T23:23:46.7232051Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-neon-u8.c.o 2025-06-05T23:23:46.7234710Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-06-05T23:23:46.7236701Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:23:46.7238321Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:23:46.7240661Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-neon-u16.c.o 2025-06-05T23:23:46.7242907Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:23:46.7245199Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-06-05T23:23:46.7247755Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-neon-u8.c.o 2025-06-05T23:23:46.7250184Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-06-05T23:23:46.7252755Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-neon.c.o 2025-06-05T23:23:46.7254855Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:23:46.7256583Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:23:46.7258349Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:23:46.7260650Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-06-05T23:23:46.7262909Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:23:46.7265301Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-neon.c.o 2025-06-05T23:23:46.7267594Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:23:46.7269449Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:23:46.7271632Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-06-05T23:23:46.7273617Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:23:46.7275606Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-neon.c.o 2025-06-05T23:23:46.7277744Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:23:46.7280112Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-06-05T23:23:46.7282609Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u8.c.o 2025-06-05T23:23:46.7284576Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:23:46.7286247Z [ 54%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:23:46.7287868Z [ 55%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:23:46.7290061Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u16.c.o 2025-06-05T23:23:46.7292580Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:23:46.7294482Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:23:46.7296954Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u8.c.o 2025-06-05T23:23:46.7299665Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-06-05T23:23:46.7301900Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:23:46.7303735Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:23:46.7306717Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-06-05T23:23:46.7309029Z [ 56%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:23:46.7311236Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-06-05T23:23:46.7313979Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-neon-rational-12-10-div.c.o 2025-06-05T23:23:46.7316223Z [ 56%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:23:46.7317955Z [ 56%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:23:46.7319573Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:23:46.7321820Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-06-05T23:23:46.7324595Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-neon-u16.c.o 2025-06-05T23:23:46.7326874Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:23:46.7328744Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:23:46.7331051Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-06-05T23:23:49.3024299Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:23:49.3027338Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-neon-rational-3-3-div.c.o 2025-06-05T23:23:49.3030481Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:23:49.3032559Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:23:49.3035388Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-06-05T23:23:49.3038726Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u8.c.o 2025-06-05T23:23:49.3041555Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:23:49.3044572Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-06-05T23:23:49.3047162Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:23:49.3050056Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-06-05T23:23:49.3053131Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:23:49.3056079Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neon-2x.c.o 2025-06-05T23:23:49.3059683Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neonfma-2x.c.o 2025-06-05T23:23:49.3062529Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:23:49.3099842Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:23:49.3101679Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:23:49.3103557Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-06-05T23:23:49.3105690Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:23:49.3107515Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neon-u8.c.o 2025-06-05T23:23:49.3108814Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u8.c.o 2025-06-05T23:23:49.3109938Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:23:49.3110877Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:23:49.3111792Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:23:49.3112861Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:23:49.3114160Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-06-05T23:23:49.3115547Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-06-05T23:23:49.3116877Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neon-u8.c.o 2025-06-05T23:23:49.3118107Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:23:49.3119052Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:23:49.3120024Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:23:49.3121175Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u8.c.o 2025-06-05T23:23:49.3122243Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:23:49.3123360Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-06-05T23:23:49.3124801Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-06-05T23:23:49.3126106Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neon-u8.c.o 2025-06-05T23:23:49.3127201Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:23:49.3128248Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:23:49.3129387Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u8.c.o 2025-06-05T23:23:49.3130719Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-06-05T23:23:49.3131879Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:23:49.3133052Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-06-05T23:23:49.3134217Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:23:49.3135472Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neon-u8.c.o 2025-06-05T23:23:49.3136767Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u8.c.o 2025-06-05T23:23:49.3138093Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-06-05T23:23:49.3139218Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:23:49.3140217Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:23:49.3141426Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-06-05T23:23:49.3142788Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u16.c.o 2025-06-05T23:23:49.3143893Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:23:49.3145030Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-06-05T23:23:49.3146268Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:23:49.3147469Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-06-05T23:23:49.3148721Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:23:49.3150014Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:23:49.3152204Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u8.c.o 2025-06-05T23:23:49.3153823Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:23:49.3155138Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u16.c.o 2025-06-05T23:23:49.3156909Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.o 2025-06-05T23:23:49.3158413Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u4.c.o 2025-06-05T23:23:49.3159735Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:23:51.1982671Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:23:51.1984377Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-06-05T23:23:51.1986249Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-div.c.o 2025-06-05T23:23:51.1987868Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-06-05T23:23:51.1989199Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:23:51.1990363Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:23:51.1991329Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:23:51.1992482Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-neon.c.o 2025-06-05T23:23:51.1993671Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:23:51.1994847Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-06-05T23:23:51.1996172Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-neon.c.o 2025-06-05T23:23:51.1997443Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-06-05T23:23:51.1998847Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-neon.c.o 2025-06-05T23:23:51.2000070Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:23:51.2001021Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:23:51.2002006Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:23:51.2002938Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:23:51.2004154Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:23:51.2005345Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-06-05T23:23:51.2006697Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c.o 2025-06-05T23:23:51.2008109Z /pytorch/executorch/backends/xnnpack/third-party/XNNPACK/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c:24:1: warning: non-void function does not return a value [-Wreturn-type] 2025-06-05T23:23:51.2009021Z 24 | } 2025-06-05T23:23:51.2009288Z | ^ 2025-06-05T23:23:51.2010382Z /pytorch/executorch/backends/xnnpack/third-party/XNNPACK/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c:34:1: warning: non-void function does not return a value [-Wreturn-type] 2025-06-05T23:23:51.2011275Z 34 | } 2025-06-05T23:23:51.2011472Z | ^ 2025-06-05T23:23:51.2011701Z 2 warnings generated. 2025-06-05T23:23:51.2013124Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x16-minmax-neonfp16arith-mlal-lane.c.o 2025-06-05T23:23:51.2015559Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2025-06-05T23:23:51.2018550Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:51.2020986Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:23:51.2022853Z [ 63%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:23:51.2024690Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2025-06-05T23:23:51.2026093Z [ 63%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:23:51.2027114Z [ 63%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:23:51.2028472Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:51.2029686Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:23:51.2031040Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x16-minmax-neonfp16arith-mlal-lane.c.o 2025-06-05T23:23:51.2032794Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16-minmax-neonfp16arith-mlal-lane.c.o 2025-06-05T23:23:51.2033886Z [ 63%] Linking CXX static library liboptimized_kernels.a 2025-06-05T23:23:51.2034701Z [ 63%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:23:51.2036098Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2025-06-05T23:23:51.2037325Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:23:51.2037876Z [ 63%] Built target optimized_kernels 2025-06-05T23:23:51.2038528Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:23:51.2039581Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:23:51.2040909Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:51.2042166Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:23:51.2043521Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2025-06-05T23:23:51.2044861Z [ 63%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:23:51.2046271Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:51.2047985Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x16-minmax-neonfp16arith-mlal-lane.c.o 2025-06-05T23:23:51.2049536Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:23:51.2050638Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:23:51.2051673Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:23:51.2053169Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2025-06-05T23:23:51.2054660Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:23:51.2056149Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:51.2057878Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c2s4-minmax-neonfp16arith.c.o 2025-06-05T23:23:51.2059233Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:23:51.2060633Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c4-minmax-neondotfp16arith.c.o 2025-06-05T23:23:51.2061985Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:23:51.2062953Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:23:53.0674872Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:23:53.0677657Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-2x8c2s4-minmax-neonfp16arith.c.o 2025-06-05T23:23:53.0680195Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:23:53.0682063Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:23:53.0684790Z [ 64%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-06-05T23:23:53.0688453Z [ 64%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondotfp16arith-cortex-a55.S.o 2025-06-05T23:23:53.0692309Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2025-06-05T23:23:53.0695584Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:53.0698122Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:23:53.0700895Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x8c4-minmax-neondotfp16arith.c.o 2025-06-05T23:23:53.0704499Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x16c4-minmax-neondotfp16arith.c.o 2025-06-05T23:23:53.0706813Z [ 64%] Generating selected_operators.yaml for optimized_ops_lib 2025-06-05T23:23:53.0708275Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:23:53.0710926Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:23:53.0712853Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:23:53.0714639Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:23:53.0717182Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:53.0719161Z [ 65%] Generating code for kernel registration 2025-06-05T23:23:53.0720664Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:23:53.0723340Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c2s4-minmax-neonfp16arith-mlal.c.o 2025-06-05T23:23:53.0725821Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:23:53.0728311Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c4-minmax-neondotfp16arith.c.o 2025-06-05T23:23:53.0731619Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x8c2s4-minmax-neonfp16arith-mlal.c.o 2025-06-05T23:23:53.0734986Z [ 66%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2025-06-05T23:23:53.0738573Z [ 66%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-06-05T23:23:53.0741980Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-neondotfp16arith.c.o 2025-06-05T23:23:53.0745159Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:53.0748599Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x8c4-minmax-neondotfp16arith.c.o 2025-06-05T23:23:53.0751239Z [ 66%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:23:53.0753163Z [ 67%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:23:53.0755058Z [ 67%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:23:53.0757101Z [ 67%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:23:53.0759690Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16-minmax-neon-mlal-lane.c.o 2025-06-05T23:23:53.0762236Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:23:53.0764729Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16c4-minmax-neondot.c.o 2025-06-05T23:23:53.0767888Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:53.0770539Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:23:53.0772387Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:23:53.0774913Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:23:53.0777434Z [ 67%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:23:53.0779509Z [ 67%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:23:53.0782213Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x16c4-minmax-neondot.c.o 2025-06-05T23:23:53.0785431Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:53.0787811Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:23:53.0789728Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:23:53.0792189Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:23:53.0794662Z [ 67%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:23:53.0796575Z [ 67%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:23:53.0799143Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x16-minmax-neon-mlal-lane.c.o 2025-06-05T23:23:53.0802351Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16-minmax-neon-mlal-lane.c.o 2025-06-05T23:23:53.0804893Z [ 68%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:23:53.0807437Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c4-minmax-neondot.c.o 2025-06-05T23:23:53.0810027Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:23:53.0812529Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:53.0815434Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:23:54.9805920Z [ 68%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:23:54.9807723Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:23:54.9809696Z [ 68%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:23:54.9812208Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x16c4-minmax-neondot.c.o 2025-06-05T23:23:54.9815350Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:54.9817922Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:23:54.9819624Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:23:54.9821249Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:23:54.9823618Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:23:54.9826905Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x16-minmax-neon-mlal-lane.c.o 2025-06-05T23:23:54.9829365Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:23:54.9831325Z [ 68%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:23:54.9833670Z [ 68%] Building CXX object kernels/optimized/CMakeFiles/optimized_ops_lib.dir/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:23:54.9835982Z [ 68%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:23:54.9837881Z [ 68%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:23:54.9840546Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c4-minmax-neondot.c.o 2025-06-05T23:23:54.9843642Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:54.9846012Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:23:54.9848197Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.o 2025-06-05T23:23:54.9849780Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:23:54.9851374Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c2s4-minmax-neon-mlal.c.o 2025-06-05T23:23:54.9853121Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c4-minmax-neondot.c.o 2025-06-05T23:23:54.9854159Z [ 70%] Linking CXX static library liboptimized_ops_lib.a 2025-06-05T23:23:54.9855246Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.o 2025-06-05T23:23:54.9856533Z [ 70%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:23:54.9857156Z [ 70%] Built target optimized_ops_lib 2025-06-05T23:23:54.9857893Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:23:54.9859320Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8c2s4-minmax-neon-mlal.c.o 2025-06-05T23:23:54.9861094Z [ 71%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2025-06-05T23:23:54.9863017Z [ 71%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-06-05T23:23:54.9864404Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:23:54.9865867Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:23:54.9867416Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:23:54.9868445Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:23:54.9869772Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-neondot.c.o 2025-06-05T23:23:54.9871387Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:54.9872639Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:23:54.9873640Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:23:54.9874951Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:23:54.9876230Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:23:54.9877253Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:23:54.9878161Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:23:54.9879098Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:23:54.9880416Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8c4-minmax-neondot.c.o 2025-06-05T23:23:54.9881611Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:23:54.9882894Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c4-minmax-neondot.c.o 2025-06-05T23:23:54.9884322Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:23:54.9885669Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:54.9887047Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:23:54.9888080Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:23:54.9889802Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:23:54.9891802Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:23:54.9894355Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.o 2025-06-05T23:23:54.9897369Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:23:54.9900664Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c2s4-minmax-neon-mlal.c.o 2025-06-05T23:23:54.9903828Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c4-minmax-neondot.c.o 2025-06-05T23:23:54.9906213Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:23:54.9908041Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:23:54.9909945Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:23:56.7391676Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.o 2025-06-05T23:23:56.7394040Z [ 72%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:23:56.7395944Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:23:56.7397832Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:23:56.7400436Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8c2s4-minmax-neon-mlal.c.o 2025-06-05T23:23:56.7403951Z [ 73%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2025-06-05T23:23:56.7406762Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:23:56.7409591Z [ 73%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-06-05T23:23:56.7412294Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:23:56.7414911Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-neondot.c.o 2025-06-05T23:23:56.7418112Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c8-minmax-neoni8mm.c.o 2025-06-05T23:23:56.7420874Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:23:56.7422699Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:23:56.7424578Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:23:56.7426645Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:23:56.7429247Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:23:56.7432544Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8c4-minmax-neondot.c.o 2025-06-05T23:23:56.7435777Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qb4w-gemm/qp8-f32-qb4w-gemm-minmax-16x4c16s2-mstep4-neoni8mm.c.o 2025-06-05T23:23:56.7438546Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:23:56.7441115Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qb4w-gemm/qp8-f32-qb4w-gemm-minmax-1x4c16s2-aarch64-neondot.c.o 2025-06-05T23:23:56.7443624Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:23:56.7446146Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qb4w-gemm/qp8-f32-qb4w-gemm-minmax-1x8c16s2-aarch64-neondot.c.o 2025-06-05T23:23:56.7449401Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qc4w-gemm/qp8-f32-qc4w-gemm-minmax-1x8c16s2-aarch64-neondot.c.o 2025-06-05T23:23:56.7452700Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qc4w-gemm/qp8-f32-qc4w-gemm-minmax-8x8c16s2-mstep2-neoni8mm.c.o 2025-06-05T23:23:56.7455267Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:23:56.7457178Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:23:56.7458990Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:23:56.7460840Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:23:56.7462755Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:23:56.7465575Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mla8-ld64.c.o 2025-06-05T23:23:56.7468158Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:23:56.7470751Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:23:56.7473861Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:23:56.7476251Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:23:56.7478755Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:23:56.7481383Z [ 74%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:23:56.7483810Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mla8-ld64.c.o 2025-06-05T23:23:56.7486397Z [ 74%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:23:56.7488447Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:23:56.7490354Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:23:56.7492253Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:23:56.7494402Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mla8-ld64.c.o 2025-06-05T23:23:56.7496732Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:23:56.7499450Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:23:56.7502056Z [ 75%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:23:56.7504004Z [ 75%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:23:56.7505790Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:23:56.7507440Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:23:56.7509881Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:23:56.7512929Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:23:56.7515485Z [ 76%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:23:56.7517964Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u32.c.o 2025-06-05T23:23:56.7520651Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u32.c.o 2025-06-05T23:23:56.7522908Z [ 76%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:23:56.7524799Z [ 76%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:23:56.7526617Z [ 76%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:23:56.7528898Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-06-05T23:23:56.7531012Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:23:58.6282864Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-06-05T23:23:58.6285260Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:23:58.6288931Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:23:58.6291299Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:23:58.6293687Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-06-05T23:23:58.6296363Z [ 76%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:23:58.6299956Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-06-05T23:23:58.6302661Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:23:58.6304874Z [ 76%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:23:58.6307346Z [ 76%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:23:58.6309588Z [ 76%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:23:58.6312425Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:23:58.6315132Z [ 77%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:23:58.6317910Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:23:58.6320562Z [ 77%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:23:58.6322667Z [ 77%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:23:58.6325425Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:23:58.6328770Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-06-05T23:23:58.6331270Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:23:58.6333117Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:23:58.6334897Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:23:58.6336725Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:23:58.6339370Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-06-05T23:23:58.6342276Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:23:58.6344898Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neon-mla8-ld128.c.o 2025-06-05T23:23:58.6347724Z [ 77%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:23:58.6349966Z [ 77%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:23:58.6353001Z [ 77%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:23:58.6355872Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neonv8-mla8-ld128.c.o 2025-06-05T23:23:58.6359233Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:23:58.6362532Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:23:58.6366097Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:23:58.6368835Z [ 77%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:23:58.6370896Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:23:58.6372582Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:23:58.6375188Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mla8-ld64.c.o 2025-06-05T23:23:58.6378602Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-06-05T23:23:58.6381427Z [ 79%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:23:58.6384253Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:23:58.6387692Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:23:58.6390045Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:23:58.6391928Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:23:58.6393653Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:23:58.6396165Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:23:58.6398669Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:23:58.6400605Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:23:58.6402682Z [ 80%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:23:58.6405397Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-06-05T23:23:58.6408548Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-neondot.c.o 2025-06-05T23:23:58.6411229Z [ 80%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:23:58.6414108Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-neoni8mm.c.o 2025-06-05T23:23:58.6416445Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:23:58.6418198Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:23:58.6419921Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:23:58.6422293Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:23:58.6425206Z [ 80%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:23:58.6428001Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:23:58.6430555Z [ 80%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:24:00.3384814Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:24:00.3386743Z [ 80%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:24:00.3387789Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:24:00.3389192Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2s4-minmax-fp32-neon-mlal.c.o 2025-06-05T23:24:00.3390576Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:24:00.3391520Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:24:00.3392628Z [ 80%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:24:00.3393844Z [ 80%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:24:00.3396265Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-06-05T23:24:00.3398691Z [ 80%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:24:00.3401193Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neondot.c.o 2025-06-05T23:24:00.3404376Z [ 80%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-06-05T23:24:00.3407822Z [ 80%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-06-05T23:24:00.3410814Z [ 80%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-06-05T23:24:00.3413072Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:24:00.3415395Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:24:00.3418387Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2s4-minmax-fp32-neon-mlal.c.o 2025-06-05T23:24:00.3421244Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-06-05T23:24:00.3422987Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:24:00.3424296Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:24:00.3425222Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:24:00.3426263Z [ 81%] Linking CXX static library liboptimized_portable_kernels.a 2025-06-05T23:24:00.3427033Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:24:00.3428620Z [ 82%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-06-05T23:24:00.3429806Z [ 82%] Built target optimized_portable_kernels 2025-06-05T23:24:00.3430965Z [ 82%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-06-05T23:24:00.3432021Z [ 82%] Merging kernel yaml files 2025-06-05T23:24:00.3433130Z [ 82%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-06-05T23:24:00.3434793Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:24:00.3436017Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:24:00.3436796Z [ 82%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-06-05T23:24:00.3438170Z [ 82%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-06-05T23:24:00.3439573Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:24:00.3440996Z [ 82%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-06-05T23:24:00.3442363Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:24:00.3443317Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:24:00.3444764Z [ 82%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2025-06-05T23:24:00.3446593Z [ 82%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2025-06-05T23:24:00.3448280Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-neondot.c.o 2025-06-05T23:24:00.3449851Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c8-minmax-fp32-neoni8mm.c.o 2025-06-05T23:24:00.3451179Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:24:00.3451900Z [ 82%] Generating code for kernel registration 2025-06-05T23:24:00.3452662Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:24:00.3453973Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8c4-minmax-fp32-neondot.c.o 2025-06-05T23:24:00.3455154Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:24:00.3456088Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:24:00.3457103Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:24:00.3458006Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:24:00.3459490Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-06-05T23:24:00.3462374Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c4-minmax-fp32-neondot.c.o 2025-06-05T23:24:00.3463683Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:24:00.3464966Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-neoni8mm.c.o 2025-06-05T23:24:00.3466915Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:24:00.3468121Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:24:00.3469569Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:24:00.3471207Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:24:00.3472551Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:24:00.3473914Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2s4-minmax-fp32-neon-mlal.c.o 2025-06-05T23:24:01.6305932Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-06-05T23:24:01.6309195Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neondot.c.o 2025-06-05T23:24:01.6311694Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:24:01.6313662Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:24:01.6316525Z [ 84%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-06-05T23:24:01.6319318Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:24:01.6322471Z [ 84%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-06-05T23:24:01.6325920Z [ 84%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-06-05T23:24:01.6329219Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:24:01.6332439Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2s4-minmax-fp32-neon-mlal.c.o 2025-06-05T23:24:01.6335736Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-06-05T23:24:01.6338245Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:24:01.6341258Z [ 84%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-06-05T23:24:01.6344059Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:24:01.6346099Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:24:01.6348877Z [ 84%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-06-05T23:24:01.6352376Z [ 84%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-06-05T23:24:01.6355651Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:24:01.6358072Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:24:01.6360897Z [ 85%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-06-05T23:24:01.6364587Z [ 85%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-06-05T23:24:01.6368366Z [ 85%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2025-06-05T23:24:01.6370920Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:24:01.6373680Z [ 85%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2025-06-05T23:24:01.6377017Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-neondot.c.o 2025-06-05T23:24:01.6380170Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c8-minmax-fp32-neoni8mm.c.o 2025-06-05T23:24:01.6383162Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8c4-minmax-fp32-neondot.c.o 2025-06-05T23:24:01.6385891Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:24:01.6387817Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:24:01.6389732Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:24:01.6392175Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:24:01.6394363Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:24:01.6396784Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c32.c.o 2025-06-05T23:24:01.6399602Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-06-05T23:24:01.6402278Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neon-u32-acc2.c.o 2025-06-05T23:24:01.6405079Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u32-acc2.c.o 2025-06-05T23:24:01.6407640Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-06-05T23:24:01.6410164Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u16.c.o 2025-06-05T23:24:01.6412777Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u32.c.o 2025-06-05T23:24:01.6415461Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:24:01.6417647Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:24:01.6419421Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:24:01.6421265Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:24:01.6423582Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-06-05T23:24:01.6426416Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u16.c.o 2025-06-05T23:24:01.6430138Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u32.c.o 2025-06-05T23:24:01.6432911Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:24:01.6436012Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:24:01.6438790Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u32.c.o 2025-06-05T23:24:01.6440815Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:24:01.6442636Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:24:01.6444824Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-06-05T23:24:01.6446985Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-06-05T23:24:02.4884161Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u32.c.o 2025-06-05T23:24:02.4885835Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:24:02.4888037Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:24:02.4890564Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:24:02.4892222Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-06-05T23:24:02.4895442Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-06-05T23:24:02.4897983Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:24:02.4900408Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-neon-c8.c.o 2025-06-05T23:24:02.4902971Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-06-05T23:24:02.4904510Z [ 88%] Linking CXX static library libportable_kernels.a 2025-06-05T23:24:02.4906010Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-neon-c8.c.o 2025-06-05T23:24:02.4908055Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-06-05T23:24:02.4910154Z [ 88%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:24:02.4912263Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:24:02.4914412Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:24:02.4915582Z [ 88%] Built target portable_kernels 2025-06-05T23:24:02.4916954Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:24:02.4919030Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul8.c.o 2025-06-05T23:24:02.4920429Z [ 88%] Generating selected_operators.yaml for portable_ops_lib 2025-06-05T23:24:02.4921925Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul8.c.o 2025-06-05T23:24:02.4924024Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:24:02.4927008Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:24:02.4929144Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:24:02.4931111Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u32.c.o 2025-06-05T23:24:02.4932978Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-06-05T23:24:02.4934783Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-06-05T23:24:02.4936802Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:24:02.4938821Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-rndnu-neon-mlal-lane.c.o 2025-06-05T23:24:02.4940990Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:24:02.4942375Z [ 89%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-06-05T23:24:02.4944008Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x8-minmax-rndnu-neon-mlal-lane.c.o 2025-06-05T23:24:02.4945187Z [ 89%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:24:02.4946705Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:24:02.4948985Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:24:02.4950542Z [ 89%] Generating code for kernel registration 2025-06-05T23:24:02.4952101Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x8-minmax-rndnu-neon-mlal-lane.c.o 2025-06-05T23:24:02.4954654Z [ 89%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-06-05T23:24:02.4957073Z [ 89%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75-prfm.S.o 2025-06-05T23:24:02.4959022Z [ 89%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75.S.o 2025-06-05T23:24:02.4962102Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-neon-mlal-lane.c.o 2025-06-05T23:24:02.4965779Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-rndnu-neon-mlal-lane.c.o 2025-06-05T23:24:02.4968837Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:24:02.4971816Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:24:02.4974757Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x8-minmax-rndnu-neon-mlal-lane.c.o 2025-06-05T23:24:02.4977825Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:24:02.4980791Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:24:02.4983796Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x8-minmax-rndnu-neon-mlal-lane.c.o 2025-06-05T23:24:02.4987477Z [ 90%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-06-05T23:24:02.4991457Z [ 90%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75-prfm.S.o 2025-06-05T23:24:02.4995254Z [ 90%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75.S.o 2025-06-05T23:24:02.5022250Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-neon-mlal-lane.c.o 2025-06-05T23:24:02.5023754Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u16.c.o 2025-06-05T23:24:03.3721726Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u32.c.o 2025-06-05T23:24:03.3723462Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-06-05T23:24:03.3725103Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-neon-u32-acc2.c.o 2025-06-05T23:24:03.3726656Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-06-05T23:24:03.3728183Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u16.c.o 2025-06-05T23:24:03.3729793Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u32.c.o 2025-06-05T23:24:03.3731183Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:24:03.3732561Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-06-05T23:24:03.3733955Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u16.c.o 2025-06-05T23:24:03.3735395Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u32.c.o 2025-06-05T23:24:03.3736802Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:24:03.3738268Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:24:03.3739624Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u32.c.o 2025-06-05T23:24:03.3741159Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-06-05T23:24:03.3742461Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-06-05T23:24:03.3743836Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u32.c.o 2025-06-05T23:24:03.3745235Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:24:03.3747136Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:24:03.3749017Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:24:03.3751497Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-06-05T23:24:03.3753227Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:24:03.3754836Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-06-05T23:24:03.3756308Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-neon.c.o 2025-06-05T23:24:03.3757647Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-06-05T23:24:03.3758992Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c16.c.o 2025-06-05T23:24:03.3760347Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c8.c.o 2025-06-05T23:24:03.3761705Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-06-05T23:24:03.3763101Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-neon-c16.c.o 2025-06-05T23:24:03.3764526Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:24:03.3766075Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-neon-u64.c.o 2025-06-05T23:24:03.3767360Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-06-05T23:24:03.3768685Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c16.c.o 2025-06-05T23:24:03.3770039Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c8.c.o 2025-06-05T23:24:03.3771410Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-06-05T23:24:03.3772735Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-06-05T23:24:03.3774099Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-neon-c16.c.o 2025-06-05T23:24:03.3775607Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:24:03.3776920Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-neon-u16.c.o 2025-06-05T23:24:03.3778152Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-06-05T23:24:03.3779402Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-neon-u64.c.o 2025-06-05T23:24:03.3780668Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-06-05T23:24:03.3782170Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-06-05T23:24:03.3784052Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x64-gemm-goi-scalar-int-u4.c.o 2025-06-05T23:24:03.3786128Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-06-05T23:24:03.3787831Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-06-05T23:24:03.3789520Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-dec-zip-neon.c.o 2025-06-05T23:24:03.3791025Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-06-05T23:24:03.3792471Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-2x2-neon-tbl64.c.o 2025-06-05T23:24:03.3793956Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-aarch64-neon-tbl128.c.o 2025-06-05T23:24:03.3795364Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-pack-lh/x32-packlh-neonsme2.c.o 2025-06-05T23:24:03.3796804Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-neon-ld2lane-u2-prfm.c.o 2025-06-05T23:24:03.3798331Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:24:03.3799840Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:24:04.3838355Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-06-05T23:24:04.3842629Z /pytorch/executorch/backends/xnnpack/third-party/XNNPACK/src/x32-pack-lh/x32-packlh-neonsme2.c:46:1: warning: non-void function does not return a value [-Wreturn-type] 2025-06-05T23:24:04.3843664Z 46 | } 2025-06-05T23:24:04.3843867Z | ^ 2025-06-05T23:24:04.3844058Z 1 warning generated. 2025-06-05T23:24:04.3845365Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-06-05T23:24:04.3846998Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-06-05T23:24:04.3849845Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-dec-zip-neon.c.o 2025-06-05T23:24:04.3852963Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-aarch64-neon-tbl128.c.o 2025-06-05T23:24:04.3855535Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-neon.c.o 2025-06-05T23:24:04.3856897Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-06-05T23:24:04.3858159Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-neon.c.o 2025-06-05T23:24:04.3860142Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-06-05T23:24:04.3862485Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-neon.c.o 2025-06-05T23:24:04.3864852Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-06-05T23:24:04.3867623Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-neon.c.o 2025-06-05T23:24:04.3869841Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-06-05T23:24:04.3872010Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-neon.c.o 2025-06-05T23:24:04.3874153Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-06-05T23:24:04.3876771Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-dec-zip-neon.c.o 2025-06-05T23:24:04.3879841Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-dec-zip-neon.c.o 2025-06-05T23:24:04.3882779Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-06-05T23:24:04.3885308Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u64.c.o 2025-06-05T23:24:04.3886666Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-06-05T23:24:04.3888016Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-aarch64-neon-f32qp8-u2.c.o 2025-06-05T23:24:04.3889378Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-06-05T23:24:04.3890771Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-06-05T23:24:04.3892198Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-06-05T23:24:04.3893604Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-06-05T23:24:04.3895025Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-06-05T23:24:04.3896662Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-dec-zip-neon.c.o 2025-06-05T23:24:04.3898163Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-06-05T23:24:04.3899481Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-neon.c.o 2025-06-05T23:24:04.3900684Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-06-05T23:24:04.3901875Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-neon.c.o 2025-06-05T23:24:04.3903142Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-06-05T23:24:04.3904338Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-neon.c.o 2025-06-05T23:24:04.3905651Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-06-05T23:24:04.3906957Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-neon.c.o 2025-06-05T23:24:04.3908157Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-06-05T23:24:04.3909412Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-06-05T23:24:04.3910669Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-neon-u64.c.o 2025-06-05T23:24:04.3911892Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-06-05T23:24:04.3913140Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-neon-u16.c.o 2025-06-05T23:24:04.3914385Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-06-05T23:24:04.3915746Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-06-05T23:24:04.3918012Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-06-05T23:24:04.3919967Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-06-05T23:24:04.3921927Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-06-05T23:24:04.3923828Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-06-05T23:24:04.3925079Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-06-05T23:24:04.3926325Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-06-05T23:24:04.3927557Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-06-05T23:24:04.3928865Z [ 97%] Building CXX object kernels/portable/CMakeFiles/portable_ops_lib.dir/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:24:04.3930251Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-06-05T23:24:04.3931427Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-06-05T23:24:04.3932231Z [ 97%] Linking C static library libmicrokernels-prod.a 2025-06-05T23:24:04.3932755Z [ 97%] Linking CXX static library libportable_ops_lib.a 2025-06-05T23:24:04.3933153Z [ 97%] Built target portable_ops_lib 2025-06-05T23:24:04.3933854Z [ 97%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/data_loader/file_data_loader.cpp.o 2025-06-05T23:24:04.3934837Z [ 97%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/data_loader/mmap_data_loader.cpp.o 2025-06-05T23:24:06.6055434Z [ 97%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/flat_tensor/flat_tensor_data_map.cpp.o 2025-06-05T23:24:06.6056583Z [ 97%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/flat_tensor/serialize/serialize.cpp.o 2025-06-05T23:24:06.6057694Z [ 97%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/flat_tensor/serialize/flat_tensor_header.cpp.o 2025-06-05T23:24:06.6058926Z [ 98%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/module/module.cpp.o 2025-06-05T23:24:06.6059657Z [ 98%] Built target microkernels-prod 2025-06-05T23:24:06.6060121Z [ 98%] Generating build_identifier.c 2025-06-05T23:24:06.6060856Z [ 98%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/tensor/tensor_ptr.cpp.o 2025-06-05T23:24:06.6061889Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-06-05T23:24:06.6062930Z [ 98%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/tensor/tensor_ptr_maker.cpp.o 2025-06-05T23:24:06.6063966Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-06-05T23:24:06.6065372Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-06-05T23:24:06.6066518Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-06-05T23:24:06.6067526Z [ 98%] Building CXX object extension/training/CMakeFiles/train_xor.dir/examples/XOR/train.cpp.o 2025-06-05T23:24:06.6068589Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-06-05T23:24:06.6069604Z [ 98%] Building CXX object extension/training/CMakeFiles/train_xor.dir/module/training_module.cpp.o 2025-06-05T23:24:06.6070484Z [ 98%] Building CXX object extension/training/CMakeFiles/train_xor.dir/optimizer/sgd.cpp.o 2025-06-05T23:24:06.6071448Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-06-05T23:24:06.6072557Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-06-05T23:24:06.6073694Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-06-05T23:24:06.6074769Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-06-05T23:24:06.6075882Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-06-05T23:24:06.6077091Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-06-05T23:24:06.6078209Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-06-05T23:24:06.6079429Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-06-05T23:24:06.6080513Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-06-05T23:24:06.6081615Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-06-05T23:24:06.6082799Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-06-05T23:24:06.6083947Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-06-05T23:24:06.6085075Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-06-05T23:24:06.6086113Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-06-05T23:24:06.6087197Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-06-05T23:24:06.6088448Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-06-05T23:24:06.6089224Z [ 99%] Linking CXX executable train_xor 2025-06-05T23:24:06.6090000Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-06-05T23:24:06.6091085Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-06-05T23:24:06.6092187Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-06-05T23:24:06.6093295Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-06-05T23:24:06.6094445Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-06-05T23:24:06.6095510Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-06-05T23:24:06.6096465Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-06-05T23:24:06.6097029Z [ 99%] Built target train_xor 2025-06-05T23:24:06.6097664Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-06-05T23:24:06.6098625Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-06-05T23:24:06.6099352Z [100%] Linking CXX static library libXNNPACK.a 2025-06-05T23:24:06.6099703Z [100%] Built target XNNPACK 2025-06-05T23:24:06.6100348Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-06-05T23:24:06.6101304Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-06-05T23:24:06.6102268Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-06-05T23:24:06.6103225Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-06-05T23:24:06.6104180Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-06-05T23:24:06.6105203Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-06-05T23:24:06.6106059Z [100%] Linking CXX static library libxnnpack_backend.a 2025-06-05T23:24:06.6106438Z [100%] Built target xnnpack_backend 2025-06-05T23:24:06.6107119Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_fallback.cpp.o 2025-06-05T23:24:06.6108057Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_fast_hadamard_transform.cpp.o 2025-06-05T23:24:06.6109024Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_update_cache.cpp.o 2025-06-05T23:24:06.6109883Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_sdpa.cpp.o 2025-06-05T23:24:06.6110859Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/spinquant/fast_hadamard_transform.cpp.o 2025-06-05T23:24:06.6111935Z [100%] Building C object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/spinquant/third-party/FFHT/fht_neon.c.o 2025-06-05T23:24:06.6112730Z [100%] Linking CXX static library libcustom_ops.a 2025-06-05T23:24:06.6113104Z [100%] Built target custom_ops 2025-06-05T23:24:06.6113801Z [100%] Building CXX object CMakeFiles/executor_runner.dir/examples/portable/executor_runner/executor_runner.cpp.o 2025-06-05T23:24:06.6114800Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/data_loader/file_data_loader.cpp.o 2025-06-05T23:24:06.6115840Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:24:06.6116714Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs.cpp.o 2025-06-05T23:24:06.6117667Z [100%] Building CXX object CMakeFiles/executor_runner.dir/runtime/executor/test/test_backend_compiler_lib.cpp.o 2025-06-05T23:24:06.6118637Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs_portable.cpp.o 2025-06-05T23:24:06.6119334Z [100%] Linking CXX executable executor_runner 2025-06-05T23:24:06.6119704Z [100%] Built target executor_runner 2025-06-05T23:24:06.6120034Z Install the project... 2025-06-05T23:24:06.6120325Z -- Install configuration: "Release" 2025-06-05T23:24:06.6120791Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libflatccrt.a 2025-06-05T23:24:06.6121432Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/fxdiv.h 2025-06-05T23:24:06.6122138Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/share/cpuinfo/cpuinfo-config.cmake 2025-06-05T23:24:06.6122855Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libcpuinfo.a 2025-06-05T23:24:06.6123489Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/cpuinfo.h 2025-06-05T23:24:06.6124196Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/share/cpuinfo/cpuinfo-targets.cmake 2025-06-05T23:24:06.6125041Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/share/cpuinfo/cpuinfo-targets-release.cmake 2025-06-05T23:24:06.6125842Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/pkgconfig/libcpuinfo.pc 2025-06-05T23:24:08.1809449Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/pthreadpool.h 2025-06-05T23:24:08.1810396Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libpthreadpool.a 2025-06-05T23:24:08.1811362Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/liboptimized_portable_kernels.a 2025-06-05T23:24:08.1812395Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libportable_kernels.a 2025-06-05T23:24:08.1813248Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libportable_ops_lib.a 2025-06-05T23:24:08.1814251Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/kernels/portable/Functions.h 2025-06-05T23:24:08.1815305Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/kernels/portable/NativeFunctions.h 2025-06-05T23:24:08.1816398Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libeigen_blas.a 2025-06-05T23:24:08.1817885Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libcpublas.a 2025-06-05T23:24:08.1818785Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/liboptimized_kernels.a 2025-06-05T23:24:08.1819660Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/liboptimized_ops_lib.a 2025-06-05T23:24:08.1820618Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/kernels/optimized/Functions.h 2025-06-05T23:24:08.1821647Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/kernels/optimized/NativeFunctions.h 2025-06-05T23:24:08.1822522Z -- Up-to-date: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libcpublas.a 2025-06-05T23:24:08.1823383Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/liboptimized_native_cpu_ops_lib.a 2025-06-05T23:24:08.1824322Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/Functions.h 2025-06-05T23:24:08.1825046Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/NativeFunctions.h 2025-06-05T23:24:08.1826012Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core 2025-06-05T23:24:08.1826932Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/array_ref.h 2025-06-05T23:24:08.1828039Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/data_loader.h 2025-06-05T23:24:08.1828957Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/defines.h 2025-06-05T23:24:08.1829844Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/error.h 2025-06-05T23:24:08.1830813Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/evalue.h 2025-06-05T23:24:08.1831814Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/event_tracer.h 2025-06-05T23:24:08.1832999Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/event_tracer_hooks.h 2025-06-05T23:24:08.1834217Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/event_tracer_hooks_delegate.h 2025-06-05T23:24:08.1835321Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten 2025-06-05T23:24:08.1836420Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten/exec_aten.h 2025-06-05T23:24:08.1837633Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:24:08.1838800Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h 2025-06-05T23:24:08.1840037Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h 2025-06-05T23:24:08.1841236Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten/testing_util/test 2025-06-05T23:24:08.1842294Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:24:08.1843385Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten/util/dim_order_util.h 2025-06-05T23:24:08.1844561Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h 2025-06-05T23:24:08.1845803Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h 2025-06-05T23:24:08.1847049Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h 2025-06-05T23:24:08.1848309Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten/util/tensor_util.h 2025-06-05T23:24:08.1849537Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/exec_aten/util/test 2025-06-05T23:24:08.1850599Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/freeable_buffer.h 2025-06-05T23:24:08.1851786Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/function_ref.h 2025-06-05T23:24:08.1852897Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/hierarchical_allocator.h 2025-06-05T23:24:08.1853938Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/memory_allocator.h 2025-06-05T23:24:08.1855202Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/named_data_map.h 2025-06-05T23:24:08.1856368Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type 2025-06-05T23:24:08.1857560Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/bfloat16.h 2025-06-05T23:24:08.1858843Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/bfloat16_math.h 2025-06-05T23:24:08.1860075Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/bits_types.h 2025-06-05T23:24:08.1863949Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:24:08.1865505Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:24:08.1866715Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:24:08.1867938Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h 2025-06-05T23:24:08.1869134Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h 2025-06-05T23:24:08.1870375Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:24:08.1871475Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h 2025-06-05T23:24:08.1872666Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h 2025-06-05T23:24:08.1873977Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h 2025-06-05T23:24:08.1875108Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h 2025-06-05T23:24:08.1876205Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h 2025-06-05T23:24:08.1877362Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h 2025-06-05T23:24:08.1878531Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h 2025-06-05T23:24:08.1879638Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h 2025-06-05T23:24:08.1880777Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h 2025-06-05T23:24:08.1881931Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h 2025-06-05T23:24:08.1883237Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h 2025-06-05T23:24:08.1884414Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h 2025-06-05T23:24:08.1885463Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/complex.h 2025-06-05T23:24:08.1886463Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/device.h 2025-06-05T23:24:08.1887432Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/half.h 2025-06-05T23:24:08.1888426Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/optional.h 2025-06-05T23:24:08.1889505Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/qint_types.h 2025-06-05T23:24:08.4581051Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/scalar.h 2025-06-05T23:24:08.4582710Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/scalar_type.h 2025-06-05T23:24:08.4584057Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/string_view.h 2025-06-05T23:24:08.4585083Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/tensor.h 2025-06-05T23:24:08.4586321Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/tensor_impl.h 2025-06-05T23:24:08.4587373Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/tensor_options.h 2025-06-05T23:24:08.4588389Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/portable_type/test 2025-06-05T23:24:08.4589277Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/result.h 2025-06-05T23:24:08.4590110Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/span.h 2025-06-05T23:24:08.4590927Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/tag.h 2025-06-05T23:24:08.4591768Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/tensor_layout.h 2025-06-05T23:24:08.4592720Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/tensor_shape_dynamism.h 2025-06-05T23:24:08.4593611Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/core/test 2025-06-05T23:24:08.4594402Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/kernel 2025-06-05T23:24:08.4595270Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/kernel/kernel_includes.h 2025-06-05T23:24:08.4596247Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/kernel/kernel_runtime_context.h 2025-06-05T23:24:08.4597251Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/kernel/operator_registry.h 2025-06-05T23:24:08.4598141Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/kernel/test 2025-06-05T23:24:08.4599020Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/kernel/test/test_util.h 2025-06-05T23:24:08.4600017Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/kernel/thread_parallel_interface.h 2025-06-05T23:24:08.4600932Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform 2025-06-05T23:24:08.4601763Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/abort.h 2025-06-05T23:24:08.4602693Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/assert.h 2025-06-05T23:24:08.4603574Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/clock.h 2025-06-05T23:24:08.4604488Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/compat_unistd.h 2025-06-05T23:24:08.4605405Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/compiler.h 2025-06-05T23:24:08.4606295Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/default 2025-06-05T23:24:08.4607147Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/log.h 2025-06-05T23:24:08.4608072Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/platform.h 2025-06-05T23:24:08.4608972Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/profiler.h 2025-06-05T23:24:08.4609857Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/runtime.h 2025-06-05T23:24:08.4610781Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/system.h 2025-06-05T23:24:08.4611637Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/test 2025-06-05T23:24:08.4612588Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/test/pal_spy.h 2025-06-05T23:24:08.4613568Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/test/stub_platform.h 2025-06-05T23:24:08.4614502Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/runtime/platform/types.h 2025-06-05T23:24:08.4615364Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/kernel_util 2025-06-05T23:24:08.4616360Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h 2025-06-05T23:24:08.4617476Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/kernel_util/meta_programming.h 2025-06-05T23:24:08.4618443Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/kernel_util/test 2025-06-05T23:24:08.4619364Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/kernel_util/type_list.h 2025-06-05T23:24:08.4620251Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/tensor 2025-06-05T23:24:08.4621080Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/tensor/tensor.h 2025-06-05T23:24:08.4622009Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/tensor/tensor_accessor.h 2025-06-05T23:24:08.4622960Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/tensor/tensor_ptr.h 2025-06-05T23:24:08.4623906Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/tensor/tensor_ptr_maker.h 2025-06-05T23:24:08.4624820Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/tensor/test 2025-06-05T23:24:08.4625740Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/threadpool 2025-06-05T23:24:08.4626660Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/threadpool/cpuinfo_utils.h 2025-06-05T23:24:08.4627606Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/threadpool/test 2025-06-05T23:24:08.4628526Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/threadpool/threadpool.h 2025-06-05T23:24:08.4629579Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/extension/threadpool/threadpool_guard.h 2025-06-05T23:24:08.4630430Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libexecutorch.a 2025-06-05T23:24:08.4631100Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libexecutorch_core.a 2025-06-05T23:24:08.4631896Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/cmake/ExecuTorch/executorch-config.cmake 2025-06-05T23:24:08.4632650Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libXNNPACK.a 2025-06-05T23:24:08.4633284Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/xnnpack.h 2025-06-05T23:24:08.4633956Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/experiments-config.h 2025-06-05T23:24:08.4634721Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libmicrokernels-prod.a 2025-06-05T23:24:08.4635440Z -- Up-to-date: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libmicrokernels-prod.a 2025-06-05T23:24:08.4636126Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libxnnpack_backend.a 2025-06-05T23:24:08.4636788Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libetdump.a 2025-06-05T23:24:08.4637468Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libbundled_program.a 2025-06-05T23:24:08.4638194Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libextension_data_loader.a 2025-06-05T23:24:08.4639015Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libextension_flat_tensor.a 2025-06-05T23:24:08.4639739Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libextension_module.a 2025-06-05T23:24:08.4640472Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libextension_module_static.a 2025-06-05T23:24:08.4641217Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libextension_runner_util.a 2025-06-05T23:24:08.4641942Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libextension_tensor.a 2025-06-05T23:24:08.4642670Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libextension_threadpool.a 2025-06-05T23:24:08.4643390Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libextension_training.a 2025-06-05T23:24:08.4644081Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libcustom_ops.a 2025-06-05T23:24:08.4644759Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libquantized_kernels.a 2025-06-05T23:24:08.4645472Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/lib/libquantized_ops_lib.a 2025-06-05T23:24:08.4646277Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/kernels/quantized/Functions.h 2025-06-05T23:24:08.4647247Z -- Installing: /pytorch/executorch/cmake-out-android-arm64-v8a/include/executorch/kernels/quantized/NativeFunctions.h 2025-06-05T23:24:08.7708933Z + cmake extension/android -DCMAKE_TOOLCHAIN_FILE=/opt/ndk/build/cmake/android.toolchain.cmake -DANDROID_ABI=arm64-v8a -DANDROID_PLATFORM=android-26 -DBUILD_TESTING=OFF -DCMAKE_INSTALL_PREFIX=cmake-out-android-arm64-v8a -DEXECUTORCH_ENABLE_LOGGING=ON -DEXECUTORCH_LOG_LEVEL=Info -DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=BOTH -DEXECUTORCH_ANDROID_PROFILING=OFF -DNEURON_BUFFER_ALLOCATOR_LIB= -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON -DEXECUTORCH_BUILD_LLAMA_JNI=ON -DSUPPORT_REGEX_LOOKAHEAD=ON -DCMAKE_BUILD_TYPE=Release -Bcmake-out-android-arm64-v8a/extension/android 2025-06-05T23:24:08.7712035Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:08.7712756Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:08.7713168Z CMake. 2025-06-05T23:24:08.7713295Z 2025-06-05T23:24:08.7713546Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:08.7714282Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:08.7714750Z to work with policies introduced by or earlier. 2025-06-05T23:24:08.7715115Z Call Stack (most recent call first): 2025-06-05T23:24:08.7715817Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:146 (include) 2025-06-05T23:24:08.7716510Z CMakeLists.txt:9 (project) 2025-06-05T23:24:08.7716687Z 2025-06-05T23:24:08.7716810Z  2025-06-05T23:24:08.7717422Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:08.7718164Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:08.7718563Z CMake. 2025-06-05T23:24:08.7718745Z 2025-06-05T23:24:08.7718963Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:08.7719516Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:08.7719988Z to work with policies introduced by or earlier. 2025-06-05T23:24:08.7720362Z Call Stack (most recent call first): 2025-06-05T23:24:08.7720747Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:08.7721620Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:146 (include) 2025-06-05T23:24:08.7722328Z CMakeLists.txt:9 (project) 2025-06-05T23:24:08.7722504Z 2025-06-05T23:24:08.7722608Z  2025-06-05T23:24:08.7723260Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:08.7723974Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:08.7724382Z CMake. 2025-06-05T23:24:08.7724492Z 2025-06-05T23:24:08.7724728Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:08.7725268Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:08.7725757Z to work with policies introduced by or earlier. 2025-06-05T23:24:08.7726110Z Call Stack (most recent call first): 2025-06-05T23:24:08.7726762Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:08.7727424Z CMakeLists.txt:9 (project) 2025-06-05T23:24:08.7727601Z 2025-06-05T23:24:08.7727702Z  2025-06-05T23:24:08.7727953Z -- The C compiler identification is Clang 18.0.2 2025-06-05T23:24:08.7728321Z -- The CXX compiler identification is Clang 18.0.2 2025-06-05T23:24:08.7728979Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:08.7729612Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:08.7730026Z CMake. 2025-06-05T23:24:08.7730133Z 2025-06-05T23:24:08.7730364Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:08.7730899Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:08.7731374Z to work with policies introduced by or earlier. 2025-06-05T23:24:08.7731726Z Call Stack (most recent call first): 2025-06-05T23:24:08.7732418Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:08.7733492Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:08.7734549Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:08.7735225Z CMakeLists.txt:9 (project) 2025-06-05T23:24:08.7735406Z 2025-06-05T23:24:08.7735505Z  2025-06-05T23:24:08.7735714Z -- Detecting C compiler ABI info 2025-06-05T23:24:08.7736362Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:08.7737117Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:08.7737515Z CMake. 2025-06-05T23:24:08.7737634Z 2025-06-05T23:24:08.7737850Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:08.7738402Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:08.7738869Z to work with policies introduced by or earlier. 2025-06-05T23:24:08.7739231Z Call Stack (most recent call first): 2025-06-05T23:24:08.7739864Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:08.7740981Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-x4TJK3/CMakeLists.txt:2 (project) 2025-06-05T23:24:08.7741682Z 2025-06-05T23:24:08.7741796Z  2025-06-05T23:24:08.7742400Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:08.7743147Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:08.7743545Z CMake. 2025-06-05T23:24:08.7743665Z 2025-06-05T23:24:08.7743881Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:08.7744453Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:08.7744935Z to work with policies introduced by or earlier. 2025-06-05T23:24:08.7745294Z Call Stack (most recent call first): 2025-06-05T23:24:08.7745824Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:08.7746565Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:08.7747662Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-x4TJK3/CMakeLists.txt:2 (project) 2025-06-05T23:24:08.7748340Z 2025-06-05T23:24:08.7748450Z  2025-06-05T23:24:08.7748961Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:08.7749594Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:08.7750007Z CMake. 2025-06-05T23:24:08.7750117Z 2025-06-05T23:24:08.7750336Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:08.7750888Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:08.7751351Z to work with policies introduced by or earlier. 2025-06-05T23:24:08.7751714Z Call Stack (most recent call first): 2025-06-05T23:24:08.7752411Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:08.7753487Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:08.7754547Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:08.7755666Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-x4TJK3/CMakeLists.txt:2 (project) 2025-06-05T23:24:08.7756345Z 2025-06-05T23:24:08.7756448Z  2025-06-05T23:24:08.7756674Z -- Detecting C compiler ABI info - done 2025-06-05T23:24:08.7757208Z -- Check for working C compiler: /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang - skipped 2025-06-05T23:24:08.7757842Z -- Detecting C compile features 2025-06-05T23:24:08.7758197Z -- Detecting C compile features - done 2025-06-05T23:24:08.7758523Z -- Detecting CXX compiler ABI info 2025-06-05T23:24:08.7759190Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:08.7759898Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:08.7760367Z CMake. 2025-06-05T23:24:08.7760477Z 2025-06-05T23:24:08.7760699Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:08.7761251Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:08.7761718Z to work with policies introduced by or earlier. 2025-06-05T23:24:08.7762083Z Call Stack (most recent call first): 2025-06-05T23:24:08.7762714Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:08.7763821Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-kru0vV/CMakeLists.txt:2 (project) 2025-06-05T23:24:08.7764482Z 2025-06-05T23:24:08.7764592Z  2025-06-05T23:24:08.7765515Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:08.7766297Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:08.7766704Z CMake. 2025-06-05T23:24:08.7766828Z 2025-06-05T23:24:08.7767045Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:08.7767593Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:08.7768134Z to work with policies introduced by or earlier. 2025-06-05T23:24:08.7768499Z Call Stack (most recent call first): 2025-06-05T23:24:08.7768872Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:08.7769653Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:08.7770751Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-kru0vV/CMakeLists.txt:2 (project) 2025-06-05T23:24:08.7771432Z 2025-06-05T23:24:08.7771550Z  2025-06-05T23:24:08.7772057Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:08.7772698Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:08.7773112Z CMake. 2025-06-05T23:24:08.7773220Z 2025-06-05T23:24:08.7773435Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:08.7773986Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:08.7774446Z to work with policies introduced by or earlier. 2025-06-05T23:24:08.7774805Z Call Stack (most recent call first): 2025-06-05T23:24:08.7775500Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:09.1977296Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:09.1978595Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:09.1979769Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-kru0vV/CMakeLists.txt:2 (project) 2025-06-05T23:24:09.1980440Z 2025-06-05T23:24:09.1980704Z  2025-06-05T23:24:09.1980950Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:24:09.1981617Z -- Check for working CXX compiler: /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ - skipped 2025-06-05T23:24:09.1982246Z -- Detecting CXX compile features 2025-06-05T23:24:09.1982608Z -- Detecting CXX compile features - done 2025-06-05T23:24:09.1983079Z CMake Warning (dev) at CMakeLists.txt:64 (find_package): 2025-06-05T23:24:09.1983602Z Policy CMP0144 is not set: find_package uses upper-case _ROOT 2025-06-05T23:24:09.1984162Z variables. Run "cmake --help-policy CMP0144" for policy details. Use the 2025-06-05T23:24:09.1984692Z cmake_policy command to set the policy and suppress this warning. 2025-06-05T23:24:09.1985150Z 2025-06-05T23:24:09.1985281Z CMake variable EXECUTORCH_ROOT is set to: 2025-06-05T23:24:09.1985588Z 2025-06-05T23:24:09.1985714Z /pytorch/executorch/extension/android/../.. 2025-06-05T23:24:09.1985942Z 2025-06-05T23:24:09.1986173Z For compatibility, find_package is ignoring the variable, but code in a 2025-06-05T23:24:09.1986606Z .cmake module might still use it. 2025-06-05T23:24:09.1987012Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-05T23:24:09.1987424Z  2025-06-05T23:24:09.1987682Z coreml_util library is not found. 2025-06-05T23:24:09.1988157Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:24:09.1988654Z coreml_inmemoryfs library is not found. 2025-06-05T23:24:09.1989135Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:24:09.1989673Z coremldelegate library is not found. 2025-06-05T23:24:09.1990137Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:24:09.1990600Z mpsdelegate library is not found. 2025-06-05T23:24:09.1991053Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:24:09.1991513Z neuron_backend library is not found. 2025-06-05T23:24:09.1991974Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:24:09.1992524Z qnn_executorch_backend library is not found. 2025-06-05T23:24:09.1993018Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:24:09.1993470Z kleidiai library is not found. 2025-06-05T23:24:09.1994078Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:24:09.1994539Z vulkan_backend library is not found. 2025-06-05T23:24:09.1995011Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:24:09.1995485Z quantized_ops_aot_lib library is not found. 2025-06-05T23:24:09.1995985Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:24:09.1996792Z -- executorch: Using source file list /pytorch/executorch/cmake-out-android-arm64-v8a/extension/llm/runner/../../../executorch_srcs.cmake 2025-06-05T23:24:09.1997968Z -- executorch: Using source file list /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/../../../../executorch_srcs.cmake 2025-06-05T23:24:09.1998770Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX17 2025-06-05T23:24:09.1999467Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:09.2000183Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.2000583Z CMake. 2025-06-05T23:24:09.2000705Z 2025-06-05T23:24:09.2000922Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.2001472Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.2001937Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.2002299Z Call Stack (most recent call first): 2025-06-05T23:24:09.2002930Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:09.2004041Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-02hDeC/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.2004706Z 2025-06-05T23:24:09.2004816Z  2025-06-05T23:24:09.2005418Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:09.2006153Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.2006549Z CMake. 2025-06-05T23:24:09.2006670Z 2025-06-05T23:24:09.2006890Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.2007423Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.2007942Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.2008301Z Call Stack (most recent call first): 2025-06-05T23:24:09.2008672Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:09.2009407Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:09.2010501Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-02hDeC/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.2011177Z 2025-06-05T23:24:09.2011273Z  2025-06-05T23:24:09.2011767Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:09.2012408Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.2012856Z CMake. 2025-06-05T23:24:09.2012962Z 2025-06-05T23:24:09.2013184Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.2013733Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.2014194Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.2014552Z Call Stack (most recent call first): 2025-06-05T23:24:09.2015266Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:09.2016364Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:09.2017481Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:09.2018612Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-02hDeC/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.2019287Z 2025-06-05T23:24:09.2019385Z  2025-06-05T23:24:09.2019644Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX17 - Success 2025-06-05T23:24:09.2020065Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX20 2025-06-05T23:24:09.2020765Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:09.2021474Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.2021895Z CMake. 2025-06-05T23:24:09.2022006Z 2025-06-05T23:24:09.2022223Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.2022776Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.2023245Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.2023613Z Call Stack (most recent call first): 2025-06-05T23:24:09.2024259Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:09.2025457Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-nrmAxO/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.2026126Z 2025-06-05T23:24:09.2026243Z  2025-06-05T23:24:09.2026846Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:09.2027591Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.2027997Z CMake. 2025-06-05T23:24:09.2028121Z 2025-06-05T23:24:09.2028340Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.2028891Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.2029354Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.2029780Z Call Stack (most recent call first): 2025-06-05T23:24:09.2030237Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:09.2031116Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:09.2032367Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-nrmAxO/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.2033031Z 2025-06-05T23:24:09.2033155Z  2025-06-05T23:24:09.2033660Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:09.2034301Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.2034714Z CMake. 2025-06-05T23:24:09.2034823Z 2025-06-05T23:24:09.2035044Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.2035593Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.2036066Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.2036458Z Call Stack (most recent call first): 2025-06-05T23:24:09.2037149Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:09.2038236Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:09.2039318Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:09.2040494Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-nrmAxO/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.2041159Z 2025-06-05T23:24:09.2041256Z  2025-06-05T23:24:09.2041574Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX20 - Failed 2025-06-05T23:24:09.2041960Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:24:09.2042654Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:09.2043355Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.2043776Z CMake. 2025-06-05T23:24:09.2043885Z 2025-06-05T23:24:09.2044119Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.2044656Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.2045129Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.2045482Z Call Stack (most recent call first): 2025-06-05T23:24:09.4805018Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:09.4806232Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-yTwcvD/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.4806907Z 2025-06-05T23:24:09.4807159Z  2025-06-05T23:24:09.4807788Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:09.4808536Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.4808969Z CMake. 2025-06-05T23:24:09.4809082Z 2025-06-05T23:24:09.4809303Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.4809991Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.4810474Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.4810832Z Call Stack (most recent call first): 2025-06-05T23:24:09.4811215Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:09.4811936Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:09.4813125Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-yTwcvD/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.4813794Z 2025-06-05T23:24:09.4813947Z  2025-06-05T23:24:09.4814443Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:09.4815264Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.4815682Z CMake. 2025-06-05T23:24:09.4815791Z 2025-06-05T23:24:09.4816013Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.4816573Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.4817235Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.4817603Z Call Stack (most recent call first): 2025-06-05T23:24:09.4818381Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:09.4819573Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:09.4820703Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:09.4821833Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-yTwcvD/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.4822515Z 2025-06-05T23:24:09.4822634Z  2025-06-05T23:24:09.4822882Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2025-06-05T23:24:09.4823317Z -- Looking for pthread_create in pthreads 2025-06-05T23:24:09.4824018Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:09.4824714Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.4825223Z CMake. 2025-06-05T23:24:09.4825400Z 2025-06-05T23:24:09.4825620Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.4826168Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.4826636Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.4827003Z Call Stack (most recent call first): 2025-06-05T23:24:09.4827653Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:09.4828867Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-EjKlgE/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.4829543Z 2025-06-05T23:24:09.4829654Z  2025-06-05T23:24:09.4830258Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:09.4831230Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.4831661Z CMake. 2025-06-05T23:24:09.4831771Z 2025-06-05T23:24:09.4831988Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.4832548Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.4833016Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.4833385Z Call Stack (most recent call first): 2025-06-05T23:24:09.4833757Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:09.4834487Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:09.4835665Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-EjKlgE/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.4836394Z 2025-06-05T23:24:09.4836503Z  2025-06-05T23:24:09.4837009Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:09.4837643Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.4838236Z CMake. 2025-06-05T23:24:09.4838425Z 2025-06-05T23:24:09.4838660Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.4839200Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.4839758Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.4840108Z Call Stack (most recent call first): 2025-06-05T23:24:09.4840805Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:09.4841882Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:09.4842952Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:09.4844516Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-EjKlgE/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.4845232Z 2025-06-05T23:24:09.4845365Z  2025-06-05T23:24:09.4845751Z -- Looking for pthread_create in pthreads - not found 2025-06-05T23:24:09.4846122Z -- Looking for pthread_create in pthread 2025-06-05T23:24:09.4846827Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:09.4847541Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.4847951Z CMake. 2025-06-05T23:24:09.4848061Z 2025-06-05T23:24:09.4848340Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.4848885Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.4849364Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.4849759Z Call Stack (most recent call first): 2025-06-05T23:24:09.4850403Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:09.4851688Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-4Tupta/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.4852420Z 2025-06-05T23:24:09.4852538Z  2025-06-05T23:24:09.4853217Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:09.4853949Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.4854369Z CMake. 2025-06-05T23:24:09.4854478Z 2025-06-05T23:24:09.4854703Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.4855258Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.4855736Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.4856084Z Call Stack (most recent call first): 2025-06-05T23:24:09.4856458Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:09.4857171Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:09.4858276Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-4Tupta/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.4858939Z 2025-06-05T23:24:09.4859051Z  2025-06-05T23:24:09.4859540Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:09.4860184Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.4860587Z CMake. 2025-06-05T23:24:09.4860707Z 2025-06-05T23:24:09.4860925Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.4861468Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.4861944Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.4862315Z Call Stack (most recent call first): 2025-06-05T23:24:09.4863004Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:09.4864137Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:09.4865455Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:09.4866606Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-4Tupta/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.4867276Z 2025-06-05T23:24:09.4867397Z  2025-06-05T23:24:09.4867644Z -- Looking for pthread_create in pthread - not found 2025-06-05T23:24:09.4868016Z -- Check if compiler accepts -pthread 2025-06-05T23:24:09.4868685Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:09.4869391Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.4869890Z CMake. 2025-06-05T23:24:09.4870012Z 2025-06-05T23:24:09.4870231Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.4870787Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:09.4871258Z to work with policies introduced by or earlier. 2025-06-05T23:24:09.4871624Z Call Stack (most recent call first): 2025-06-05T23:24:09.4872307Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:09.4873421Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-hhEaDl/CMakeLists.txt:5 (project) 2025-06-05T23:24:09.4874179Z 2025-06-05T23:24:09.4874356Z  2025-06-05T23:24:09.4874970Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:09.4875720Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:09.4876123Z CMake. 2025-06-05T23:24:09.4876247Z 2025-06-05T23:24:09.4876472Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:09.4877073Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.1781961Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.1782690Z Call Stack (most recent call first): 2025-06-05T23:24:10.1783503Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:10.1784898Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.1787184Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-hhEaDl/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.1788511Z 2025-06-05T23:24:10.1788887Z  2025-06-05T23:24:10.1789872Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:10.1791148Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.1791951Z CMake. 2025-06-05T23:24:10.1792157Z 2025-06-05T23:24:10.1792574Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.1793592Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.1794502Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.1795195Z Call Stack (most recent call first): 2025-06-05T23:24:10.1796561Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:10.1798742Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:10.1800847Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:10.1803133Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-hhEaDl/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.1804657Z 2025-06-05T23:24:10.1804907Z  2025-06-05T23:24:10.1805312Z -- Check if compiler accepts -pthread - yes 2025-06-05T23:24:10.1805911Z -- Found Threads: TRUE 2025-06-05T23:24:10.1807544Z CMake Deprecation Warning at /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/CMakeLists.txt:15 (cmake_minimum_required): 2025-06-05T23:24:10.1809318Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.1810090Z CMake. 2025-06-05T23:24:10.1810292Z 2025-06-05T23:24:10.1810714Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.1811770Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.1812637Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.1813257Z 2025-06-05T23:24:10.1813496Z  2025-06-05T23:24:10.1813829Z -- VERSION: 0.2.1 2025-06-05T23:24:10.1814302Z -- Not Found TCMalloc: TCMALLOC_LIB-NOTFOUND 2025-06-05T23:24:10.1815042Z -- Could NOT find BZip2 (missing: BZIP2_LIBRARIES BZIP2_INCLUDE_DIR) 2025-06-05T23:24:10.1816599Z -- Found ZLIB: /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/26/libz.so (found version "1.3.0.1") 2025-06-05T23:24:10.1818299Z -- Could NOT find Readline (missing: READLINE_INCLUDE_DIR READLINE_LIBRARY) 2025-06-05T23:24:10.1819402Z -- Could NOT find Editline (missing: EDITLINE_INCLUDE_DIR EDITLINE_LIBRARY) 2025-06-05T23:24:10.1820220Z -- Looking for assert.h 2025-06-05T23:24:10.1821554Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.1822930Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.1823719Z CMake. 2025-06-05T23:24:10.1823934Z 2025-06-05T23:24:10.1824348Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.1825477Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.1826407Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.1827065Z Call Stack (most recent call first): 2025-06-05T23:24:10.1828278Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.1830490Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-cKbm9T/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.1831799Z 2025-06-05T23:24:10.1832013Z  2025-06-05T23:24:10.1833189Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.1834636Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.1835429Z CMake. 2025-06-05T23:24:10.1835634Z 2025-06-05T23:24:10.1836052Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.1837102Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.1838030Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.1838695Z Call Stack (most recent call first): 2025-06-05T23:24:10.1839408Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:10.1840825Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.1842932Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-cKbm9T/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.1844227Z 2025-06-05T23:24:10.1844449Z  2025-06-05T23:24:10.1845389Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:10.1846631Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.1847386Z CMake. 2025-06-05T23:24:10.1847597Z 2025-06-05T23:24:10.1848095Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.1849123Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.1849962Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.1850622Z Call Stack (most recent call first): 2025-06-05T23:24:10.1852076Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:10.1854193Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:10.1856146Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:10.1858373Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-cKbm9T/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.1859693Z 2025-06-05T23:24:10.1859931Z  2025-06-05T23:24:10.1860295Z -- Looking for assert.h - found 2025-06-05T23:24:10.1860806Z -- Looking for dirent.h 2025-06-05T23:24:10.1861981Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.1863433Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.1864214Z CMake. 2025-06-05T23:24:10.1864416Z 2025-06-05T23:24:10.1864824Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.1866179Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.1867005Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.1867592Z Call Stack (most recent call first): 2025-06-05T23:24:10.1868764Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.1870926Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-EoehGW/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.1872229Z 2025-06-05T23:24:10.1872472Z  2025-06-05T23:24:10.1873617Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.1874973Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.1875745Z CMake. 2025-06-05T23:24:10.1875966Z 2025-06-05T23:24:10.1876368Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.1877438Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.1878328Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.1879003Z Call Stack (most recent call first): 2025-06-05T23:24:10.1879679Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:10.1881042Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.1883221Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-EoehGW/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.1884577Z 2025-06-05T23:24:10.1884800Z  2025-06-05T23:24:10.1885750Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:10.1886791Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.1887362Z CMake. 2025-06-05T23:24:10.1887506Z 2025-06-05T23:24:10.1887798Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.1888524Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.1889167Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.1889642Z Call Stack (most recent call first): 2025-06-05T23:24:10.1890739Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:10.1892048Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:10.1893112Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:10.1894255Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-EoehGW/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.1894921Z 2025-06-05T23:24:10.1895061Z  2025-06-05T23:24:10.1895280Z -- Looking for dirent.h - found 2025-06-05T23:24:10.1895552Z -- Looking for sys/stat.h 2025-06-05T23:24:10.1896305Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.1897101Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.1897520Z CMake. 2025-06-05T23:24:10.1897628Z 2025-06-05T23:24:10.1897858Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.1898394Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.1898872Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.1899270Z Call Stack (most recent call first): 2025-06-05T23:24:10.1899914Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.1901052Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-7yW2fB/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.1901729Z 2025-06-05T23:24:10.1901837Z  2025-06-05T23:24:10.1902449Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.5432581Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.5433380Z CMake. 2025-06-05T23:24:10.5433511Z 2025-06-05T23:24:10.5433734Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.5434334Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.5443975Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.5444602Z Call Stack (most recent call first): 2025-06-05T23:24:10.5445002Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:10.5445746Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.5446865Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-7yW2fB/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.5447539Z 2025-06-05T23:24:10.5447829Z  2025-06-05T23:24:10.5448335Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:10.5448999Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.5449407Z CMake. 2025-06-05T23:24:10.5449533Z 2025-06-05T23:24:10.5449754Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.5450297Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.5450776Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.5451141Z Call Stack (most recent call first): 2025-06-05T23:24:10.5451829Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:10.5452918Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:10.5453970Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:10.5455291Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-7yW2fB/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.5455952Z 2025-06-05T23:24:10.5456071Z  2025-06-05T23:24:10.5456278Z -- Looking for sys/stat.h - found 2025-06-05T23:24:10.5456577Z -- Looking for sys/types.h 2025-06-05T23:24:10.5457210Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.5457920Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.5458318Z CMake. 2025-06-05T23:24:10.5458434Z 2025-06-05T23:24:10.5458666Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.5459200Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.5459737Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.5460086Z Call Stack (most recent call first): 2025-06-05T23:24:10.5460735Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.5461850Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-pR8CLS/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.5462515Z 2025-06-05T23:24:10.5462615Z  2025-06-05T23:24:10.5463287Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.5464016Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.5464485Z CMake. 2025-06-05T23:24:10.5464597Z 2025-06-05T23:24:10.5464828Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.5465803Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.5466291Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.5466642Z Call Stack (most recent call first): 2025-06-05T23:24:10.5467032Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:10.5467749Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.5468865Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-pR8CLS/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.5469527Z 2025-06-05T23:24:10.5469658Z  2025-06-05T23:24:10.5470150Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:10.5470795Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.5471194Z CMake. 2025-06-05T23:24:10.5471312Z 2025-06-05T23:24:10.5471528Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.5472064Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.5472538Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.5472896Z Call Stack (most recent call first): 2025-06-05T23:24:10.5473577Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:10.5474664Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:10.5475709Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:10.5476848Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-pR8CLS/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.5477514Z 2025-06-05T23:24:10.5477623Z  2025-06-05T23:24:10.5477833Z -- Looking for sys/types.h - found 2025-06-05T23:24:10.5478128Z -- Looking for unistd.h 2025-06-05T23:24:10.5478740Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.5479550Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.5479949Z CMake. 2025-06-05T23:24:10.5480070Z 2025-06-05T23:24:10.5480288Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.5480838Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.5481301Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.5481661Z Call Stack (most recent call first): 2025-06-05T23:24:10.5482294Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.5483403Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-F0ozhl/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.5484113Z 2025-06-05T23:24:10.5484224Z  2025-06-05T23:24:10.5484821Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.5485565Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.5485970Z CMake. 2025-06-05T23:24:10.5486094Z 2025-06-05T23:24:10.5486312Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.5486891Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.5487371Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.5487731Z Call Stack (most recent call first): 2025-06-05T23:24:10.5488167Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:10.5488896Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.5489999Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-F0ozhl/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.5490674Z 2025-06-05T23:24:10.5490773Z  2025-06-05T23:24:10.5491263Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:10.5491910Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.5492324Z CMake. 2025-06-05T23:24:10.5492431Z 2025-06-05T23:24:10.5492650Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.5493198Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.5493662Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.5494020Z Call Stack (most recent call first): 2025-06-05T23:24:10.5494712Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:10.5495785Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:10.5496847Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:10.5497971Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-F0ozhl/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.5498642Z 2025-06-05T23:24:10.5498741Z  2025-06-05T23:24:10.5498949Z -- Looking for unistd.h - found 2025-06-05T23:24:10.5499219Z -- Looking for windows.h 2025-06-05T23:24:10.5499859Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.5500552Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.5500960Z CMake. 2025-06-05T23:24:10.5501071Z 2025-06-05T23:24:10.5501287Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.5501833Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.5502815Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.5503163Z Call Stack (most recent call first): 2025-06-05T23:24:10.5503806Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.5504906Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-zFHc89/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.5505685Z 2025-06-05T23:24:10.5505802Z  2025-06-05T23:24:10.5506408Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.5507157Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.5507625Z CMake. 2025-06-05T23:24:10.5507734Z 2025-06-05T23:24:10.5507953Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.5508499Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.5508967Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.5509333Z Call Stack (most recent call first): 2025-06-05T23:24:10.5509700Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:10.5510469Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.5511579Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-zFHc89/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.5512272Z 2025-06-05T23:24:10.5512370Z  2025-06-05T23:24:10.7969882Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:10.7971162Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.7971954Z CMake. 2025-06-05T23:24:10.7972154Z 2025-06-05T23:24:10.7972635Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.7973693Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.7974578Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.7975249Z Call Stack (most recent call first): 2025-06-05T23:24:10.7976587Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:10.7978661Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:10.7980729Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:10.7982893Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-zFHc89/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.7984217Z 2025-06-05T23:24:10.7984457Z  2025-06-05T23:24:10.7984863Z -- Looking for windows.h - not found 2025-06-05T23:24:10.7985490Z -- Looking for bcopy 2025-06-05T23:24:10.7986677Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.7987976Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.7988762Z CMake. 2025-06-05T23:24:10.7988964Z 2025-06-05T23:24:10.7989374Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.7990436Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.7991345Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.7992008Z Call Stack (most recent call first): 2025-06-05T23:24:10.7993227Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.7994852Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-5dNDTJ/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.7995973Z 2025-06-05T23:24:10.7996154Z  2025-06-05T23:24:10.7996984Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.7998137Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.7998706Z CMake. 2025-06-05T23:24:10.7998817Z 2025-06-05T23:24:10.7999039Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.7999598Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.8000073Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.8000434Z Call Stack (most recent call first): 2025-06-05T23:24:10.8000899Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:10.8001630Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.8002747Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-5dNDTJ/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.8003412Z 2025-06-05T23:24:10.8003526Z  2025-06-05T23:24:10.8004207Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:10.8004914Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.8005334Z CMake. 2025-06-05T23:24:10.8005442Z 2025-06-05T23:24:10.8005723Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.8006262Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.8006741Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.8007093Z Call Stack (most recent call first): 2025-06-05T23:24:10.8007790Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:10.8008865Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:10.8009925Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:10.8011058Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-5dNDTJ/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.8011721Z 2025-06-05T23:24:10.8011827Z  2025-06-05T23:24:10.8012041Z -- Looking for bcopy - found 2025-06-05T23:24:10.8012306Z -- Looking for memfd_create 2025-06-05T23:24:10.8012943Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.8013655Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.8014061Z CMake. 2025-06-05T23:24:10.8014173Z 2025-06-05T23:24:10.8014404Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.8014940Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.8015416Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.8015763Z Call Stack (most recent call first): 2025-06-05T23:24:10.8016405Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.8017510Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-ltI7C6/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.8018172Z 2025-06-05T23:24:10.8018266Z  2025-06-05T23:24:10.8018874Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.8019603Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.8020012Z CMake. 2025-06-05T23:24:10.8020161Z 2025-06-05T23:24:10.8020389Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.8020922Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.8021401Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.8021751Z Call Stack (most recent call first): 2025-06-05T23:24:10.8022133Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:10.8022859Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.8023969Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-ltI7C6/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.8024630Z 2025-06-05T23:24:10.8024772Z  2025-06-05T23:24:10.8025265Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:10.8026014Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.8026419Z CMake. 2025-06-05T23:24:10.8026541Z 2025-06-05T23:24:10.8026760Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.8027299Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.8027816Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.8028175Z Call Stack (most recent call first): 2025-06-05T23:24:10.8028883Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:10.8029970Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:10.8031027Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:10.8032161Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-ltI7C6/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.8032827Z 2025-06-05T23:24:10.8032940Z  2025-06-05T23:24:10.8033146Z -- Looking for memfd_create - not found 2025-06-05T23:24:10.8033451Z -- Looking for memmove 2025-06-05T23:24:10.8034063Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.8034771Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.8035169Z CMake. 2025-06-05T23:24:10.8035292Z 2025-06-05T23:24:10.8035517Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.8036073Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.8036543Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.8036903Z Call Stack (most recent call first): 2025-06-05T23:24:10.8037529Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.8038640Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-OHEzg9/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.8039303Z 2025-06-05T23:24:10.8039408Z  2025-06-05T23:24:10.8040006Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:10.8040741Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.8041141Z CMake. 2025-06-05T23:24:10.8041264Z 2025-06-05T23:24:10.8041481Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.8042245Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.8042924Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.8043334Z Call Stack (most recent call first): 2025-06-05T23:24:10.8043758Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:10.8044495Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:10.8045592Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-OHEzg9/CMakeLists.txt:5 (project) 2025-06-05T23:24:10.8046275Z 2025-06-05T23:24:10.8046387Z  2025-06-05T23:24:10.8046874Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:10.8047643Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:10.8048360Z CMake. 2025-06-05T23:24:10.8048557Z 2025-06-05T23:24:10.8048942Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:10.8050012Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:10.8050876Z to work with policies introduced by or earlier. 2025-06-05T23:24:10.8051521Z Call Stack (most recent call first): 2025-06-05T23:24:10.8052783Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:10.8054537Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:11.2538369Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:11.2539791Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-OHEzg9/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.2540468Z 2025-06-05T23:24:11.2540738Z  2025-06-05T23:24:11.2540959Z -- Looking for memmove - found 2025-06-05T23:24:11.2541256Z -- Looking for secure_getenv 2025-06-05T23:24:11.2542023Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.2542880Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.2543495Z CMake. 2025-06-05T23:24:11.2543648Z 2025-06-05T23:24:11.2543868Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.2544428Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.2544891Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.2545257Z Call Stack (most recent call first): 2025-06-05T23:24:11.2545972Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.2547080Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-zX6JX4/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.2547749Z 2025-06-05T23:24:11.2547878Z  2025-06-05T23:24:11.2548479Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.2549225Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.2549626Z CMake. 2025-06-05T23:24:11.2549751Z 2025-06-05T23:24:11.2549971Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.2550529Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.2550993Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.2551360Z Call Stack (most recent call first): 2025-06-05T23:24:11.2551731Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:11.2552463Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.2553563Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-zX6JX4/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.2554359Z 2025-06-05T23:24:11.2554462Z  2025-06-05T23:24:11.2554973Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:11.2555612Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.2556028Z CMake. 2025-06-05T23:24:11.2556138Z 2025-06-05T23:24:11.2556360Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.2556912Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.2557375Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.2557736Z Call Stack (most recent call first): 2025-06-05T23:24:11.2558424Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:11.2559551Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:11.2560615Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:11.2561739Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-zX6JX4/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.2562414Z 2025-06-05T23:24:11.2562513Z  2025-06-05T23:24:11.2562791Z -- Looking for secure_getenv - not found 2025-06-05T23:24:11.2563088Z -- Looking for strerror 2025-06-05T23:24:11.2563716Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.2564446Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.2564862Z CMake. 2025-06-05T23:24:11.2564967Z 2025-06-05T23:24:11.2565387Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.2565939Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.2566422Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.2566768Z Call Stack (most recent call first): 2025-06-05T23:24:11.2567411Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.2568512Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-GPeJQS/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.2569187Z 2025-06-05T23:24:11.2569295Z  2025-06-05T23:24:11.2569908Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.2570633Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.2571043Z CMake. 2025-06-05T23:24:11.2571152Z 2025-06-05T23:24:11.2571372Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.2571917Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.2572387Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.2572749Z Call Stack (most recent call first): 2025-06-05T23:24:11.2573133Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:11.2573856Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.2574971Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-GPeJQS/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.2575633Z 2025-06-05T23:24:11.2575735Z  2025-06-05T23:24:11.2576244Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:11.2576892Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.2577295Z CMake. 2025-06-05T23:24:11.2577404Z 2025-06-05T23:24:11.2577633Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.2578242Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.2578721Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.2579070Z Call Stack (most recent call first): 2025-06-05T23:24:11.2579769Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:11.2580857Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:11.2581906Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:11.2583042Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-GPeJQS/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.2583757Z 2025-06-05T23:24:11.2583858Z  2025-06-05T23:24:11.2584075Z -- Looking for strerror - found 2025-06-05T23:24:11.2584356Z -- Performing Test HAVE_REALPATH 2025-06-05T23:24:11.2585019Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.2585814Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.2586217Z CMake. 2025-06-05T23:24:11.2586389Z 2025-06-05T23:24:11.2586607Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.2587149Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.2587668Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.2588035Z Call Stack (most recent call first): 2025-06-05T23:24:11.2588661Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.2589764Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-FR4bjo/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.2590597Z 2025-06-05T23:24:11.2590710Z  2025-06-05T23:24:11.2591659Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.2592392Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.2592812Z CMake. 2025-06-05T23:24:11.2592921Z 2025-06-05T23:24:11.2593154Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.2593692Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.2594172Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.2594520Z Call Stack (most recent call first): 2025-06-05T23:24:11.2594895Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:11.2595612Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.2596716Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-FR4bjo/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.2597377Z 2025-06-05T23:24:11.2597488Z  2025-06-05T23:24:11.2597977Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:11.2598621Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.2599019Z CMake. 2025-06-05T23:24:11.2599139Z 2025-06-05T23:24:11.2599354Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.2599901Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.2600364Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.2600725Z Call Stack (most recent call first): 2025-06-05T23:24:11.2601406Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:11.2602556Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:11.2603620Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:11.2604750Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-FR4bjo/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.2605417Z 2025-06-05T23:24:11.2605528Z  2025-06-05T23:24:11.2605753Z -- Performing Test HAVE_REALPATH - Success 2025-06-05T23:24:11.2606116Z -- Performing Test HAVE_ATTRIBUTE_UNINITIALIZED 2025-06-05T23:24:11.2606811Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.2607554Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.2607967Z CMake. 2025-06-05T23:24:11.2608078Z 2025-06-05T23:24:11.2608295Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.2608846Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.5459725Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.5460439Z Call Stack (most recent call first): 2025-06-05T23:24:11.5461282Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.5462461Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-lpGFBr/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.5463148Z 2025-06-05T23:24:11.5463417Z  2025-06-05T23:24:11.5464034Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.5464924Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.5465607Z CMake. 2025-06-05T23:24:11.5465719Z 2025-06-05T23:24:11.5465941Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.5466632Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.5467184Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.5467534Z Call Stack (most recent call first): 2025-06-05T23:24:11.5467915Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:11.5468636Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.5469745Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-lpGFBr/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.5470412Z 2025-06-05T23:24:11.5470539Z  2025-06-05T23:24:11.5471031Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:11.5471679Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.5472081Z CMake. 2025-06-05T23:24:11.5472203Z 2025-06-05T23:24:11.5472422Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.5472959Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.5473436Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.5473795Z Call Stack (most recent call first): 2025-06-05T23:24:11.5474488Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:11.5475571Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:11.5476622Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:11.5477759Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-lpGFBr/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.5478531Z 2025-06-05T23:24:11.5478644Z  2025-06-05T23:24:11.5478914Z -- Performing Test HAVE_ATTRIBUTE_UNINITIALIZED - Success 2025-06-05T23:24:11.5479298Z -- Performing Test HAVE_VISIBILITY 2025-06-05T23:24:11.5479959Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.5480669Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.5481068Z CMake. 2025-06-05T23:24:11.5481193Z 2025-06-05T23:24:11.5481415Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.5481963Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.5482485Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.5482850Z Call Stack (most recent call first): 2025-06-05T23:24:11.5483488Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.5484608Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-uzHHnU/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.5485272Z 2025-06-05T23:24:11.5485372Z  2025-06-05T23:24:11.5486055Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.5486784Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.5487238Z CMake. 2025-06-05T23:24:11.5487353Z 2025-06-05T23:24:11.5487571Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.5488125Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.5488595Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.5488963Z Call Stack (most recent call first): 2025-06-05T23:24:11.5489351Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:11.5490067Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.5491183Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-uzHHnU/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.5491848Z 2025-06-05T23:24:11.5491950Z  2025-06-05T23:24:11.5492465Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:11.5493117Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.5493525Z CMake. 2025-06-05T23:24:11.5493641Z 2025-06-05T23:24:11.5493877Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.5494417Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.5494897Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.5495247Z Call Stack (most recent call first): 2025-06-05T23:24:11.5495938Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:11.5497021Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:11.5498073Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:11.5499212Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-uzHHnU/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.5499879Z 2025-06-05T23:24:11.5499980Z  2025-06-05T23:24:11.5500215Z -- Performing Test HAVE_VISIBILITY - Success 2025-06-05T23:24:11.5500554Z -- Performing Test HAVE_BUILTIN_ASSUME 2025-06-05T23:24:11.5501225Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.5501968Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.5502367Z CMake. 2025-06-05T23:24:11.5502487Z 2025-06-05T23:24:11.5502702Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.5503242Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.5503721Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.5504079Z Call Stack (most recent call first): 2025-06-05T23:24:11.5504708Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.5505918Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-uNa1H6/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.5506619Z 2025-06-05T23:24:11.5506726Z  2025-06-05T23:24:11.5507339Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.5508084Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.5508587Z CMake. 2025-06-05T23:24:11.5508697Z 2025-06-05T23:24:11.5508980Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.5509685Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.5510165Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.5510553Z Call Stack (most recent call first): 2025-06-05T23:24:11.5510935Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:11.5511663Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.5512755Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-uNa1H6/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.5513421Z 2025-06-05T23:24:11.5513548Z  2025-06-05T23:24:11.5514040Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:11.5514684Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.5515084Z CMake. 2025-06-05T23:24:11.5515211Z 2025-06-05T23:24:11.5515429Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.5515978Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.5516445Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.5516806Z Call Stack (most recent call first): 2025-06-05T23:24:11.5517484Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:11.5518568Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:11.5519625Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:11.5520748Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-uNa1H6/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.5521428Z 2025-06-05T23:24:11.5521523Z  2025-06-05T23:24:11.5521754Z -- Performing Test HAVE_BUILTIN_ASSUME - Failed 2025-06-05T23:24:11.5522121Z -- Performing Test HAVE_BUILTIN_MUL_OVERFLOW 2025-06-05T23:24:11.5522807Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.5523510Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.5523922Z CMake. 2025-06-05T23:24:11.5524030Z 2025-06-05T23:24:11.5524249Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.5524835Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.5525298Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.5525660Z Call Stack (most recent call first): 2025-06-05T23:24:11.5526311Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.5527407Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-iszFcP/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.5528072Z 2025-06-05T23:24:11.5528187Z  2025-06-05T23:24:11.5528785Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.5529522Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.5529952Z CMake. 2025-06-05T23:24:11.5530070Z 2025-06-05T23:24:11.5530286Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.8742534Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.8743450Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.8743831Z Call Stack (most recent call first): 2025-06-05T23:24:11.8744205Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:11.8745159Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.8746404Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-iszFcP/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.8747075Z 2025-06-05T23:24:11.8747337Z  2025-06-05T23:24:11.8747852Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:11.8748510Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.8748915Z CMake. 2025-06-05T23:24:11.8749036Z 2025-06-05T23:24:11.8749274Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.8749819Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.8750298Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.8750648Z Call Stack (most recent call first): 2025-06-05T23:24:11.8751346Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:11.8752426Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:11.8753471Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:11.8754605Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-iszFcP/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.8755272Z 2025-06-05T23:24:11.8755387Z  2025-06-05T23:24:11.8755641Z -- Performing Test HAVE_BUILTIN_MUL_OVERFLOW - Success 2025-06-05T23:24:11.8756029Z -- Performing Test HAVE_BUILTIN_UNREACHABLE 2025-06-05T23:24:11.8756709Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.8757419Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.8757821Z CMake. 2025-06-05T23:24:11.8757942Z 2025-06-05T23:24:11.8758161Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.8758717Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.8759186Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.8759552Z Call Stack (most recent call first): 2025-06-05T23:24:11.8760186Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.8761361Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-CRfTKE/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.8762027Z 2025-06-05T23:24:11.8762128Z  2025-06-05T23:24:11.8762752Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.8763495Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.8763896Z CMake. 2025-06-05T23:24:11.8764006Z 2025-06-05T23:24:11.8764241Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.8764782Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.8765667Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.8766128Z Call Stack (most recent call first): 2025-06-05T23:24:11.8766517Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:11.8767256Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.8768356Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-CRfTKE/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.8769031Z 2025-06-05T23:24:11.8769151Z  2025-06-05T23:24:11.8769688Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:11.8770334Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.8770747Z CMake. 2025-06-05T23:24:11.8770898Z 2025-06-05T23:24:11.8771117Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.8771668Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.8772134Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.8772490Z Call Stack (most recent call first): 2025-06-05T23:24:11.8773180Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:11.8774260Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:11.8775323Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:11.8776456Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-CRfTKE/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.8777136Z 2025-06-05T23:24:11.8777235Z  2025-06-05T23:24:11.8777484Z -- Performing Test HAVE_BUILTIN_UNREACHABLE - Success 2025-06-05T23:24:11.8777852Z -- Performing Test HAVE_VSCRIPT_GNU 2025-06-05T23:24:11.8778530Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.8779227Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.8779643Z CMake. 2025-06-05T23:24:11.8779752Z 2025-06-05T23:24:11.8779970Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.8780523Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.8780990Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.8781353Z Call Stack (most recent call first): 2025-06-05T23:24:11.8782000Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.8783097Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-jgmcde/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.8783774Z 2025-06-05T23:24:11.8783867Z  2025-06-05T23:24:11.8784467Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.8785250Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.8785745Z CMake. 2025-06-05T23:24:11.8785853Z 2025-06-05T23:24:11.8786072Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.8786621Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.8787087Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.8787458Z Call Stack (most recent call first): 2025-06-05T23:24:11.8787827Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:11.8788559Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.8789670Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-jgmcde/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.8790372Z 2025-06-05T23:24:11.8790477Z  2025-06-05T23:24:11.8790981Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:11.8791615Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.8792034Z CMake. 2025-06-05T23:24:11.8792143Z 2025-06-05T23:24:11.8792362Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.8792951Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.8793431Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.8793778Z Call Stack (most recent call first): 2025-06-05T23:24:11.8794499Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:11.8795568Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:11.8796624Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:11.8797760Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-jgmcde/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.8798422Z 2025-06-05T23:24:11.8798518Z  2025-06-05T23:24:11.8798757Z -- Performing Test HAVE_VSCRIPT_GNU - Success 2025-06-05T23:24:11.8799088Z -- Performing Test HAVE_VSCRIPT_SUN 2025-06-05T23:24:11.8799756Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.8800462Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.8800865Z CMake. 2025-06-05T23:24:11.8800971Z 2025-06-05T23:24:11.8801198Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.8801740Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.8802215Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.8802562Z Call Stack (most recent call first): 2025-06-05T23:24:11.8803199Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.8804301Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-52fzOg/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.8804960Z 2025-06-05T23:24:11.8805057Z  2025-06-05T23:24:11.8805668Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:11.8806393Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:11.8806805Z CMake. 2025-06-05T23:24:11.8806912Z 2025-06-05T23:24:11.8807132Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:11.8807677Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:11.8808183Z to work with policies introduced by or earlier. 2025-06-05T23:24:11.8808535Z Call Stack (most recent call first): 2025-06-05T23:24:11.8808919Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:11.8809637Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:11.8810752Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-52fzOg/CMakeLists.txt:5 (project) 2025-06-05T23:24:11.8811410Z 2025-06-05T23:24:11.8811523Z  2025-06-05T23:24:11.8812019Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:12.1637853Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:12.1638626Z CMake. 2025-06-05T23:24:12.1638794Z 2025-06-05T23:24:12.1639022Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:12.1639661Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:12.1640194Z to work with policies introduced by or earlier. 2025-06-05T23:24:12.1640562Z Call Stack (most recent call first): 2025-06-05T23:24:12.1641416Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:12.1642591Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:12.1643840Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:12.1645041Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-52fzOg/CMakeLists.txt:5 (project) 2025-06-05T23:24:12.1645788Z 2025-06-05T23:24:12.1646114Z  2025-06-05T23:24:12.1646361Z -- Performing Test HAVE_VSCRIPT_SUN - Failed 2025-06-05T23:24:12.1646697Z -- Performing Test HAVE_VSCRIPT_BROKEN 2025-06-05T23:24:12.1647460Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:12.1648220Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:12.1648703Z CMake. 2025-06-05T23:24:12.1648813Z 2025-06-05T23:24:12.1649061Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:12.1649639Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:12.1650182Z to work with policies introduced by or earlier. 2025-06-05T23:24:12.1650541Z Call Stack (most recent call first): 2025-06-05T23:24:12.1651244Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:12.1652461Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-nzAGDO/CMakeLists.txt:5 (project) 2025-06-05T23:24:12.1653196Z 2025-06-05T23:24:12.1653298Z  2025-06-05T23:24:12.1653973Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:12.1654753Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:12.1655188Z CMake. 2025-06-05T23:24:12.1655326Z 2025-06-05T23:24:12.1655544Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:12.1656150Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:12.1656615Z to work with policies introduced by or earlier. 2025-06-05T23:24:12.1657037Z Call Stack (most recent call first): 2025-06-05T23:24:12.1657418Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:12.1658202Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:12.1659477Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-nzAGDO/CMakeLists.txt:5 (project) 2025-06-05T23:24:12.1660197Z 2025-06-05T23:24:12.1660304Z  2025-06-05T23:24:12.1660867Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:12.1661552Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:12.1661969Z CMake. 2025-06-05T23:24:12.1662133Z 2025-06-05T23:24:12.1662365Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:12.1662963Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:12.1663442Z to work with policies introduced by or earlier. 2025-06-05T23:24:12.1663901Z Call Stack (most recent call first): 2025-06-05T23:24:12.1664645Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:12.1666106Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:12.1667215Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:12.1668546Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-nzAGDO/CMakeLists.txt:5 (project) 2025-06-05T23:24:12.1669275Z 2025-06-05T23:24:12.1669396Z  2025-06-05T23:24:12.1669646Z -- Performing Test HAVE_VSCRIPT_BROKEN - Failed 2025-06-05T23:24:12.1670099Z -- Performing Test INTEL_CET_ENABLED 2025-06-05T23:24:12.1670843Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:12.1671611Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:12.1672016Z CMake. 2025-06-05T23:24:12.1672127Z 2025-06-05T23:24:12.1672367Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:12.1672956Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:12.1673441Z to work with policies introduced by or earlier. 2025-06-05T23:24:12.1673791Z Call Stack (most recent call first): 2025-06-05T23:24:12.1674437Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:12.1675607Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-7Ldw4Y/CMakeLists.txt:5 (project) 2025-06-05T23:24:12.1676268Z 2025-06-05T23:24:12.1676369Z  2025-06-05T23:24:12.1676983Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:12.1677801Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:12.1678221Z CMake. 2025-06-05T23:24:12.1678334Z 2025-06-05T23:24:12.1678569Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:12.1679216Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:12.1679845Z to work with policies introduced by or earlier. 2025-06-05T23:24:12.1680254Z Call Stack (most recent call first): 2025-06-05T23:24:12.1680644Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:12.1681471Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:12.1682697Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-7Ldw4Y/CMakeLists.txt:5 (project) 2025-06-05T23:24:12.1683387Z 2025-06-05T23:24:12.1683543Z  2025-06-05T23:24:12.1684053Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:12.1684921Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:12.1685433Z CMake. 2025-06-05T23:24:12.1685557Z 2025-06-05T23:24:12.1685777Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:12.1686329Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:12.1686794Z to work with policies introduced by or earlier. 2025-06-05T23:24:12.1687157Z Call Stack (most recent call first): 2025-06-05T23:24:12.1687841Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:12.1688925Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:12.1690031Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:12.1691165Z /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/CMakeFiles/CMakeScratch/TryCompile-7Ldw4Y/CMakeLists.txt:5 (project) 2025-06-05T23:24:12.1691836Z 2025-06-05T23:24:12.1691959Z  2025-06-05T23:24:12.1692188Z -- Performing Test INTEL_CET_ENABLED - Failed 2025-06-05T23:24:12.1692499Z -- 2025-06-05T23:24:12.1692674Z -- 2025-06-05T23:24:12.1692887Z -- PCRE2-10.46 configuration summary: 2025-06-05T23:24:12.1693195Z -- 2025-06-05T23:24:12.1693550Z -- Install prefix .................... : /pytorch/executorch/cmake-out-android-arm64-v8a 2025-06-05T23:24:12.1694205Z -- C compiler ........................ : /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang 2025-06-05T23:24:12.1695365Z -- C compiler flags .................. : -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O3 -DNDEBUG 2025-06-05T23:24:12.1696350Z -- 2025-06-05T23:24:12.1696564Z -- Build type ........................ : Release 2025-06-05T23:24:12.1696915Z -- Build 8 bit pcre2 library ......... : ON 2025-06-05T23:24:12.1697240Z -- Build 16 bit pcre2 library ........ : OFF 2025-06-05T23:24:12.1697576Z -- Build 32 bit pcre2 library ........ : OFF 2025-06-05T23:24:12.1697937Z -- Include debugging code ............ : IfDebugBuild 2025-06-05T23:24:12.1698301Z -- Enable JIT compiling support ...... : OFF 2025-06-05T23:24:12.1698650Z -- Use SELinux allocator in JIT ...... : IGNORE 2025-06-05T23:24:12.1698982Z -- Enable Unicode support ............ : ON 2025-06-05T23:24:12.1699307Z -- Newline char/sequence ............. : LF 2025-06-05T23:24:12.1699627Z -- \R matches only ANYCRLF ........... : OFF 2025-06-05T23:24:12.1699951Z -- \C is disabled .................... : OFF 2025-06-05T23:24:12.1700259Z -- EBCDIC coding ..................... : OFF 2025-06-05T23:24:12.1700591Z -- EBCDIC code for NL ................ : n/a 2025-06-05T23:24:12.1700926Z -- EBCDIC coding ignoring compiler ... : OFF 2025-06-05T23:24:12.1701252Z -- Rebuild char tables ............... : OFF 2025-06-05T23:24:12.1701577Z -- Internal link size ................ : 2 2025-06-05T23:24:12.1701893Z -- Maximum variable lookbehind ....... : 255 2025-06-05T23:24:12.1702237Z -- Nested parentheses limit .......... : 250 2025-06-05T23:24:12.1702566Z -- Heap limit ........................ : 20000000 2025-06-05T23:24:12.1702915Z -- Match limit ....................... : 10000000 2025-06-05T23:24:12.1703280Z -- Match depth limit ................. : MATCH_LIMIT 2025-06-05T23:24:12.1703622Z -- Build shared libs ................. : OFF 2025-06-05T23:24:12.1703957Z -- with symbol versioning ........ : ON 2025-06-05T23:24:12.1704270Z -- Build static libs ................. : ON 2025-06-05T23:24:12.1704597Z -- with PIC enabled .............. : OFF 2025-06-05T23:24:12.1704912Z -- Build pcre2grep ................... : OFF 2025-06-05T23:24:12.1705242Z -- Enable JIT in pcre2grep ........... : ON 2025-06-05T23:24:12.1705697Z -- Enable callouts in pcre2grep ...... : ON 2025-06-05T23:24:12.1706091Z -- Enable callout fork in pcre2grep .. : ON 2025-06-05T23:24:12.1706445Z -- Initial buffer size for pcre2grep . : 20480 2025-06-05T23:24:12.1706793Z -- Maximum buffer size for pcre2grep . : 1048576 2025-06-05T23:24:12.1707151Z -- Build tests (implies pcre2test .... : OFF 2025-06-05T23:24:12.1707467Z -- and pcre2grep) 2025-06-05T23:24:12.1707769Z -- Link pcre2grep with libz .......... : ON 2025-06-05T23:24:12.1708134Z -- Link pcre2grep with libbz2 ........ : Library not found 2025-06-05T23:24:12.1708566Z -- Link pcre2test with libeditline ... : Library not found 2025-06-05T23:24:12.7596392Z -- Link pcre2test with libreadline ... : Library not found 2025-06-05T23:24:12.7597181Z -- Enable Valgrind support ........... : OFF 2025-06-05T23:24:12.7598032Z -- Use %zu and %td ................... : AUTO 2025-06-05T23:24:12.7598554Z -- 2025-06-05T23:24:12.7598903Z -- Configuring done (3.6s) 2025-06-05T23:24:12.7599387Z -- Generating done (0.4s) 2025-06-05T23:24:12.7600076Z CMake Warning: 2025-06-05T23:24:12.7600651Z Manually-specified variables were not used by the project: 2025-06-05T23:24:12.7601156Z 2025-06-05T23:24:12.7601333Z EXECUTORCH_ENABLE_LOGGING 2025-06-05T23:24:12.7601808Z EXECUTORCH_LOG_LEVEL 2025-06-05T23:24:12.7602071Z 2025-06-05T23:24:12.7602264Z  2025-06-05T23:24:12.7603238Z -- Build files have been written to: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android 2025-06-05T23:24:12.7604546Z + cmake --build cmake-out-android-arm64-v8a/extension/android -j 7 --config Release 2025-06-05T23:24:12.7606790Z [ 1%] Generating third-party/fbjni/prefab/modules/fbjni/include, third-party/fbjni/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so 2025-06-05T23:24:12.7609612Z [ 1%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/extension/llm/runner/CMakeFiles/extension_llm_runner.dir/text_decoder_runner.cpp.o 2025-06-05T23:24:12.7613034Z [ 1%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/log_severity.dir/log_severity.cc.o 2025-06-05T23:24:12.7616836Z [ 1%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/spinlock_wait.dir/internal/spinlock_wait.cc.o 2025-06-05T23:24:12.7620662Z [ 1%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/strerror.dir/internal/strerror.cc.o 2025-06-05T23:24:12.7624440Z [ 2%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_fixed.cc.o 2025-06-05T23:24:12.7629519Z [ 2%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/arena.cc.o 2025-06-05T23:24:12.7633030Z Archive: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/fbjni.aar 2025-06-05T23:24:12.7634672Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/R.txt 2025-06-05T23:24:12.7636455Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/AndroidManifest.xml 2025-06-05T23:24:12.7638225Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/classes.jar 2025-06-05T23:24:12.7640395Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/META-INF/com/android/build/gradle/aar-metadata.properties 2025-06-05T23:24:12.7642461Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/ 2025-06-05T23:24:12.7644254Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/arm64-v8a/ 2025-06-05T23:24:12.7646118Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/arm64-v8a/libc++_shared.so 2025-06-05T23:24:12.7648127Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/arm64-v8a/libfbjni.so 2025-06-05T23:24:12.7650036Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/armeabi-v7a/ 2025-06-05T23:24:12.7652063Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/armeabi-v7a/libc++_shared.so 2025-06-05T23:24:12.7654213Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/armeabi-v7a/libfbjni.so 2025-06-05T23:24:12.7656068Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/x86/ 2025-06-05T23:24:12.7657866Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/x86/libc++_shared.so 2025-06-05T23:24:12.7659888Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/x86/libfbjni.so 2025-06-05T23:24:12.7661664Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/x86_64/ 2025-06-05T23:24:12.7663608Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/x86_64/libc++_shared.so 2025-06-05T23:24:12.7665839Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/jni/x86_64/libfbjni.so 2025-06-05T23:24:12.7667574Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/ 2025-06-05T23:24:12.7669220Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/prefab.json 2025-06-05T23:24:12.7671019Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/ 2025-06-05T23:24:12.7672804Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/ 2025-06-05T23:24:12.7674866Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/module.json 2025-06-05T23:24:12.7676943Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/ 2025-06-05T23:24:12.7679048Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/ 2025-06-05T23:24:12.7681338Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/Application.h 2025-06-05T23:24:12.7683802Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/ByteBuffer.cpp 2025-06-05T23:24:12.7686288Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/ByteBuffer.h 2025-06-05T23:24:12.7688713Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/Context.h 2025-06-05T23:24:12.7691084Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/File.h 2025-06-05T23:24:12.7693439Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/JThread.h 2025-06-05T23:24:12.7695910Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/NativeRunnable.h 2025-06-05T23:24:12.7698558Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/OnLoad.cpp 2025-06-05T23:24:12.7701091Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/ReadableByteChannel.cpp 2025-06-05T23:24:12.7703762Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/ReadableByteChannel.h 2025-06-05T23:24:12.7706334Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/fbjni.cpp 2025-06-05T23:24:12.7708697Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/fbjni.h 2025-06-05T23:24:12.7711156Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/ 2025-06-05T23:24:12.7713487Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Boxed.h 2025-06-05T23:24:12.7716075Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Common.h 2025-06-05T23:24:12.7718675Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/CoreClasses-inl.h 2025-06-05T23:24:12.7721455Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/CoreClasses.h 2025-06-05T23:24:12.7724069Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Environment.cpp 2025-06-05T23:24:12.7726665Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Environment.h 2025-06-05T23:24:12.7729266Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Exceptions.cpp 2025-06-05T23:24:12.7731829Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Exceptions.h 2025-06-05T23:24:12.9953205Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/FbjniApi.h 2025-06-05T23:24:12.9955831Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Hybrid.cpp 2025-06-05T23:24:12.9958451Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Hybrid.h 2025-06-05T23:24:12.9961005Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Iterator-inl.h 2025-06-05T23:24:12.9963602Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Iterator.h 2025-06-05T23:24:12.9967061Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/JWeakReference.h 2025-06-05T23:24:12.9969723Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Log.h 2025-06-05T23:24:12.9972309Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Meta-forward.h 2025-06-05T23:24:12.9974917Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Meta-inl.h 2025-06-05T23:24:12.9977584Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Meta.cpp 2025-06-05T23:24:12.9980101Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Meta.h 2025-06-05T23:24:12.9982618Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/MetaConvert.h 2025-06-05T23:24:12.9985442Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/ReferenceAllocators-inl.h 2025-06-05T23:24:12.9988278Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/ReferenceAllocators.h 2025-06-05T23:24:12.9990970Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/References-forward.h 2025-06-05T23:24:12.9993704Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/References-inl.h 2025-06-05T23:24:12.9996412Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/References.cpp 2025-06-05T23:24:12.9999295Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/References.h 2025-06-05T23:24:13.0001792Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Registration-inl.h 2025-06-05T23:24:13.0003924Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Registration.h 2025-06-05T23:24:13.0006188Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/SimpleFixedString.h 2025-06-05T23:24:13.0008231Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/TypeTraits.h 2025-06-05T23:24:13.0010240Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/utf8.cpp 2025-06-05T23:24:13.0012136Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/utf8.h 2025-06-05T23:24:13.0014016Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/ 2025-06-05T23:24:13.0016006Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/cxa_throw.cpp 2025-06-05T23:24:13.0017878Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/lyra.cpp 2025-06-05T23:24:13.0019697Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/lyra.h 2025-06-05T23:24:13.0021569Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/lyra_breakpad.cpp 2025-06-05T23:24:13.0023547Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/lyra_exceptions.cpp 2025-06-05T23:24:13.0025597Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/lyra_exceptions.h 2025-06-05T23:24:13.0027447Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/ 2025-06-05T23:24:13.0029194Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.arm64-v8a/ 2025-06-05T23:24:13.0031135Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.arm64-v8a/abi.json 2025-06-05T23:24:13.0033132Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so 2025-06-05T23:24:13.0036482Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.armeabi-v7a/ 2025-06-05T23:24:13.0038749Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.armeabi-v7a/abi.json 2025-06-05T23:24:13.0040900Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.armeabi-v7a/libfbjni.so 2025-06-05T23:24:13.0042729Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.x86/ 2025-06-05T23:24:13.0044522Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.x86/abi.json 2025-06-05T23:24:13.0046425Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.x86/libfbjni.so 2025-06-05T23:24:13.0048293Z creating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.x86_64/ 2025-06-05T23:24:13.0050074Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.x86_64/abi.json 2025-06-05T23:24:13.0052926Z inflating: /pytorch/executorch/cmake-out-android-arm64-v8a/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so [ 2%] Linking CXX static library libabsl_spinlock_wait.a 2025-06-05T23:24:13.0054409Z 2025-06-05T23:24:13.0054619Z [ 2%] Built target fbjni_prefab 2025-06-05T23:24:13.0056889Z [ 2%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_format.cc.o 2025-06-05T23:24:13.0058674Z [ 2%] Built target spinlock_wait 2025-06-05T23:24:13.0060912Z [ 2%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/utf8_for_code_point.dir/internal/utf8_for_code_point.cc.o 2025-06-05T23:24:13.0063144Z [ 2%] Linking CXX static library libabsl_strerror.a 2025-06-05T23:24:13.0063793Z [ 2%] Built target strerror 2025-06-05T23:24:13.0068398Z [ 2%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_if.cc.o 2025-06-05T23:24:13.0070712Z [ 2%] Linking CXX static library libabsl_utf8_for_code_point.a 2025-06-05T23:24:13.0071818Z [ 3%] Linking CXX static library libabsl_log_severity.a 2025-06-05T23:24:13.0072493Z [ 3%] Built target utf8_for_code_point 2025-06-05T23:24:13.0075029Z [ 3%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_impl.cc.o 2025-06-05T23:24:13.0077148Z [ 3%] Built target log_severity 2025-06-05T23:24:14.0149990Z [ 4%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_info.cc.o 2025-06-05T23:24:14.0154083Z [ 4%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/numeric/CMakeFiles/int128.dir/int128.cc.o 2025-06-05T23:24:14.0159016Z [ 5%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/arenastring.cc.o 2025-06-05T23:24:14.0163502Z [ 6%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/extension/llm/runner/CMakeFiles/extension_llm_runner.dir/text_prefiller.cpp.o 2025-06-05T23:24:14.0169165Z [ 6%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/extension/llm/runner/CMakeFiles/extension_llm_runner.dir/pytorch/executorch/extension/llm/sampler/sampler.cpp.o 2025-06-05T23:24:14.0174385Z [ 6%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/bytestream.cc.o 2025-06-05T23:24:14.0177738Z [ 6%] Linking CXX static library libabsl_int128.a 2025-06-05T23:24:14.0181523Z [ 6%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/coded_stream.cc.o 2025-06-05T23:24:14.0184646Z [ 6%] Built target int128 2025-06-05T23:24:14.0188077Z [ 6%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/common.cc.o 2025-06-05T23:24:14.0193151Z [ 6%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_libc.cc.o 2025-06-05T23:24:14.0197429Z [ 6%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/profiling/CMakeFiles/exponential_biased.dir/internal/exponential_biased.cc.o 2025-06-05T23:24:14.0201689Z [ 6%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/civil_time.dir/internal/cctz/src/civil_time_detail.cc.o 2025-06-05T23:24:14.0204086Z [ 6%] Linking CXX static library libextension_llm_runner.a 2025-06-05T23:24:14.0204819Z [ 6%] Built target extension_llm_runner 2025-06-05T23:24:14.0208374Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/extension_set.cc.o 2025-06-05T23:24:14.0214453Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_enum_util.cc.o 2025-06-05T23:24:14.0219470Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_lookup.cc.o 2025-06-05T23:24:14.0222081Z [ 7%] Linking CXX static library libabsl_exponential_biased.a 2025-06-05T23:24:14.0222869Z [ 7%] Built target exponential_biased 2025-06-05T23:24:14.0226565Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_message_table_driven_lite.cc.o 2025-06-05T23:24:14.0232913Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_message_util.cc.o 2025-06-05T23:24:14.0236447Z [ 7%] Linking CXX static library libabsl_civil_time.a 2025-06-05T23:24:14.0239065Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_posix.cc.o 2025-06-05T23:24:14.0241156Z [ 7%] Built target civil_time 2025-06-05T23:24:14.0243473Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/leak_check.dir/leak_check.cc.o 2025-06-05T23:24:14.0256420Z [ 7%] Linking CXX static library libabsl_leak_check.a 2025-06-05T23:24:14.0257341Z [ 7%] Built target leak_check 2025-06-05T23:24:14.0259791Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/zone_info_source.cc.o 2025-06-05T23:24:14.0264030Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_commandlineflag_internal.dir/internal/commandlineflag.cc.o 2025-06-05T23:24:14.0268502Z [ 8%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_nullguard.dir/internal/nullguard.cc.o 2025-06-05T23:24:14.0272178Z [ 8%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_auto_possess.c.o 2025-06-05T23:24:14.0274603Z [ 8%] Linking CXX static library libabsl_flags_commandlineflag_internal.a 2025-06-05T23:24:14.0275476Z [ 8%] Built target flags_commandlineflag_internal 2025-06-05T23:24:14.0278035Z [ 9%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/profiling/CMakeFiles/periodic_sampler.dir/internal/periodic_sampler.cc.o 2025-06-05T23:24:14.0282166Z [ 10%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_seed_gen_exception.dir/seed_gen_exception.cc.o 2025-06-05T23:24:14.0285959Z [ 10%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/pcre2_chartables.c.o 2025-06-05T23:24:14.0288159Z [ 11%] Linking CXX static library libabsl_time_zone.a 2025-06-05T23:24:14.0290519Z [ 12%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_chkdint.c.o 2025-06-05T23:24:14.0292452Z [ 12%] Built target time_zone 2025-06-05T23:24:14.0294628Z [ 12%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_compile.c.o 2025-06-05T23:24:14.0299667Z [ 12%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/implicit_weak_message.cc.o 2025-06-05T23:24:14.0305752Z [ 13%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/int128.cc.o 2025-06-05T23:24:14.0309486Z [ 13%] Linking CXX static library libabsl_periodic_sampler.a 2025-06-05T23:24:14.0310413Z [ 13%] Built target periodic_sampler 2025-06-05T23:24:14.0312927Z [ 14%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_platform.dir/internal/randen_round_keys.cc.o 2025-06-05T23:24:14.7271481Z [ 14%] Linking CXX static library libabsl_random_seed_gen_exception.a 2025-06-05T23:24:14.7272427Z [ 14%] Built target random_seed_gen_exception 2025-06-05T23:24:14.7274978Z [ 14%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_compile_cgroup.c.o 2025-06-05T23:24:14.7277458Z [ 14%] Linking CXX static library libabsl_log_internal_nullguard.a 2025-06-05T23:24:14.7278705Z [ 14%] Linking CXX static library libabsl_random_internal_platform.a 2025-06-05T23:24:14.7279574Z [ 14%] Built target log_internal_nullguard 2025-06-05T23:24:14.7281916Z [ 14%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_compile_class.c.o 2025-06-05T23:24:14.7283945Z [ 14%] Built target random_internal_platform 2025-06-05T23:24:14.7286054Z [ 14%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_config.c.o 2025-06-05T23:24:14.7289604Z [ 15%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_context.c.o 2025-06-05T23:24:14.7293008Z [ 15%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_convert.c.o 2025-06-05T23:24:14.7296542Z [ 15%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_dfa_match.c.o 2025-06-05T23:24:14.7300039Z [ 15%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_error.c.o 2025-06-05T23:24:14.7303469Z [ 16%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_extuni.c.o 2025-06-05T23:24:14.7307121Z [ 16%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_find_bracket.c.o 2025-06-05T23:24:14.7310715Z [ 16%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_jit_compile.c.o 2025-06-05T23:24:14.7315504Z [ 16%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/io_win32.cc.o 2025-06-05T23:24:14.7320709Z [ 17%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/builder.cc.o 2025-06-05T23:24:14.7324740Z [ 17%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/unicode_script.cc.o 2025-06-05T23:24:14.7328899Z [ 17%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/trainer_factory.cc.o 2025-06-05T23:24:14.7333160Z [ 17%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/trainer_interface.cc.o 2025-06-05T23:24:14.7337132Z [ 17%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_maketables.c.o 2025-06-05T23:24:14.7342039Z [ 17%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/message_lite.cc.o 2025-06-05T23:24:14.7346892Z [ 17%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_match.c.o 2025-06-05T23:24:14.7350443Z [ 18%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_match_data.c.o 2025-06-05T23:24:14.7353976Z [ 18%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_match_next.c.o 2025-06-05T23:24:14.7357485Z [ 18%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_newline.c.o 2025-06-05T23:24:14.7361895Z [ 18%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/parse_context.cc.o 2025-06-05T23:24:14.7367954Z [ 18%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/repeated_field.cc.o 2025-06-05T23:24:14.7373636Z [ 19%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/status.cc.o 2025-06-05T23:24:14.7378172Z [ 19%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_ord2utf.c.o 2025-06-05T23:24:14.7381769Z [ 20%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_pattern_info.c.o 2025-06-05T23:24:14.7385756Z [ 20%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_script_run.c.o 2025-06-05T23:24:14.7389299Z [ 20%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_serialize.c.o 2025-06-05T23:24:14.7392287Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/builder.cc:47:15: warning: unused variable 'kMaxUnicode' [-Wunused-const-variable] 2025-06-05T23:24:14.7393935Z 47 | constexpr int kMaxUnicode = 0x10FFFF; 2025-06-05T23:24:14.7394494Z | ^~~~~~~~~~~ 2025-06-05T23:24:14.7396169Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/builder.cc:49:36: warning: unused variable 'kDefaultNormalizerName' [-Wunused-const-variable] 2025-06-05T23:24:14.7398291Z 49 | static constexpr absl::string_view kDefaultNormalizerName = "nfkc"; 2025-06-05T23:24:14.7399125Z | ^~~~~~~~~~~~~~~~~~~~~~ 2025-06-05T23:24:14.7399658Z 2 warnings generated. 2025-06-05T23:24:14.7402321Z [ 20%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/unigram_model_trainer.cc.o 2025-06-05T23:24:14.7407485Z [ 20%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/statusor.cc.o 2025-06-05T23:24:14.7411804Z [ 20%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_string_utils.c.o 2025-06-05T23:24:14.7415918Z [ 20%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/stringpiece.cc.o 2025-06-05T23:24:15.9239582Z [ 21%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/word_model_trainer.cc.o 2025-06-05T23:24:15.9243516Z [ 21%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_study.c.o 2025-06-05T23:24:15.9248370Z [ 21%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/stringprintf.cc.o 2025-06-05T23:24:15.9253139Z [ 22%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_substitute.c.o 2025-06-05T23:24:15.9258686Z [ 23%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/structurally_valid.cc.o 2025-06-05T23:24:15.9263696Z [ 23%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_substring.c.o 2025-06-05T23:24:15.9268540Z [ 23%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/strutil.cc.o 2025-06-05T23:24:15.9275164Z [ 23%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/time.cc.o 2025-06-05T23:24:15.9280031Z [ 23%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/char_model_trainer.cc.o 2025-06-05T23:24:15.9283861Z [ 23%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_tables.c.o 2025-06-05T23:24:15.9287837Z [ 23%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/bpe_model_trainer.cc.o 2025-06-05T23:24:15.9292194Z [ 23%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/sentencepiece_trainer.cc.o 2025-06-05T23:24:15.9296195Z [ 23%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_ucd.c.o 2025-06-05T23:24:15.9300035Z [ 24%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/pretokenizer_for_training.cc.o 2025-06-05T23:24:15.9303937Z [ 24%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_valid_utf.c.o 2025-06-05T23:24:15.9308809Z [ 24%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/wire_format_lite.cc.o 2025-06-05T23:24:15.9313432Z [ 25%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_xclass.c.o 2025-06-05T23:24:15.9318081Z [ 25%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream.cc.o 2025-06-05T23:24:15.9321243Z [ 26%] Linking C static library libpcre2-8.a 2025-06-05T23:24:15.9324970Z [ 26%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream_impl.cc.o 2025-06-05T23:24:15.9331282Z [ 26%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream_impl_lite.cc.o 2025-06-05T23:24:15.9334684Z [ 26%] Built target pcre2-8-static 2025-06-05T23:24:15.9337274Z [ 26%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/builtin_pb/sentencepiece.pb.cc.o 2025-06-05T23:24:15.9341137Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_trainer.cc:207:16: warning: 'done' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] 2025-06-05T23:24:15.9343331Z 207 | virtual bool done() const { return iter_ == end_; } 2025-06-05T23:24:15.9343975Z | ^ 2025-06-05T23:24:15.9345469Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_trainer.h:52:16: note: overridden virtual function is here 2025-06-05T23:24:15.9347089Z 52 | virtual bool done() const = 0; 2025-06-05T23:24:15.9347580Z | ^ 2025-06-05T23:24:15.9348002Z 1 warning generated. 2025-06-05T23:24:15.9350544Z [ 26%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/builtin_pb/sentencepiece_model.pb.cc.o 2025-06-05T23:24:15.9353307Z [ 26%] Linking CXX static library libsentencepiece_train.a 2025-06-05T23:24:15.9354122Z [ 26%] Built target sentencepiece_train-static 2025-06-05T23:24:15.9356633Z [ 26%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/bpe_model.cc.o 2025-06-05T23:24:15.9360656Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/char_model.cc.o 2025-06-05T23:24:15.9364023Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llava/runner/CMakeFiles/llava_runner.dir/llava_runner.cpp.o 2025-06-05T23:24:15.9367662Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/error.cc.o 2025-06-05T23:24:15.9371523Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/filesystem.cc.o 2025-06-05T23:24:15.9375284Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llava/runner/CMakeFiles/llava_runner.dir/pytorch/executorch/extension/llm/sampler/sampler.cpp.o 2025-06-05T23:24:15.9379091Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llava/runner/CMakeFiles/llava_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/llama2c_tokenizer.cpp.o 2025-06-05T23:24:15.9383052Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/model_factory.cc.o 2025-06-05T23:24:15.9387231Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/raw_logging_internal.dir/internal/raw_logging.cc.o 2025-06-05T23:24:15.9391433Z [ 28%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/decode_rust_punycode.dir/internal/decode_rust_punycode.cc.o 2025-06-05T23:24:17.1159892Z [ 28%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/regex_lookahead.dir/src/pcre2_regex.cpp.o 2025-06-05T23:24:17.1161844Z [ 29%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/model_interface.cc.o 2025-06-05T23:24:17.1163877Z [ 29%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/normalizer.cc.o 2025-06-05T23:24:17.1165523Z [ 29%] Linking CXX static library libabsl_raw_logging_internal.a 2025-06-05T23:24:17.1166074Z [ 30%] Linking CXX static library libllava_runner.a 2025-06-05T23:24:17.1166496Z [ 30%] Built target raw_logging_internal 2025-06-05T23:24:17.1167836Z [ 30%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/sentencepiece_processor.cc.o 2025-06-05T23:24:17.1168967Z [ 30%] Built target llava_runner 2025-06-05T23:24:17.1170034Z [ 31%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/regex_lookahead.dir/src/regex_lookahead.cpp.o 2025-06-05T23:24:17.1171240Z [ 31%] Linking CXX static library libabsl_decode_rust_punycode.a 2025-06-05T23:24:17.1172601Z [ 31%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/unigram_model.cc.o 2025-06-05T23:24:17.1173706Z [ 31%] Built target decode_rust_punycode 2025-06-05T23:24:17.1175128Z [ 31%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_randen_hwaes_impl.dir/internal/randen_hwaes.cc.o 2025-06-05T23:24:17.1177252Z [ 31%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/regex_lookahead.dir/src/std_regex.cpp.o 2025-06-05T23:24:17.1179181Z [ 31%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_randen_slow.dir/internal/randen_slow.cc.o 2025-06-05T23:24:17.1181224Z [ 31%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/util.cc.o 2025-06-05T23:24:17.1183172Z [ 32%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/word_model.cc.o 2025-06-05T23:24:17.1184484Z [ 33%] Linking CXX static library libabsl_random_internal_randen_hwaes_impl.a 2025-06-05T23:24:17.1185011Z [ 33%] Built target random_internal_randen_hwaes_impl 2025-06-05T23:24:17.1186873Z [ 33%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/absl/flags/flag.cc.o 2025-06-05T23:24:17.1189324Z [ 33%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/types/CMakeFiles/bad_any_cast_impl.dir/bad_any_cast.cc.o 2025-06-05T23:24:17.1190533Z [ 33%] Linking CXX static library libregex_lookahead.a 2025-06-05T23:24:17.1190912Z [ 33%] Built target regex_lookahead 2025-06-05T23:24:17.1192059Z [ 33%] Building C object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-posix-static.dir/src/pcre2posix.c.o 2025-06-05T23:24:17.1193266Z [ 33%] Linking CXX static library libabsl_random_internal_randen_slow.a 2025-06-05T23:24:17.1193746Z [ 33%] Built target random_internal_randen_slow 2025-06-05T23:24:17.1195039Z [ 33%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/throw_delegate.dir/internal/throw_delegate.cc.o 2025-06-05T23:24:17.1197203Z [ 33%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/cycleclock.cc.o 2025-06-05T23:24:17.1199118Z [ 33%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/spinlock.cc.o 2025-06-05T23:24:17.1200273Z [ 33%] Linking C static library libpcre2-posix.a 2025-06-05T23:24:17.1201504Z [ 33%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/sysinfo.cc.o 2025-06-05T23:24:17.1202659Z [ 33%] Built target pcre2-posix-static 2025-06-05T23:24:17.1204080Z [ 33%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/debugging_internal.dir/internal/address_is_readable.cc.o 2025-06-05T23:24:17.1205493Z [ 33%] Linking CXX static library libabsl_bad_any_cast_impl.a 2025-06-05T23:24:17.1206041Z [ 33%] Linking CXX static library libsentencepiece.a 2025-06-05T23:24:17.1206417Z [ 33%] Built target bad_any_cast_impl 2025-06-05T23:24:17.1207753Z [ 34%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/demangle_rust.dir/internal/demangle_rust.cc.o 2025-06-05T23:24:17.1209987Z [ 34%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/debugging_internal.dir/internal/elf_mem_image.cc.o 2025-06-05T23:24:17.1211214Z [ 34%] Built target sentencepiece-static 2025-06-05T23:24:17.1212505Z [ 35%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/types/CMakeFiles/bad_variant_access.dir/bad_variant_access.cc.o 2025-06-05T23:24:17.1214644Z [ 35%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/types/CMakeFiles/bad_optional_access.dir/bad_optional_access.cc.o 2025-06-05T23:24:17.1216806Z [ 36%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_functions.dir/internal/cordz_functions.cc.o 2025-06-05T23:24:17.1218086Z [ 36%] Linking CXX static library libabsl_throw_delegate.a 2025-06-05T23:24:17.1218644Z [ 36%] Linking CXX static library libabsl_bad_variant_access.a 2025-06-05T23:24:17.1219181Z [ 36%] Built target throw_delegate 2025-06-05T23:24:17.1219469Z [ 36%] Built target bad_variant_access 2025-06-05T23:24:17.1220860Z [ 36%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/debugging_internal.dir/internal/vdso_support.cc.o 2025-06-05T23:24:17.1223037Z [ 36%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/scoped_set_env.dir/internal/scoped_set_env.cc.o 2025-06-05T23:24:17.1225097Z [ 37%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/thread_identity.cc.o 2025-06-05T23:24:17.1226408Z [ 37%] Linking CXX static library libabsl_demangle_rust.a 2025-06-05T23:24:17.1226818Z [ 37%] Built target demangle_rust 2025-06-05T23:24:17.1227278Z [ 37%] Linking CXX static library libabsl_bad_optional_access.a 2025-06-05T23:24:17.1228712Z [ 37%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/unscaledcycleclock.cc.o 2025-06-05T23:24:17.1230894Z [ 37%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_randen_hwaes.dir/internal/randen_detect.cc.o 2025-06-05T23:24:17.1232083Z [ 37%] Built target bad_optional_access 2025-06-05T23:24:17.1233657Z [ 37%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/demangle_internal.dir/internal/demangle.cc.o 2025-06-05T23:24:17.1235012Z [ 37%] Linking CXX static library libabsl_scoped_set_env.a 2025-06-05T23:24:17.1235635Z [ 37%] Linking CXX static library libabsl_cordz_functions.a 2025-06-05T23:24:17.1236031Z [ 37%] Built target scoped_set_env 2025-06-05T23:24:17.1236406Z [ 37%] Built target cordz_functions 2025-06-05T23:24:17.1236874Z [ 37%] Linking CXX static library libabsl_debugging_internal.a 2025-06-05T23:24:18.2703140Z [ 37%] Built target debugging_internal 2025-06-05T23:24:18.2706056Z [ 38%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/stacktrace.dir/stacktrace.cc.o 2025-06-05T23:24:18.2708580Z [ 38%] Linking CXX static library libabsl_random_internal_randen_hwaes.a 2025-06-05T23:24:18.2709731Z [ 38%] Linking CXX static library libabsl_base.a 2025-06-05T23:24:18.2710394Z [ 38%] Built target random_internal_randen_hwaes 2025-06-05T23:24:18.2710928Z [ 38%] Built target base 2025-06-05T23:24:18.2713217Z [ 39%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_randen.dir/internal/randen.cc.o 2025-06-05T23:24:18.2717176Z [ 39%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/malloc_internal.dir/internal/low_level_alloc.cc.o 2025-06-05T23:24:18.2720916Z [ 39%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/tracing_internal.dir/internal/tracing.cc.o 2025-06-05T23:24:18.2724268Z [ 39%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings_internal.dir/internal/ostringstream.cc.o 2025-06-05T23:24:18.2728146Z [ 39%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/string_view.dir/string_view.cc.o 2025-06-05T23:24:18.2730421Z [ 39%] Linking CXX static library libabsl_demangle_internal.a 2025-06-05T23:24:18.2731457Z [ 39%] Linking CXX static library libabsl_stacktrace.a 2025-06-05T23:24:18.2732139Z [ 39%] Built target demangle_internal 2025-06-05T23:24:18.2734442Z [ 39%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_cpu_detect.dir/internal/cpu_detect.cc.o 2025-06-05T23:24:18.2736397Z [ 39%] Built target stacktrace 2025-06-05T23:24:18.2738504Z [ 39%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/hash/CMakeFiles/city.dir/internal/city.cc.o 2025-06-05T23:24:18.2740763Z [ 40%] Linking CXX static library libabsl_tracing_internal.a 2025-06-05T23:24:18.2741535Z [ 40%] Built target tracing_internal 2025-06-05T23:24:18.2743916Z [ 40%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/hash/CMakeFiles/low_level_hash.dir/internal/low_level_hash.cc.o 2025-06-05T23:24:18.2746638Z [ 40%] Linking CXX static library libabsl_crc_cpu_detect.a 2025-06-05T23:24:18.2747648Z [ 40%] Linking CXX static library libabsl_malloc_internal.a 2025-06-05T23:24:18.2748621Z [ 40%] Linking CXX static library libabsl_string_view.a 2025-06-05T23:24:18.2749279Z [ 40%] Built target crc_cpu_detect 2025-06-05T23:24:18.2749782Z [ 40%] Built target malloc_internal 2025-06-05T23:24:18.2752020Z [ 40%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings_internal.dir/internal/utf8.cc.o 2025-06-05T23:24:18.2754529Z [ 40%] Linking CXX static library libabsl_random_internal_randen.a 2025-06-05T23:24:18.2757198Z [ 40%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_conditions.dir/internal/conditions.cc.o 2025-06-05T23:24:18.2759137Z [ 40%] Built target string_view 2025-06-05T23:24:18.2761600Z [ 41%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/graphcycles_internal.dir/internal/graphcycles.cc.o 2025-06-05T23:24:18.2763723Z [ 41%] Built target random_internal_randen 2025-06-05T23:24:18.2765352Z [ 41%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings_internal.dir/internal/escaping.cc.o 2025-06-05T23:24:18.2766650Z [ 42%] Linking CXX static library libabsl_low_level_hash.a 2025-06-05T23:24:18.2767932Z [ 42%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_internal.dir/internal/crc.cc.o 2025-06-05T23:24:18.2768974Z [ 42%] Built target low_level_hash 2025-06-05T23:24:18.2770149Z [ 42%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/poison.dir/internal/poison.cc.o 2025-06-05T23:24:18.2771280Z [ 43%] Linking CXX static library libabsl_city.a 2025-06-05T23:24:18.2771731Z [ 43%] Built target city 2025-06-05T23:24:18.2772951Z [ 43%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_internal.dir/internal/crc_x86_arm_combined.cc.o 2025-06-05T23:24:18.2774247Z [ 43%] Linking CXX static library libabsl_log_internal_conditions.a 2025-06-05T23:24:18.2774806Z [ 43%] Linking CXX static library libabsl_poison.a 2025-06-05T23:24:18.2775185Z [ 43%] Built target log_internal_conditions 2025-06-05T23:24:18.2775502Z [ 43%] Built target poison 2025-06-05T23:24:18.2775917Z [ 44%] Linking CXX static library libabsl_strings_internal.a 2025-06-05T23:24:18.2776329Z [ 44%] Built target strings_internal 2025-06-05T23:24:18.2777459Z [ 45%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/ascii.cc.o 2025-06-05T23:24:18.2779316Z [ 45%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/charconv.cc.o 2025-06-05T23:24:18.2781179Z [ 45%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/escaping.cc.o 2025-06-05T23:24:18.2783130Z [ 46%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/charconv_bigint.cc.o 2025-06-05T23:24:18.2785250Z [ 46%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/charconv_parse.cc.o 2025-06-05T23:24:18.2786558Z [ 47%] Linking CXX static library libabsl_crc_internal.a 2025-06-05T23:24:18.2787116Z [ 47%] Linking CXX static library libabsl_graphcycles_internal.a 2025-06-05T23:24:18.2787545Z [ 47%] Built target crc_internal 2025-06-05T23:24:18.2788856Z [ 47%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/damerau_levenshtein_distance.cc.o 2025-06-05T23:24:18.2790083Z [ 47%] Built target graphcycles_internal 2025-06-05T23:24:18.2791309Z [ 47%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/memutil.cc.o 2025-06-05T23:24:18.2793406Z [ 47%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/stringify_sink.cc.o 2025-06-05T23:24:18.2796640Z [ 47%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/match.cc.o 2025-06-05T23:24:18.2799681Z [ 48%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/numbers.cc.o 2025-06-05T23:24:18.2802796Z [ 48%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/str_cat.cc.o 2025-06-05T23:24:18.2805482Z [ 48%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/str_replace.cc.o 2025-06-05T23:24:18.2807394Z [ 48%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/str_split.cc.o 2025-06-05T23:24:18.2809271Z [ 48%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/substitute.cc.o 2025-06-05T23:24:18.2810428Z [ 49%] Linking CXX static library libabsl_strings.a 2025-06-05T23:24:18.2810805Z [ 49%] Built target strings 2025-06-05T23:24:19.4086237Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/symbolize.dir/symbolize.cc.o 2025-06-05T23:24:19.4090054Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/civil_time.cc.o 2025-06-05T23:24:19.4093779Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_commandlineflag.dir/commandlineflag.cc.o 2025-06-05T23:24:19.4097637Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/hash/CMakeFiles/hash.dir/internal/hash.cc.o 2025-06-05T23:24:19.4101482Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_fnmatch.dir/internal/fnmatch.cc.o 2025-06-05T23:24:19.4105922Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/arg.cc.o 2025-06-05T23:24:19.4110435Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_proto.dir/internal/proto.cc.o 2025-06-05T23:24:19.4112925Z [ 49%] Linking CXX static library libabsl_flags_commandlineflag.a 2025-06-05T23:24:19.4113763Z [ 49%] Built target flags_commandlineflag 2025-06-05T23:24:19.4114692Z [ 50%] Linking CXX static library libabsl_log_internal_fnmatch.a 2025-06-05T23:24:19.4117840Z [ 51%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/bind.cc.o 2025-06-05T23:24:19.4120323Z [ 51%] Linking CXX static library libabsl_symbolize.a 2025-06-05T23:24:19.4121012Z [ 51%] Built target log_internal_fnmatch 2025-06-05T23:24:19.4123588Z [ 51%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/extension.cc.o 2025-06-05T23:24:19.4125783Z [ 51%] Built target symbolize 2025-06-05T23:24:19.4128491Z [ 51%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/float_conversion.cc.o 2025-06-05T23:24:19.4131033Z [ 51%] Linking CXX static library libabsl_hash.a 2025-06-05T23:24:19.4131994Z [ 51%] Linking CXX static library libabsl_log_internal_proto.a 2025-06-05T23:24:19.4134300Z [ 52%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/clock.cc.o 2025-06-05T23:24:19.4136046Z [ 52%] Built target hash 2025-06-05T23:24:19.4136529Z [ 52%] Built target log_internal_proto 2025-06-05T23:24:19.4138997Z [ 52%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_distributions.dir/discrete_distribution.cc.o 2025-06-05T23:24:19.4143116Z [ 52%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_seed_material.dir/internal/seed_material.cc.o 2025-06-05T23:24:19.4147516Z [ 52%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/output.cc.o 2025-06-05T23:24:19.4151658Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_distributions.dir/gaussian_distribution.cc.o 2025-06-05T23:24:19.4155763Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/parser.cc.o 2025-06-05T23:24:19.4159601Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/duration.cc.o 2025-06-05T23:24:19.4162902Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/format.cc.o 2025-06-05T23:24:19.4167106Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/time.cc.o 2025-06-05T23:24:19.4169379Z [ 53%] Linking CXX static library libabsl_random_internal_seed_material.a 2025-06-05T23:24:19.4170240Z [ 53%] Built target random_internal_seed_material 2025-06-05T23:24:19.4172694Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/examine_stack.dir/internal/examine_stack.cc.o 2025-06-05T23:24:19.4176936Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_private_handle_accessor.dir/internal/private_handle_accessor.cc.o 2025-06-05T23:24:19.4179845Z [ 54%] Linking CXX static library libabsl_str_format_internal.a 2025-06-05T23:24:19.4182455Z [ 54%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_pool_urbg.dir/internal/pool_urbg.cc.o 2025-06-05T23:24:19.4184644Z [ 54%] Built target str_format_internal 2025-06-05T23:24:19.4185759Z [ 54%] Linking CXX static library libabsl_random_distributions.a 2025-06-05T23:24:19.4188158Z [ 54%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/crc32c.cc.o 2025-06-05T23:24:19.4189971Z [ 54%] Built target random_distributions 2025-06-05T23:24:19.4191990Z [ 55%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_marshalling.dir/marshalling.cc.o 2025-06-05T23:24:19.4195710Z [ 55%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_distribution_test_util.dir/internal/chi_square.cc.o 2025-06-05T23:24:19.4198173Z [ 55%] Linking CXX static library libabsl_time.a 2025-06-05T23:24:19.4199133Z [ 56%] Linking CXX static library libabsl_examine_stack.a 2025-06-05T23:24:19.4199847Z [ 56%] Built target time 2025-06-05T23:24:19.4202554Z [ 56%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_distribution_test_util.dir/internal/distribution_test_util.cc.o 2025-06-05T23:24:19.4205421Z [ 57%] Linking CXX static library libabsl_flags_private_handle_accessor.a 2025-06-05T23:24:19.4206217Z [ 57%] Built target examine_stack 2025-06-05T23:24:19.4208487Z [ 57%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/internal/crc_memcpy_fallback.cc.o 2025-06-05T23:24:19.4210581Z [ 57%] Built target flags_private_handle_accessor 2025-06-05T23:24:19.4213183Z [ 58%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/kernel_timeout_internal.dir/internal/kernel_timeout.cc.o 2025-06-05T23:24:19.4215887Z [ 58%] Linking CXX static library libabsl_random_internal_pool_urbg.a 2025-06-05T23:24:19.4216752Z [ 58%] Built target random_internal_pool_urbg 2025-06-05T23:24:19.4219225Z [ 58%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_globals.dir/internal/globals.cc.o 2025-06-05T23:24:19.4223054Z [ 58%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_entry.dir/log_entry.cc.o 2025-06-05T23:24:19.4227243Z [ 59%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/internal/crc_memcpy_x86_arm_combined.cc.o 2025-06-05T23:24:19.4229648Z [ 59%] Linking CXX static library libabsl_flags_marshalling.a 2025-06-05T23:24:20.7496589Z [ 59%] Linking CXX static library libabsl_random_internal_distribution_test_util.a 2025-06-05T23:24:20.7497160Z [ 59%] Built target flags_marshalling 2025-06-05T23:24:20.7497574Z [ 59%] Built target random_internal_distribution_test_util 2025-06-05T23:24:20.7498958Z [ 59%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/internal/crc_non_temporal_memcpy.cc.o 2025-06-05T23:24:20.7501327Z [ 59%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/failure_signal_handler.dir/failure_signal_handler.cc.o 2025-06-05T23:24:20.7502698Z [ 59%] Linking CXX static library libabsl_kernel_timeout_internal.a 2025-06-05T23:24:20.7504169Z [ 59%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_seed_sequences.dir/seed_sequences.cc.o 2025-06-05T23:24:20.7505418Z [ 59%] Built target kernel_timeout_internal 2025-06-05T23:24:20.7506733Z [ 59%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/barrier.cc.o 2025-06-05T23:24:20.7508024Z [ 60%] Linking CXX static library libabsl_log_internal_globals.a 2025-06-05T23:24:20.7508577Z [ 60%] Linking CXX static library libabsl_log_entry.a 2025-06-05T23:24:20.7508957Z [ 60%] Built target log_entry 2025-06-05T23:24:20.7509246Z [ 60%] Built target log_internal_globals 2025-06-05T23:24:20.7510559Z [ 60%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/blocking_counter.cc.o 2025-06-05T23:24:20.7512810Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/create_thread_identity.cc.o 2025-06-05T23:24:20.7515096Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/futex_waiter.cc.o 2025-06-05T23:24:20.7516442Z [ 61%] Linking CXX static library libabsl_failure_signal_handler.a 2025-06-05T23:24:20.7516892Z [ 61%] Built target failure_signal_handler 2025-06-05T23:24:20.7518052Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_sink.dir/log_sink.cc.o 2025-06-05T23:24:20.7519163Z [ 61%] Linking CXX static library libabsl_crc32c.a 2025-06-05T23:24:20.7519723Z [ 61%] Linking CXX static library libabsl_random_seed_sequences.a 2025-06-05T23:24:20.7520149Z [ 61%] Built target random_seed_sequences 2025-06-05T23:24:20.7520466Z [ 61%] Built target crc32c 2025-06-05T23:24:20.7521869Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/per_thread_sem.cc.o 2025-06-05T23:24:20.7524305Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/pthread_waiter.cc.o 2025-06-05T23:24:20.7526661Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_format.dir/internal/log_format.cc.o 2025-06-05T23:24:20.7528852Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/sem_waiter.cc.o 2025-06-05T23:24:20.7531025Z [ 62%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/stdcpp_waiter.cc.o 2025-06-05T23:24:20.7533255Z [ 62%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/waiter_base.cc.o 2025-06-05T23:24:20.7534551Z [ 62%] Linking CXX static library libabsl_log_sink.a 2025-06-05T23:24:20.7534915Z [ 62%] Built target log_sink 2025-06-05T23:24:20.7536268Z [ 62%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/win32_waiter.cc.o 2025-06-05T23:24:20.7538392Z [ 62%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_cord_state.dir/internal/crc_cord_state.cc.o 2025-06-05T23:24:20.7540470Z [ 62%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/notification.cc.o 2025-06-05T23:24:20.7541775Z [ 62%] Linking CXX static library libabsl_log_internal_format.a 2025-06-05T23:24:20.7543137Z [ 63%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/mutex.cc.o 2025-06-05T23:24:20.7544231Z [ 63%] Built target log_internal_format 2025-06-05T23:24:20.7544691Z [ 64%] Linking CXX static library libabsl_crc_cord_state.a 2025-06-05T23:24:20.7545081Z [ 64%] Built target crc_cord_state 2025-06-05T23:24:20.7546437Z [ 64%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_internal.cc.o 2025-06-05T23:24:20.7548498Z [ 64%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree.cc.o 2025-06-05T23:24:20.7550605Z [ 65%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree_reader.cc.o 2025-06-05T23:24:20.7552751Z [ 65%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree_navigator.cc.o 2025-06-05T23:24:20.7554874Z [ 65%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_consume.cc.o 2025-06-05T23:24:20.7556943Z [ 65%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_crc.cc.o 2025-06-05T23:24:20.7558255Z [ 65%] Linking CXX static library libabsl_synchronization.a 2025-06-05T23:24:20.7558658Z [ 65%] Built target synchronization 2025-06-05T23:24:20.7560028Z [ 65%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/container/CMakeFiles/hashtablez_sampler.dir/internal/hashtablez_sampler.cc.o 2025-06-05T23:24:20.7562372Z [ 66%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/container/CMakeFiles/hashtablez_sampler.dir/internal/hashtablez_sampler_force_weak_definition.cc.o 2025-06-05T23:24:20.7564593Z [ 66%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_handle.dir/internal/cordz_handle.cc.o 2025-06-05T23:24:20.7566914Z [ 66%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_program_name.dir/internal/program_name.cc.o 2025-06-05T23:24:20.7569065Z [ 66%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/vlog_config_internal.dir/internal/vlog_config.cc.o 2025-06-05T23:24:20.7570313Z [ 66%] Linking CXX static library libabsl_cord_internal.a 2025-06-05T23:24:20.7570713Z [ 66%] Built target cord_internal 2025-06-05T23:24:20.7571210Z [ 66%] Linking CXX static library libabsl_hashtablez_sampler.a 2025-06-05T23:24:20.7571637Z [ 66%] Built target hashtablez_sampler 2025-06-05T23:24:20.7572091Z [ 66%] Linking CXX static library libabsl_cordz_handle.a 2025-06-05T23:24:20.7572468Z [ 66%] Built target cordz_handle 2025-06-05T23:24:22.0261175Z [ 66%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_info.dir/internal/cordz_info.cc.o 2025-06-05T23:24:22.0263756Z [ 66%] Linking CXX static library libabsl_flags_program_name.a 2025-06-05T23:24:22.0264518Z [ 66%] Built target flags_program_name 2025-06-05T23:24:22.0267620Z [ 67%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_config.dir/usage_config.cc.o 2025-06-05T23:24:22.0270020Z [ 68%] Linking CXX static library libabsl_vlog_config_internal.a 2025-06-05T23:24:22.0270792Z [ 68%] Built target vlog_config_internal 2025-06-05T23:24:22.0272976Z [ 68%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_globals.dir/globals.cc.o 2025-06-05T23:24:22.0275209Z [ 69%] Linking CXX static library libabsl_cordz_info.a 2025-06-05T23:24:22.0275896Z [ 69%] Built target cordz_info 2025-06-05T23:24:22.0278008Z [ 69%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord.dir/cord.cc.o 2025-06-05T23:24:22.0281404Z [ 69%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord.dir/cord_analysis.cc.o 2025-06-05T23:24:22.0285053Z [ 70%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord.dir/cord_buffer.cc.o 2025-06-05T23:24:22.0289043Z [ 70%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_sample_token.dir/internal/cordz_sample_token.cc.o 2025-06-05T23:24:22.0292146Z [ 70%] Linking CXX static library libabsl_flags_config.a 2025-06-05T23:24:22.0292793Z [ 70%] Built target flags_config 2025-06-05T23:24:22.0294994Z [ 70%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_internal.dir/internal/flag.cc.o 2025-06-05T23:24:22.0297289Z [ 70%] Linking CXX static library libabsl_log_globals.a 2025-06-05T23:24:22.0298013Z [ 70%] Built target log_globals 2025-06-05T23:24:22.0300530Z [ 70%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_log_sink_set.dir/internal/log_sink_set.cc.o 2025-06-05T23:24:22.0304511Z [ 70%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_initialize.dir/initialize.cc.o 2025-06-05T23:24:22.0306925Z [ 70%] Linking CXX static library libabsl_cordz_sample_token.a 2025-06-05T23:24:22.0307721Z [ 70%] Built target cordz_sample_token 2025-06-05T23:24:22.0308478Z [ 70%] Linking CXX static library libabsl_cord.a 2025-06-05T23:24:22.0309157Z [ 70%] Built target cord 2025-06-05T23:24:22.0311676Z [ 71%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/container/CMakeFiles/raw_hash_set.dir/internal/raw_hash_set.cc.o 2025-06-05T23:24:22.0315844Z [ 71%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/status/CMakeFiles/status.dir/internal/status_internal.cc.o 2025-06-05T23:24:22.0319356Z [ 71%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/status/CMakeFiles/status.dir/status.cc.o 2025-06-05T23:24:22.0323114Z [ 71%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/status/CMakeFiles/status.dir/status_payload_printer.cc.o 2025-06-05T23:24:22.0325488Z [ 71%] Linking CXX static library libabsl_log_initialize.a 2025-06-05T23:24:22.0326222Z [ 71%] Built target log_initialize 2025-06-05T23:24:22.0327054Z [ 71%] Linking CXX static library libabsl_flags_internal.a 2025-06-05T23:24:22.0327759Z [ 71%] Built target flags_internal 2025-06-05T23:24:22.0328667Z [ 71%] Linking CXX static library libabsl_log_internal_log_sink_set.a 2025-06-05T23:24:22.0329530Z [ 71%] Built target log_internal_log_sink_set 2025-06-05T23:24:22.0331997Z [ 71%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_message.dir/internal/log_message.cc.o 2025-06-05T23:24:22.0334277Z [ 72%] Linking CXX static library libabsl_status.a 2025-06-05T23:24:22.0335235Z [ 72%] Linking CXX static library libabsl_raw_hash_set.a 2025-06-05T23:24:22.0335941Z [ 72%] Built target raw_hash_set 2025-06-05T23:24:22.0336441Z [ 72%] Built target status 2025-06-05T23:24:22.0338701Z [ 72%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_reflection.dir/reflection.cc.o 2025-06-05T23:24:22.0342407Z [ 72%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/status/CMakeFiles/statusor.dir/statusor.cc.o 2025-06-05T23:24:22.0344701Z [ 72%] Linking CXX static library libabsl_log_internal_message.a 2025-06-05T23:24:22.0345580Z [ 72%] Built target log_internal_message 2025-06-05T23:24:22.0347901Z [ 73%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_check_op.dir/internal/check_op.cc.o 2025-06-05T23:24:22.0351844Z [ 73%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/die_if_null.dir/die_if_null.cc.o 2025-06-05T23:24:22.0356483Z [ 73%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/arenastring.cc.o 2025-06-05T23:24:22.0362201Z [ 74%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/arena.cc.o 2025-06-05T23:24:22.0368241Z [ 74%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/bytestream.cc.o 2025-06-05T23:24:22.0371657Z [ 74%] Linking CXX static library libabsl_statusor.a 2025-06-05T23:24:22.0372330Z [ 74%] Built target statusor 2025-06-05T23:24:22.0375765Z [ 74%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/coded_stream.cc.o 2025-06-05T23:24:22.0379053Z [ 74%] Linking CXX static library libabsl_die_if_null.a 2025-06-05T23:24:22.0382521Z [ 74%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/common.cc.o 2025-06-05T23:24:22.0385470Z [ 74%] Built target die_if_null 2025-06-05T23:24:22.0386383Z [ 75%] Linking CXX static library libabsl_log_internal_check_op.a 2025-06-05T23:24:22.0389898Z [ 75%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/extension_set.cc.o 2025-06-05T23:24:22.0393217Z [ 76%] Linking CXX static library libabsl_flags_reflection.a 2025-06-05T23:24:22.0396822Z [ 76%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_enum_util.cc.o 2025-06-05T23:24:22.0399805Z [ 76%] Built target log_internal_check_op 2025-06-05T23:24:22.0400408Z [ 76%] Built target flags_reflection 2025-06-05T23:24:22.0404005Z [ 76%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_message_table_driven_lite.cc.o 2025-06-05T23:24:23.5154851Z [ 76%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_message_util.cc.o 2025-06-05T23:24:23.5160978Z [ 77%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/implicit_weak_message.cc.o 2025-06-05T23:24:23.5165985Z [ 77%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/bitmap256.cc.o 2025-06-05T23:24:23.5170494Z [ 77%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/int128.cc.o 2025-06-05T23:24:23.5175039Z [ 78%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/bitstate.cc.o 2025-06-05T23:24:23.5179582Z [ 78%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/io_win32.cc.o 2025-06-05T23:24:23.5185754Z [ 78%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/message_lite.cc.o 2025-06-05T23:24:23.5191681Z [ 78%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/parse_context.cc.o 2025-06-05T23:24:23.5197480Z [ 79%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/repeated_field.cc.o 2025-06-05T23:24:23.5203284Z [ 79%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/status.cc.o 2025-06-05T23:24:23.5209056Z [ 79%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/statusor.cc.o 2025-06-05T23:24:23.5213407Z [ 79%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/compile.cc.o 2025-06-05T23:24:23.5216597Z [ 79%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/dfa.cc.o 2025-06-05T23:24:23.5219846Z [ 79%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/filtered_re2.cc.o 2025-06-05T23:24:23.5223024Z [ 79%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/mimics_pcre.cc.o 2025-06-05T23:24:23.5226345Z [ 80%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/nfa.cc.o 2025-06-05T23:24:23.5230883Z [ 80%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/stringpiece.cc.o 2025-06-05T23:24:23.5236851Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/stringprintf.cc.o 2025-06-05T23:24:23.5241234Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/onepass.cc.o 2025-06-05T23:24:23.5244916Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_usage_internal.dir/internal/usage.cc.o 2025-06-05T23:24:23.5248662Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_flags.dir/flags.cc.o 2025-06-05T23:24:23.5252095Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/parse.cc.o 2025-06-05T23:24:23.5256787Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/structurally_valid.cc.o 2025-06-05T23:24:23.5261061Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/perl_groups.cc.o 2025-06-05T23:24:23.5265902Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/strutil.cc.o 2025-06-05T23:24:23.5270347Z [ 82%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/prefilter.cc.o 2025-06-05T23:24:23.5273629Z [ 82%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/prefilter_tree.cc.o 2025-06-05T23:24:23.5276837Z [ 82%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/prog.cc.o 2025-06-05T23:24:23.5278825Z [ 83%] Linking CXX static library libabsl_log_flags.a 2025-06-05T23:24:23.5279514Z [ 83%] Built target log_flags 2025-06-05T23:24:23.5281402Z [ 83%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/re2.cc.o 2025-06-05T23:24:23.5284501Z [ 83%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/regexp.cc.o 2025-06-05T23:24:23.5289045Z [ 83%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/time.cc.o 2025-06-05T23:24:23.5292371Z [ 83%] Linking CXX static library libabsl_flags_usage_internal.a 2025-06-05T23:24:23.5293065Z [ 83%] Built target flags_usage_internal 2025-06-05T23:24:23.5295008Z [ 84%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/set.cc.o 2025-06-05T23:24:23.5298316Z [ 84%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/simplify.cc.o 2025-06-05T23:24:23.5301481Z [ 84%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/tostring.cc.o 2025-06-05T23:24:25.0321568Z [ 84%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/wire_format_lite.cc.o 2025-06-05T23:24:25.0328108Z [ 85%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream.cc.o 2025-06-05T23:24:25.0332612Z [ 85%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/unicode_casefold.cc.o 2025-06-05T23:24:25.0336185Z [ 85%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/unicode_groups.cc.o 2025-06-05T23:24:25.0341237Z [ 85%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream_impl.cc.o 2025-06-05T23:24:25.0347356Z [ 85%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream_impl_lite.cc.o 2025-06-05T23:24:25.0351981Z [ 86%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/util/rune.cc.o 2025-06-05T23:24:25.0355981Z [ 86%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/builtin_pb/sentencepiece.pb.cc.o 2025-06-05T23:24:25.0359641Z [ 86%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_usage.dir/usage.cc.o 2025-06-05T23:24:25.0363436Z [ 86%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/builtin_pb/sentencepiece_model.pb.cc.o 2025-06-05T23:24:25.0367261Z [ 86%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/util/strutil.cc.o 2025-06-05T23:24:25.0370715Z [ 87%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/bpe_model.cc.o 2025-06-05T23:24:25.0374402Z [ 87%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/char_model.cc.o 2025-06-05T23:24:25.0378153Z [ 87%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/error.cc.o 2025-06-05T23:24:25.0380285Z [ 87%] Linking CXX static library libre2.a 2025-06-05T23:24:25.0381038Z [ 87%] Built target re2 2025-06-05T23:24:25.0384101Z [ 87%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/filesystem.cc.o 2025-06-05T23:24:25.0386717Z [ 87%] Linking CXX static library libabsl_flags_usage.a 2025-06-05T23:24:25.0388942Z [ 87%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/bpe_tokenizer_base.cpp.o 2025-06-05T23:24:25.0390740Z [ 87%] Built target flags_usage 2025-06-05T23:24:25.0392964Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/model_factory.cc.o 2025-06-05T23:24:25.0396826Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_parse.dir/parse.cc.o 2025-06-05T23:24:25.0400565Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/model_interface.cc.o 2025-06-05T23:24:25.0403900Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/normalizer.cc.o 2025-06-05T23:24:25.0406733Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/sentencepiece_processor.cc.o 2025-06-05T23:24:25.0411576Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/unigram_model.cc.o 2025-06-05T23:24:25.0415124Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/hf_tokenizer.cpp.o 2025-06-05T23:24:25.0418627Z [ 89%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/util.cc.o 2025-06-05T23:24:25.0422325Z [ 89%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/word_model.cc.o 2025-06-05T23:24:25.0425855Z [ 89%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/llama2c_tokenizer.cpp.o 2025-06-05T23:24:25.0427930Z [ 89%] Linking CXX static library libabsl_flags_parse.a 2025-06-05T23:24:25.0428639Z [ 89%] Built target flags_parse 2025-06-05T23:24:25.0431847Z [ 89%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/absl/flags/flag.cc.o 2025-06-05T23:24:25.0436255Z [ 89%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/pre_tokenizer.cpp.o 2025-06-05T23:24:25.0439655Z [ 90%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/re2_regex.cpp.o 2025-06-05T23:24:25.0442800Z [ 90%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/regex.cpp.o 2025-06-05T23:24:25.0445732Z [ 90%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/sentencepiece.cpp.o 2025-06-05T23:24:25.0449021Z [ 90%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/tiktoken.cpp.o 2025-06-05T23:24:25.0452170Z [ 91%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/token_decoder.cpp.o 2025-06-05T23:24:25.0455649Z [ 91%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/third-party/llama.cpp-unicode/src/unicode-data.cpp.o 2025-06-05T23:24:25.0457925Z [ 91%] Linking CXX shared library libsentencepiece.so 2025-06-05T23:24:25.0460450Z [ 91%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/third-party/llama.cpp-unicode/src/unicode.cpp.o 2025-06-05T23:24:25.0462461Z [ 91%] Built target sentencepiece 2025-06-05T23:24:25.0464732Z [ 91%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_encode.dir/spm_encode_main.cc.o 2025-06-05T23:24:25.0468727Z [ 91%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_decode.dir/spm_decode_main.cc.o 2025-06-05T23:24:26.2726146Z [ 91%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/builder.cc.o 2025-06-05T23:24:26.2730106Z [ 91%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/unicode_script.cc.o 2025-06-05T23:24:26.2734057Z [ 92%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/trainer_factory.cc.o 2025-06-05T23:24:26.2737974Z [ 92%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_export_vocab.dir/spm_export_vocab_main.cc.o 2025-06-05T23:24:26.2741246Z /pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode.cpp:245:29: warning: 'codecvt_utf8' is deprecated [-Wdeprecated-declarations] 2025-06-05T23:24:26.2743192Z 245 | std::wstring_convert> conv; 2025-06-05T23:24:26.2743868Z | ^ 2025-06-05T23:24:26.2745382Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/codecvt:194:28: note: 'codecvt_utf8' has been explicitly marked deprecated here 2025-06-05T23:24:26.2747534Z 194 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 codecvt_utf8 : public __codecvt_utf8<_Elem> { 2025-06-05T23:24:26.2748535Z | ^ 2025-06-05T23:24:26.2749978Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:942:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17' 2025-06-05T23:24:26.2751566Z 942 | # define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED 2025-06-05T23:24:26.2752251Z | ^ 2025-06-05T23:24:26.2753651Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:915:49: note: expanded from macro '_LIBCPP_DEPRECATED' 2025-06-05T23:24:26.2755164Z 915 | # define _LIBCPP_DEPRECATED __attribute__((__deprecated__)) 2025-06-05T23:24:26.2755907Z | ^ 2025-06-05T23:24:26.2757823Z /pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode.cpp:245:8: warning: 'wstring_convert>' is deprecated [-Wdeprecated-declarations] 2025-06-05T23:24:26.2760088Z 245 | std::wstring_convert> conv; 2025-06-05T23:24:26.2760741Z | ^ 2025-06-05T23:24:26.2762306Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/locale:3114:28: note: 'wstring_convert>' has been explicitly marked deprecated here 2025-06-05T23:24:26.2764301Z 3114 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 wstring_convert { 2025-06-05T23:24:26.2765299Z | ^ 2025-06-05T23:24:26.2766582Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:942:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17' 2025-06-05T23:24:26.2768233Z 942 | # define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED 2025-06-05T23:24:26.2768907Z | ^ 2025-06-05T23:24:26.2770294Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:915:49: note: expanded from macro '_LIBCPP_DEPRECATED' 2025-06-05T23:24:26.2771808Z 915 | # define _LIBCPP_DEPRECATED __attribute__((__deprecated__)) 2025-06-05T23:24:26.2772536Z | ^ 2025-06-05T23:24:26.2773216Z 2 warnings generated. 2025-06-05T23:24:26.2774036Z [ 92%] Linking CXX static library libtokenizers.a 2025-06-05T23:24:26.2774717Z [ 92%] Built target tokenizers 2025-06-05T23:24:26.2777125Z [ 92%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/trainer_interface.cc.o 2025-06-05T23:24:26.2779284Z [ 93%] Linking CXX executable spm_decode 2025-06-05T23:24:26.2780988Z [ 93%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/runner.cpp.o 2025-06-05T23:24:26.2783420Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/builder.cc:47:15: warning: unused variable 'kMaxUnicode' [-Wunused-const-variable] 2025-06-05T23:24:26.2784912Z 47 | constexpr int kMaxUnicode = 0x10FFFF; 2025-06-05T23:24:26.2785598Z | ^~~~~~~~~~~ 2025-06-05T23:24:26.2787275Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/builder.cc:49:36: warning: unused variable 'kDefaultNormalizerName' [-Wunused-const-variable] 2025-06-05T23:24:26.2789238Z 49 | static constexpr absl::string_view kDefaultNormalizerName = "nfkc"; 2025-06-05T23:24:26.2790061Z | ^~~~~~~~~~~~~~~~~~~~~~ 2025-06-05T23:24:26.2790617Z 2 warnings generated. 2025-06-05T23:24:26.2793032Z [ 94%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/examples/models/llama/tokenizer/llama_tiktoken.cpp.o 2025-06-05T23:24:26.2795172Z [ 94%] Built target spm_decode 2025-06-05T23:24:26.2797437Z [ 94%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:24:26.2799425Z [ 94%] Linking CXX executable spm_encode 2025-06-05T23:24:26.2800040Z [ 94%] Built target spm_encode 2025-06-05T23:24:26.2802470Z [ 94%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/unigram_model_trainer.cc.o 2025-06-05T23:24:26.2806419Z [ 94%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/runner/text_decoder_runner.cpp.o 2025-06-05T23:24:26.2808669Z [ 95%] Linking CXX executable spm_export_vocab 2025-06-05T23:24:26.2809564Z [ 95%] Built target spm_export_vocab 2025-06-05T23:24:26.2811841Z [ 95%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/runner/text_prefiller.cpp.o 2025-06-05T23:24:26.2815520Z [ 95%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/word_model_trainer.cc.o 2025-06-05T23:24:26.2818402Z [ 95%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/sampler/sampler.cpp.o 2025-06-05T23:24:26.2821695Z [ 96%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/bpe_tokenizer_base.cpp.o 2025-06-05T23:24:26.2825633Z [ 97%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/char_model_trainer.cc.o 2025-06-05T23:24:26.2829657Z [ 97%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/bpe_model_trainer.cc.o 2025-06-05T23:24:26.2833686Z [ 97%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/hf_tokenizer.cpp.o 2025-06-05T23:24:26.2837606Z [ 97%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/llama2c_tokenizer.cpp.o 2025-06-05T23:24:26.2841622Z [ 97%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/sentencepiece_trainer.cc.o 2025-06-05T23:24:26.2845675Z [ 97%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/pretokenizer_for_training.cc.o 2025-06-05T23:24:26.2849686Z [ 97%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/pre_tokenizer.cpp.o 2025-06-05T23:24:26.2853493Z [ 98%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/re2_regex.cpp.o 2025-06-05T23:24:26.2857249Z [ 98%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/regex.cpp.o 2025-06-05T23:24:26.2861004Z [ 98%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/tiktoken.cpp.o 2025-06-05T23:24:28.8348543Z [ 98%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/token_decoder.cpp.o 2025-06-05T23:24:28.8350786Z [ 98%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode-data.cpp.o 2025-06-05T23:24:28.8353110Z [ 99%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode.cpp.o 2025-06-05T23:24:28.8355522Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_trainer.cc:207:16: warning: 'done' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] 2025-06-05T23:24:28.8356664Z 207 | virtual bool done() const { return iter_ == end_; } 2025-06-05T23:24:28.8357011Z | ^ 2025-06-05T23:24:28.8357778Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_trainer.h:52:16: note: overridden virtual function is here 2025-06-05T23:24:28.8358594Z 52 | virtual bool done() const = 0; 2025-06-05T23:24:28.8358886Z | ^ 2025-06-05T23:24:28.8359119Z 1 warning generated. 2025-06-05T23:24:28.8359601Z [ 99%] Linking CXX shared library libsentencepiece_train.so 2025-06-05T23:24:28.8360012Z [ 99%] Built target sentencepiece_train 2025-06-05T23:24:28.8361249Z [ 99%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_normalize.dir/spm_normalize_main.cc.o 2025-06-05T23:24:28.8363256Z [ 99%] Building CXX object /pytorch/executorch/cmake-out-android-arm64-v8a/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_train.dir/spm_train_main.cc.o 2025-06-05T23:24:28.8364857Z /pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode.cpp:245:29: warning: 'codecvt_utf8' is deprecated [-Wdeprecated-declarations] 2025-06-05T23:24:28.8366114Z 245 | std::wstring_convert> conv; 2025-06-05T23:24:28.8366488Z | ^ 2025-06-05T23:24:28.8367334Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/codecvt:194:28: note: 'codecvt_utf8' has been explicitly marked deprecated here 2025-06-05T23:24:28.8368410Z 194 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 codecvt_utf8 : public __codecvt_utf8<_Elem> { 2025-06-05T23:24:28.8368952Z | ^ 2025-06-05T23:24:28.8369682Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:942:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17' 2025-06-05T23:24:28.8370524Z 942 | # define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED 2025-06-05T23:24:28.8370899Z | ^ 2025-06-05T23:24:28.8371635Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:915:49: note: expanded from macro '_LIBCPP_DEPRECATED' 2025-06-05T23:24:28.8372448Z 915 | # define _LIBCPP_DEPRECATED __attribute__((__deprecated__)) 2025-06-05T23:24:28.8372843Z | ^ 2025-06-05T23:24:28.8373835Z /pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode.cpp:245:8: warning: 'wstring_convert>' is deprecated [-Wdeprecated-declarations] 2025-06-05T23:24:28.8374870Z 245 | std::wstring_convert> conv; 2025-06-05T23:24:28.8375227Z | ^ 2025-06-05T23:24:28.8376061Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/locale:3114:28: note: 'wstring_convert>' has been explicitly marked deprecated here 2025-06-05T23:24:28.8377092Z 3114 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 wstring_convert { 2025-06-05T23:24:28.8377533Z | ^ 2025-06-05T23:24:28.8378256Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:942:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17' 2025-06-05T23:24:28.8379087Z 942 | # define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED 2025-06-05T23:24:28.8379472Z | ^ 2025-06-05T23:24:28.8380178Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:915:49: note: expanded from macro '_LIBCPP_DEPRECATED' 2025-06-05T23:24:28.8381034Z 915 | # define _LIBCPP_DEPRECATED __attribute__((__deprecated__)) 2025-06-05T23:24:28.8381427Z | ^ 2025-06-05T23:24:28.8381739Z 2 warnings generated. 2025-06-05T23:24:28.8382131Z [ 99%] Linking CXX static library libllama_runner.a 2025-06-05T23:24:28.8382504Z [ 99%] Built target llama_runner 2025-06-05T23:24:28.8383005Z [ 99%] Building CXX object CMakeFiles/executorch_jni.dir/jni/jni_layer.cpp.o 2025-06-05T23:24:28.8383753Z [ 99%] Building CXX object CMakeFiles/executorch_jni.dir/jni/jni_layer_runtime.cpp.o 2025-06-05T23:24:28.8384510Z [ 99%] Building CXX object CMakeFiles/executorch_jni.dir/jni/jni_layer_llama.cpp.o 2025-06-05T23:24:28.8385230Z [ 99%] Building CXX object CMakeFiles/executorch_jni.dir/jni/log.cpp.o 2025-06-05T23:24:28.8385845Z [ 99%] Linking CXX executable spm_train 2025-06-05T23:24:28.8386268Z [ 99%] Linking CXX executable spm_normalize 2025-06-05T23:24:28.8386619Z [ 99%] Built target spm_train 2025-06-05T23:24:28.8386888Z [ 99%] Built target spm_normalize 2025-06-05T23:24:28.8387325Z [100%] Linking CXX shared library libexecutorch_jni.so 2025-06-05T23:24:28.8387721Z [100%] Built target executorch_jni 2025-06-05T23:24:28.8388101Z + local SO_STAGE_DIR=cmake-out-android-so/arm64-v8a 2025-06-05T23:24:28.8388488Z + mkdir -p cmake-out-android-so/arm64-v8a 2025-06-05T23:24:28.8389217Z + cp cmake-out-android-arm64-v8a/extension/android/libexecutorch_jni.so cmake-out-android-so/arm64-v8a/libexecutorch.so 2025-06-05T23:24:28.8389866Z + '[' -n '' ']' 2025-06-05T23:24:28.8390070Z + '[' -n '' ']' 2025-06-05T23:24:28.8390311Z + for ANDROID_ABI in "${ANDROID_ABIS[@]}" 2025-06-05T23:24:28.8390625Z + build_android_native_library x86_64 2025-06-05T23:24:28.8390918Z + ANDROID_ABI=x86_64 2025-06-05T23:24:28.8391155Z + ANDROID_NDK=/opt/ndk 2025-06-05T23:24:28.8391406Z + CMAKE_OUT=cmake-out-android-x86_64 2025-06-05T23:24:28.8391718Z + EXECUTORCH_CMAKE_BUILD_TYPE=Release 2025-06-05T23:24:28.8391990Z + QNN_SDK_ROOT= 2025-06-05T23:24:28.8392200Z + '[' -n '' ']' 2025-06-05T23:24:28.8392408Z + EXECUTORCH_BUILD_QNN=OFF 2025-06-05T23:24:28.8392673Z + NEURON_BUFFER_ALLOCATOR_LIB= 2025-06-05T23:24:28.8392935Z + NEURON_USDK_ADAPTER_LIB= 2025-06-05T23:24:28.8393194Z + '[' -n '' ']' 2025-06-05T23:24:28.8393410Z + EXECUTORCH_BUILD_NEURON=OFF 2025-06-05T23:24:28.8393683Z + EXECUTORCH_BUILD_VULKAN=OFF 2025-06-05T23:24:28.8397607Z + cmake . -DCMAKE_INSTALL_PREFIX=cmake-out-android-x86_64 -DCMAKE_TOOLCHAIN_FILE=/opt/ndk/build/cmake/android.toolchain.cmake -DANDROID_ABI=x86_64 -DANDROID_PLATFORM=android-26 -DBUILD_TESTING=OFF -DEXECUTORCH_PAL_DEFAULT=android -DEXECUTORCH_ENABLE_LOGGING=ON -DEXECUTORCH_BUILD_DEVTOOLS=ON -DEXECUTORCH_ENABLE_EVENT_TRACER=OFF -DEXECUTORCH_LOG_LEVEL=Info -DEXECUTORCH_BUILD_XNNPACK=ON -DEXECUTORCH_XNNPACK_SHARED_WORKSPACE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON -DEXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL=ON -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON -DEXECUTORCH_BUILD_EXTENSION_TRAINING=ON -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON -DEXECUTORCH_BUILD_NEURON=OFF -DNEURON_BUFFER_ALLOCATOR_LIB= -DEXECUTORCH_BUILD_QNN=OFF -DQNN_SDK_ROOT= -DEXECUTORCH_BUILD_VULKAN=OFF -DSUPPORT_REGEX_LOOKAHEAD=ON -DCMAKE_BUILD_TYPE=Release -Bcmake-out-android-x86_64 2025-06-05T23:24:28.8401935Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:28.8402650Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:28.8403050Z CMake. 2025-06-05T23:24:28.8403162Z 2025-06-05T23:24:28.8403396Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:28.8403936Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:28.8404458Z to work with policies introduced by or earlier. 2025-06-05T23:24:28.8404810Z Call Stack (most recent call first): 2025-06-05T23:24:28.8405511Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:146 (include) 2025-06-05T23:24:28.8406214Z CMakeLists.txt:49 (project) 2025-06-05T23:24:28.8406395Z 2025-06-05T23:24:28.8406495Z  2025-06-05T23:24:28.8407114Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:28.8407843Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:28.8408258Z CMake. 2025-06-05T23:24:28.8408365Z 2025-06-05T23:24:28.8408595Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:28.8409175Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:28.8409653Z to work with policies introduced by or earlier. 2025-06-05T23:24:28.8410002Z Call Stack (most recent call first): 2025-06-05T23:24:28.8410381Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:28.8411150Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:146 (include) 2025-06-05T23:24:28.8411884Z CMakeLists.txt:49 (project) 2025-06-05T23:24:28.8412064Z 2025-06-05T23:24:28.8412172Z  2025-06-05T23:24:28.8412735Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:28.8413472Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:28.8413871Z CMake. 2025-06-05T23:24:28.8413990Z 2025-06-05T23:24:28.8414207Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:28.8414745Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:28.8415223Z to work with policies introduced by or earlier. 2025-06-05T23:24:28.8415583Z Call Stack (most recent call first): 2025-06-05T23:24:28.8416003Z cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:28.8416449Z CMakeLists.txt:49 (project) 2025-06-05T23:24:28.8416625Z 2025-06-05T23:24:28.8416721Z  2025-06-05T23:24:29.1633360Z -- The C compiler identification is Clang 18.0.2 2025-06-05T23:24:29.1634214Z -- The CXX compiler identification is Clang 18.0.2 2025-06-05T23:24:29.1635664Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:29.1636951Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.1637738Z CMake. 2025-06-05T23:24:29.1637962Z 2025-06-05T23:24:29.1638368Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.1639435Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.1640334Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.1641016Z Call Stack (most recent call first): 2025-06-05T23:24:29.1642341Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:29.1644484Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:29.1646552Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:29.1647873Z CMakeLists.txt:49 (project) 2025-06-05T23:24:29.1648213Z 2025-06-05T23:24:29.1648427Z  2025-06-05T23:24:29.1648791Z -- Detecting C compiler ABI info 2025-06-05T23:24:29.1650069Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:29.1651417Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.1653087Z CMake. 2025-06-05T23:24:29.1653261Z 2025-06-05T23:24:29.1653637Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.1654584Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.1655421Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.1656026Z Call Stack (most recent call first): 2025-06-05T23:24:29.1656931Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:29.1658469Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-uZKX0V/CMakeLists.txt:2 (project) 2025-06-05T23:24:29.1659326Z 2025-06-05T23:24:29.1659586Z  2025-06-05T23:24:29.1660618Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:29.1662149Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.1662864Z CMake. 2025-06-05T23:24:29.1663055Z 2025-06-05T23:24:29.1663424Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.1664378Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.1665522Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.1666253Z Call Stack (most recent call first): 2025-06-05T23:24:29.1666888Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:29.1668077Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:29.1669784Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-uZKX0V/CMakeLists.txt:2 (project) 2025-06-05T23:24:29.1670762Z 2025-06-05T23:24:29.1671003Z  2025-06-05T23:24:29.1671807Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:29.1672973Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.1673743Z CMake. 2025-06-05T23:24:29.1673939Z 2025-06-05T23:24:29.1674353Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.1675387Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.1676289Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.1676923Z Call Stack (most recent call first): 2025-06-05T23:24:29.1678201Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:29.1680186Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:29.1682134Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:29.1684020Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-uZKX0V/CMakeLists.txt:2 (project) 2025-06-05T23:24:29.1685042Z 2025-06-05T23:24:29.1685259Z  2025-06-05T23:24:29.1685663Z -- Detecting C compiler ABI info - done 2025-06-05T23:24:29.1686691Z -- Check for working C compiler: /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang - skipped 2025-06-05T23:24:29.1687706Z -- Detecting C compile features 2025-06-05T23:24:29.1688296Z -- Detecting C compile features - done 2025-06-05T23:24:29.1688868Z -- Detecting CXX compiler ABI info 2025-06-05T23:24:29.1690143Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:29.1691410Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.1692206Z CMake. 2025-06-05T23:24:29.1692412Z 2025-06-05T23:24:29.1692809Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.1693836Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.1694850Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.1695524Z Call Stack (most recent call first): 2025-06-05T23:24:29.1696512Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:29.1698235Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-PmQx9k/CMakeLists.txt:2 (project) 2025-06-05T23:24:29.1699317Z 2025-06-05T23:24:29.1699529Z  2025-06-05T23:24:29.1700688Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:29.1702124Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.1702892Z CMake. 2025-06-05T23:24:29.1703208Z 2025-06-05T23:24:29.1703622Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.1704665Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.1705664Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.1706349Z Call Stack (most recent call first): 2025-06-05T23:24:29.1707040Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:29.1708260Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:29.1709942Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-PmQx9k/CMakeLists.txt:2 (project) 2025-06-05T23:24:29.1710983Z 2025-06-05T23:24:29.1711185Z  2025-06-05T23:24:29.1712183Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:29.1713338Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.1714127Z CMake. 2025-06-05T23:24:29.1714299Z 2025-06-05T23:24:29.1714671Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.1715612Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.1716469Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.1717077Z Call Stack (most recent call first): 2025-06-05T23:24:29.1718399Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:29.1720553Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:29.1722562Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:29.1724573Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-PmQx9k/CMakeLists.txt:2 (project) 2025-06-05T23:24:29.1725640Z 2025-06-05T23:24:29.1725868Z  2025-06-05T23:24:29.1726284Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:24:29.1727360Z -- Check for working CXX compiler: /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ - skipped 2025-06-05T23:24:29.1728421Z -- Detecting CXX compile features 2025-06-05T23:24:29.1728976Z -- Detecting CXX compile features - done 2025-06-05T23:24:29.1729569Z -- --- Configured Options --- 2025-06-05T23:24:29.1729907Z 2025-06-05T23:24:29.1730133Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:24:29.1730743Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:24:29.1731351Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:24:29.1731996Z -- PYTHON_EXECUTABLE : python 2025-06-05T23:24:29.1732660Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:24:29.1733504Z -- CMAKE_TOOLCHAIN_FILE : /opt/ndk/build/cmake/android.toolchain.cmake 2025-06-05T23:24:29.1734374Z -- BUCK2 x (unset) 2025-06-05T23:24:29.1735007Z -- EXECUTORCH_ENABLE_LOGGING : ON 2025-06-05T23:24:29.1735775Z -- EXECUTORCH_BUILD_COREML : OFF 2025-06-05T23:24:29.1736452Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:24:29.1737147Z -- EXECUTORCH_PAL_DEFAULT : android 2025-06-05T23:24:29.1738202Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/android.cpp 2025-06-05T23:24:29.1739247Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:24:29.1739928Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:24:29.1740597Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:24:29.1741271Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:24:29.1741941Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:24:29.1742597Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : ON 2025-06-05T23:24:29.1743326Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : OFF 2025-06-05T23:24:29.1744009Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : OFF 2025-06-05T23:24:29.1744707Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : ON 2025-06-05T23:24:29.1745374Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : OFF 2025-06-05T23:24:29.1746159Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:24:29.1746812Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : ON 2025-06-05T23:24:29.1747447Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : ON 2025-06-05T23:24:29.1748155Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-06-05T23:24:29.1748728Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : ON 2025-06-05T23:24:29.1749318Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:24:29.1749955Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:24:29.1750480Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:24:29.1750989Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:24:29.1751558Z -- EXECUTORCH_BUILD_PYBIND : OFF 2025-06-05T23:24:29.1752091Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:24:29.1752722Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : ON 2025-06-05T23:24:29.1753373Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-06-05T23:24:29.1754028Z -- EXECUTORCH_BUILD_DEVTOOLS : ON 2025-06-05T23:24:29.1754688Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:24:29.1755338Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:24:29.1756011Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:24:29.4129590Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:24:29.4130356Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-06-05T23:24:29.4130745Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:24:29.4131088Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:24:29.4131436Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:24:29.4131824Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:24:29.4132163Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:24:29.4132508Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:24:29.4132858Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:24:29.4133224Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:24:29.4133584Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:24:29.4134062Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : ON 2025-06-05T23:24:29.4134482Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:24:29.4135081Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:24:29.4135479Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:24:29.4135802Z -- -------------------------- 2025-06-05T23:24:29.4145049Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:24:29.4146138Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:24:29.4146814Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.4147243Z CMake. 2025-06-05T23:24:29.4147534Z 2025-06-05T23:24:29.4147756Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.4148315Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.4148785Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.4149055Z 2025-06-05T23:24:29.4149162Z  2025-06-05T23:24:29.4149435Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:24:29.4149894Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:24:29.4150288Z -- Setting Clang compiler options 2025-06-05T23:24:29.4151688Z -- Configured C_FLAGS: -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:24:29.4153702Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:24:29.4154437Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.4154842Z CMake. 2025-06-05T23:24:29.4154967Z 2025-06-05T23:24:29.4155186Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.4155779Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.4156262Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.4156514Z 2025-06-05T23:24:29.4156630Z  2025-06-05T23:24:29.4157275Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:24:29.4158013Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.4158419Z CMake. 2025-06-05T23:24:29.4158532Z 2025-06-05T23:24:29.4158761Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.4159300Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.4159773Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.4160023Z 2025-06-05T23:24:29.4160121Z  2025-06-05T23:24:29.4160356Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:24:29.4161038Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:29.4161747Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.4162160Z CMake. 2025-06-05T23:24:29.4162267Z 2025-06-05T23:24:29.4162485Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.4163030Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.4163498Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.4163862Z Call Stack (most recent call first): 2025-06-05T23:24:29.4164393Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:29.4165589Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-ueha14/CMakeLists.txt:4 (project) 2025-06-05T23:24:29.4166142Z 2025-06-05T23:24:29.4166279Z  2025-06-05T23:24:29.4166888Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:29.4167631Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.4168036Z CMake. 2025-06-05T23:24:29.4168158Z 2025-06-05T23:24:29.4168381Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.4168930Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.4169395Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.4169754Z Call Stack (most recent call first): 2025-06-05T23:24:29.4170121Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:29.4170833Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:29.4171695Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-ueha14/CMakeLists.txt:4 (project) 2025-06-05T23:24:29.4172258Z 2025-06-05T23:24:29.4172359Z  2025-06-05T23:24:29.4172871Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:29.4173506Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.4173918Z CMake. 2025-06-05T23:24:29.4174027Z 2025-06-05T23:24:29.4174244Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.4174794Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.4175334Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.4175682Z Call Stack (most recent call first): 2025-06-05T23:24:29.4176378Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:29.4177448Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:29.4178561Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:29.4179618Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-ueha14/CMakeLists.txt:4 (project) 2025-06-05T23:24:29.4180177Z 2025-06-05T23:24:29.4180280Z  2025-06-05T23:24:29.4180535Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2025-06-05T23:24:29.4180891Z -- Check if compiler accepts -pthread 2025-06-05T23:24:29.4181583Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:29.4182367Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.4182853Z CMake. 2025-06-05T23:24:29.4183014Z 2025-06-05T23:24:29.4183302Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.4183908Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.4184634Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.4185147Z Call Stack (most recent call first): 2025-06-05T23:24:29.4185778Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:29.4186661Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-M8ta7c/CMakeLists.txt:4 (project) 2025-06-05T23:24:29.4187218Z 2025-06-05T23:24:29.4187383Z  2025-06-05T23:24:29.4188016Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:29.4188748Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.4189168Z CMake. 2025-06-05T23:24:29.4189275Z 2025-06-05T23:24:29.4189493Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.4190040Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.4190503Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.4190868Z Call Stack (most recent call first): 2025-06-05T23:24:29.4191246Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:29.4191845Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:29.4192716Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-M8ta7c/CMakeLists.txt:4 (project) 2025-06-05T23:24:29.4193261Z 2025-06-05T23:24:29.4193359Z  2025-06-05T23:24:29.4193862Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:29.4194591Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.4195005Z CMake. 2025-06-05T23:24:29.4195114Z 2025-06-05T23:24:29.4195347Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.4195888Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.4196368Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.4196716Z Call Stack (most recent call first): 2025-06-05T23:24:29.4197406Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:29.4198494Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:29.4199583Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:29.4200599Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-M8ta7c/CMakeLists.txt:4 (project) 2025-06-05T23:24:29.4201144Z 2025-06-05T23:24:29.4201249Z  2025-06-05T23:24:29.4201484Z -- Check if compiler accepts -pthread - yes 2025-06-05T23:24:29.4201793Z -- Found Threads: TRUE 2025-06-05T23:24:29.4202512Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:24:29.4203268Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.4203671Z CMake. 2025-06-05T23:24:29.4203818Z 2025-06-05T23:24:29.4204053Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.4204593Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:29.4205074Z to work with policies introduced by or earlier. 2025-06-05T23:24:29.4205325Z 2025-06-05T23:24:29.4205435Z  2025-06-05T23:24:29.4205650Z -- Looking for pthread_create in pthreads 2025-06-05T23:24:29.4206341Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:29.4207041Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:29.4207454Z CMake. 2025-06-05T23:24:29.4207562Z 2025-06-05T23:24:29.4207780Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:29.4208324Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.2227233Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.2227895Z Call Stack (most recent call first): 2025-06-05T23:24:32.2228424Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:32.2229322Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-7qTVRt/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.2229875Z 2025-06-05T23:24:32.2230173Z  2025-06-05T23:24:32.2230789Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:32.2231530Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.2231934Z CMake. 2025-06-05T23:24:32.2232054Z 2025-06-05T23:24:32.2232283Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.2232824Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.2233303Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.2233663Z Call Stack (most recent call first): 2025-06-05T23:24:32.2234033Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:32.2234647Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:32.2235506Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-7qTVRt/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.2236459Z 2025-06-05T23:24:32.2236652Z  2025-06-05T23:24:32.2237378Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:32.2238030Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.2238456Z CMake. 2025-06-05T23:24:32.2238566Z 2025-06-05T23:24:32.2238785Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.2239336Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.2239803Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.2240165Z Call Stack (most recent call first): 2025-06-05T23:24:32.2240849Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:32.2242045Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:32.2243210Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:32.2244435Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-7qTVRt/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.2245077Z 2025-06-05T23:24:32.2245217Z  2025-06-05T23:24:32.2245476Z -- Looking for pthread_create in pthreads - not found 2025-06-05T23:24:32.2245859Z -- Looking for pthread_create in pthread 2025-06-05T23:24:32.2246623Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:32.2247328Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.2247750Z CMake. 2025-06-05T23:24:32.2247863Z 2025-06-05T23:24:32.2248131Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.2248675Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.2249158Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.2249510Z Call Stack (most recent call first): 2025-06-05T23:24:32.2250042Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:32.2250908Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-MfMazN/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.2251465Z 2025-06-05T23:24:32.2251565Z  2025-06-05T23:24:32.2252179Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:32.2252905Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.2253321Z CMake. 2025-06-05T23:24:32.2253429Z 2025-06-05T23:24:32.2253647Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.2254195Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.2254671Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.2255016Z Call Stack (most recent call first): 2025-06-05T23:24:32.2255395Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:32.2255994Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:32.2256869Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-MfMazN/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.2257410Z 2025-06-05T23:24:32.2257508Z  2025-06-05T23:24:32.2258011Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:32.2258651Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.2259051Z CMake. 2025-06-05T23:24:32.2259158Z 2025-06-05T23:24:32.2259386Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.2259972Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.2260445Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.2260794Z Call Stack (most recent call first): 2025-06-05T23:24:32.2261492Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:32.2262578Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:24:32.2263626Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:24:32.2264641Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-MfMazN/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.2265803Z 2025-06-05T23:24:32.2265927Z  2025-06-05T23:24:32.2266196Z -- Looking for pthread_create in pthread - not found 2025-06-05T23:24:32.2266565Z -- Resolved buck2 as buck2. 2025-06-05T23:24:32.2266817Z -- Killing buck2 daemon 2025-06-05T23:24:32.2267058Z 'buck2 killall' 2025-06-05T23:24:32.2267291Z -- executorch: Generating source lists 2025-06-05T23:24:32.2267971Z -- executorch: Generating source file list /pytorch/executorch/cmake-out-android-x86_64/executorch_srcs.cmake 2025-06-05T23:24:32.2268878Z -- executorch: Using sources file /pytorch/executorch/cmake-out-android-x86_64/executorch_srcs.cmake 2025-06-05T23:24:32.2269935Z 'python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-06-05T23:24:32.2270846Z -- Generating operator lib: 2025-06-05T23:24:32.2271146Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:24:32.2271552Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:24:32.2271970Z -- ROOT_OPS: 2025-06-05T23:24:32.2272196Z -- INCLUDE_ALL_OPS: 2025-06-05T23:24:32.2273558Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out-android-x86_64/kernels/portable/portable_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/portable/functions.yaml" 2025-06-05T23:24:32.2275076Z -- Generating kernel bindings: 2025-06-05T23:24:32.2275374Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:24:32.2275768Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:24:32.2276195Z -- CUSTOM_OPS_YAML: 2025-06-05T23:24:32.2276439Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:24:32.2278382Z Generated files /pytorch/executorch/cmake-out-android-x86_64/kernels/portable/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out-android-x86_64/kernels/portable/portable_ops_lib/Functions.h;/pytorch/executorch/cmake-out-android-x86_64/kernels/portable/portable_ops_lib/NativeFunctions.h 2025-06-05T23:24:32.2280417Z -- Generating operator lib: 2025-06-05T23:24:32.2280706Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:24:32.2280998Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:24:32.2281277Z -- DEPS: executorch_core 2025-06-05T23:24:32.2281542Z -- Generating operator lib: 2025-06-05T23:24:32.2281800Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:24:32.2282210Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:24:32.2282620Z -- ROOT_OPS: 2025-06-05T23:24:32.2282842Z -- INCLUDE_ALL_OPS: 2025-06-05T23:24:32.2284177Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out-android-x86_64/kernels/optimized/optimized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/optimized/optimized.yaml" 2025-06-05T23:24:32.2285366Z -- Generating kernel bindings: 2025-06-05T23:24:32.2285655Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:24:32.2286157Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:24:32.2286701Z -- CUSTOM_OPS_YAML: 2025-06-05T23:24:32.2287067Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:24:32.2289039Z Generated files /pytorch/executorch/cmake-out-android-x86_64/kernels/optimized/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out-android-x86_64/kernels/optimized/optimized_ops_lib/Functions.h;/pytorch/executorch/cmake-out-android-x86_64/kernels/optimized/optimized_ops_lib/NativeFunctions.h 2025-06-05T23:24:32.2290735Z -- Generating operator lib: 2025-06-05T23:24:32.2291000Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:24:32.2291292Z -- KERNEL_LIBS: optimized_kernels 2025-06-05T23:24:32.2291589Z -- DEPS: executorch_core 2025-06-05T23:24:32.2291844Z -- Merging kernel yaml files: 2025-06-05T23:24:32.2292332Z -- FUNCTIONS_YAML: /pytorch/executorch/configurations/../kernels/optimized/optimized.yaml 2025-06-05T23:24:32.2293080Z -- FALLBACK_YAML: /pytorch/executorch/configurations/../kernels/portable/functions.yaml 2025-06-05T23:24:32.2293718Z -- OUTPUT_DIR: /pytorch/executorch/cmake-out-android-x86_64/configurations 2025-06-05T23:24:32.2294155Z -- Generating operator lib: 2025-06-05T23:24:32.2294450Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:24:32.2294965Z -- OPS_SCHEMA_YAML: /pytorch/executorch/cmake-out-android-x86_64/configurations/merged.yaml 2025-06-05T23:24:32.2295474Z -- ROOT_OPS: 2025-06-05T23:24:32.2295737Z -- INCLUDE_ALL_OPS: 2025-06-05T23:24:32.2297220Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out-android-x86_64/configurations/optimized_native_cpu_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/cmake-out-android-x86_64/configurations/merged.yaml" 2025-06-05T23:24:32.2298512Z -- Generating kernel bindings: 2025-06-05T23:24:32.2298799Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:24:32.2299321Z -- FUNCTIONS_YAML: /pytorch/executorch/cmake-out-android-x86_64/configurations/merged.yaml 2025-06-05T23:24:32.2299828Z -- CUSTOM_OPS_YAML: 2025-06-05T23:24:32.2300072Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:24:32.6294586Z Generated files /pytorch/executorch/cmake-out-android-x86_64/configurations/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out-android-x86_64/configurations/optimized_native_cpu_ops_lib/Functions.h;/pytorch/executorch/cmake-out-android-x86_64/configurations/optimized_native_cpu_ops_lib/NativeFunctions.h 2025-06-05T23:24:32.6297930Z -- Generating operator lib: 2025-06-05T23:24:32.6298459Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:24:32.6299272Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-06-05T23:24:32.6299996Z -- DEPS: executorch_core 2025-06-05T23:24:32.6301146Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:24:32.6302301Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.6303049Z CMake. 2025-06-05T23:24:32.6303279Z 2025-06-05T23:24:32.6303686Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.6304744Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.6305707Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.6306186Z 2025-06-05T23:24:32.6306418Z  2025-06-05T23:24:32.6306788Z -- Looking for C++ include unistd.h 2025-06-05T23:24:32.6308071Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:32.6309435Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.6310213Z CMake. 2025-06-05T23:24:32.6310413Z 2025-06-05T23:24:32.6310806Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.6311792Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.6312619Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.6313479Z Call Stack (most recent call first): 2025-06-05T23:24:32.6314451Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:32.6316113Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-yFa39P/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.6317215Z 2025-06-05T23:24:32.6317442Z  2025-06-05T23:24:32.6318609Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:32.6320037Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.6320824Z CMake. 2025-06-05T23:24:32.6321022Z 2025-06-05T23:24:32.6321425Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.6322646Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.6323530Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.6324205Z Call Stack (most recent call first): 2025-06-05T23:24:32.6324899Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:32.6326031Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:32.6327743Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-yFa39P/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.6328842Z 2025-06-05T23:24:32.6329061Z  2025-06-05T23:24:32.6330019Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:32.6331333Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.6332131Z CMake. 2025-06-05T23:24:32.6332339Z 2025-06-05T23:24:32.6332758Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.6333786Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.6334663Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.6335301Z Call Stack (most recent call first): 2025-06-05T23:24:32.6336614Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:32.6338799Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:32.6340890Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:32.6342852Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-yFa39P/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.6343935Z 2025-06-05T23:24:32.6344157Z  2025-06-05T23:24:32.6344584Z -- Looking for C++ include unistd.h - found 2025-06-05T23:24:32.6345194Z -- Looking for C++ include stdint.h 2025-06-05T23:24:32.6346557Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:32.6347918Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.6348655Z CMake. 2025-06-05T23:24:32.6348859Z 2025-06-05T23:24:32.6349243Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.6350266Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.6351156Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.6351756Z Call Stack (most recent call first): 2025-06-05T23:24:32.6352743Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:32.6354444Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-YoeKKs/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.6355513Z 2025-06-05T23:24:32.6355725Z  2025-06-05T23:24:32.6356910Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:32.6358466Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.6359267Z CMake. 2025-06-05T23:24:32.6359527Z 2025-06-05T23:24:32.6359954Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.6360983Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.6361889Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.6362554Z Call Stack (most recent call first): 2025-06-05T23:24:32.6363269Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:32.6364430Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:32.6366297Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-YoeKKs/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.6367337Z 2025-06-05T23:24:32.6367582Z  2025-06-05T23:24:32.6368532Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:32.6369766Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.6370526Z CMake. 2025-06-05T23:24:32.6370744Z 2025-06-05T23:24:32.6371279Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.6372355Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.6373252Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.6373991Z Call Stack (most recent call first): 2025-06-05T23:24:32.6375307Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:32.6377401Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:32.6379512Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:32.6381519Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-YoeKKs/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.6382608Z 2025-06-05T23:24:32.6382839Z  2025-06-05T23:24:32.6383247Z -- Looking for C++ include stdint.h - found 2025-06-05T23:24:32.6383849Z -- Looking for C++ include inttypes.h 2025-06-05T23:24:32.6385117Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:32.6386505Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.6387302Z CMake. 2025-06-05T23:24:32.6387496Z 2025-06-05T23:24:32.6387878Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.6388925Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.6389823Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.6390504Z Call Stack (most recent call first): 2025-06-05T23:24:32.6391503Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:32.6393056Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-GwwvHu/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.6394107Z 2025-06-05T23:24:32.6394338Z  2025-06-05T23:24:32.6395428Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:32.6396822Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.6397569Z CMake. 2025-06-05T23:24:32.6397780Z 2025-06-05T23:24:32.6398194Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.6399234Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.6400130Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.6400949Z Call Stack (most recent call first): 2025-06-05T23:24:32.6401644Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:32.6402798Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:32.6404480Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-GwwvHu/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.6405543Z 2025-06-05T23:24:32.6405760Z  2025-06-05T23:24:32.6406709Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:32.6407944Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:32.6408699Z CMake. 2025-06-05T23:24:32.6409004Z 2025-06-05T23:24:32.6409394Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:32.6410427Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:32.6411303Z to work with policies introduced by or earlier. 2025-06-05T23:24:32.6411982Z Call Stack (most recent call first): 2025-06-05T23:24:32.6413294Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:32.6415441Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:32.6417650Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:32.6419645Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-GwwvHu/CMakeLists.txt:4 (project) 2025-06-05T23:24:32.6420621Z 2025-06-05T23:24:32.6420832Z  2025-06-05T23:24:32.6421191Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:24:33.0107311Z -- Looking for C++ include sys/types.h 2025-06-05T23:24:33.0108571Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:33.0109298Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:33.0109705Z CMake. 2025-06-05T23:24:33.0109833Z 2025-06-05T23:24:33.0110064Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:33.0110618Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:33.0111082Z to work with policies introduced by or earlier. 2025-06-05T23:24:33.0111448Z Call Stack (most recent call first): 2025-06-05T23:24:33.0111960Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:33.0112838Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-VSKgPH/CMakeLists.txt:4 (project) 2025-06-05T23:24:33.0113392Z 2025-06-05T23:24:33.0113495Z  2025-06-05T23:24:33.0114110Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:33.0114852Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:33.0115250Z CMake. 2025-06-05T23:24:33.0115359Z 2025-06-05T23:24:33.0115592Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:33.0116125Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:33.0116597Z to work with policies introduced by or earlier. 2025-06-05T23:24:33.0116949Z Call Stack (most recent call first): 2025-06-05T23:24:33.0117333Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:33.0117940Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:33.0118804Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-VSKgPH/CMakeLists.txt:4 (project) 2025-06-05T23:24:33.0119524Z 2025-06-05T23:24:33.0119631Z  2025-06-05T23:24:33.0120127Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:33.0120775Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:33.0121173Z CMake. 2025-06-05T23:24:33.0121296Z 2025-06-05T23:24:33.0121517Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:33.0122062Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:33.0122525Z to work with policies introduced by or earlier. 2025-06-05T23:24:33.0122887Z Call Stack (most recent call first): 2025-06-05T23:24:33.0123569Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:33.0124748Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:33.0125843Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:33.0126867Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-VSKgPH/CMakeLists.txt:4 (project) 2025-06-05T23:24:33.0127413Z 2025-06-05T23:24:33.0127517Z  2025-06-05T23:24:33.0127814Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:24:33.0128145Z -- Looking for C++ include sys/stat.h 2025-06-05T23:24:33.0128871Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:33.0129584Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:33.0129986Z CMake. 2025-06-05T23:24:33.0130096Z 2025-06-05T23:24:33.0130336Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:33.0130875Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:33.0131360Z to work with policies introduced by or earlier. 2025-06-05T23:24:33.0131712Z Call Stack (most recent call first): 2025-06-05T23:24:33.0132271Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:33.0133150Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-jEdzgh/CMakeLists.txt:4 (project) 2025-06-05T23:24:33.0133695Z 2025-06-05T23:24:33.0133795Z  2025-06-05T23:24:33.0134415Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:33.0135162Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:33.0135564Z CMake. 2025-06-05T23:24:33.0135670Z 2025-06-05T23:24:33.0135903Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:33.0136434Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:33.0136908Z to work with policies introduced by or earlier. 2025-06-05T23:24:33.0137257Z Call Stack (most recent call first): 2025-06-05T23:24:33.0137635Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:33.0138241Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:33.0139100Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-jEdzgh/CMakeLists.txt:4 (project) 2025-06-05T23:24:33.0139657Z 2025-06-05T23:24:33.0139753Z  2025-06-05T23:24:33.0140245Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:33.0140885Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:33.0141299Z CMake. 2025-06-05T23:24:33.0141406Z 2025-06-05T23:24:33.0141622Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:33.0142167Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:33.0142668Z to work with policies introduced by or earlier. 2025-06-05T23:24:33.0143031Z Call Stack (most recent call first): 2025-06-05T23:24:33.0143710Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:33.0144808Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:33.0146026Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:33.0147047Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-jEdzgh/CMakeLists.txt:4 (project) 2025-06-05T23:24:33.0147650Z 2025-06-05T23:24:33.0147765Z  2025-06-05T23:24:33.0147985Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:24:33.0148320Z -- Looking for C++ include fnmatch.h 2025-06-05T23:24:33.0148992Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:33.0149685Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:33.0150100Z CMake. 2025-06-05T23:24:33.0150206Z 2025-06-05T23:24:33.0150458Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:33.0151007Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:33.0151469Z to work with policies introduced by or earlier. 2025-06-05T23:24:33.0151860Z Call Stack (most recent call first): 2025-06-05T23:24:33.0152387Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:33.0153249Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-IEN1Lg/CMakeLists.txt:4 (project) 2025-06-05T23:24:33.0153795Z 2025-06-05T23:24:33.0153909Z  2025-06-05T23:24:33.0154509Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:33.0155249Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:33.0155648Z CMake. 2025-06-05T23:24:33.0155768Z 2025-06-05T23:24:33.0155988Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:33.0156680Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:33.0157272Z to work with policies introduced by or earlier. 2025-06-05T23:24:33.0157746Z Call Stack (most recent call first): 2025-06-05T23:24:33.0158116Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:33.0158725Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:33.0159590Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-IEN1Lg/CMakeLists.txt:4 (project) 2025-06-05T23:24:33.0160148Z 2025-06-05T23:24:33.0160271Z  2025-06-05T23:24:33.0160776Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:33.0161409Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:33.0161823Z CMake. 2025-06-05T23:24:33.0161931Z 2025-06-05T23:24:33.0162153Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:33.0162703Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:33.0163179Z to work with policies introduced by or earlier. 2025-06-05T23:24:33.0163529Z Call Stack (most recent call first): 2025-06-05T23:24:33.0164217Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:33.0165492Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:33.0166698Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:33.0167728Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-IEN1Lg/CMakeLists.txt:4 (project) 2025-06-05T23:24:33.0168272Z 2025-06-05T23:24:33.0168388Z  2025-06-05T23:24:33.0168622Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:24:33.0168943Z -- Looking for C++ include stddef.h 2025-06-05T23:24:33.0169610Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:33.0170310Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:33.0170728Z CMake. 2025-06-05T23:24:33.0170888Z 2025-06-05T23:24:33.0171115Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:33.0171649Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:33.0172130Z to work with policies introduced by or earlier. 2025-06-05T23:24:33.0172479Z Call Stack (most recent call first): 2025-06-05T23:24:33.0173063Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:33.0173972Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-IrcmEH/CMakeLists.txt:4 (project) 2025-06-05T23:24:33.0174532Z 2025-06-05T23:24:33.0174632Z  2025-06-05T23:24:33.0175307Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:33.0176038Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:33.0176458Z CMake. 2025-06-05T23:24:33.0176569Z 2025-06-05T23:24:36.4870544Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:36.4871445Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:36.4871995Z to work with policies introduced by or earlier. 2025-06-05T23:24:36.4872566Z Call Stack (most recent call first): 2025-06-05T23:24:36.4872991Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:36.4873626Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:36.4874496Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-IrcmEH/CMakeLists.txt:4 (project) 2025-06-05T23:24:36.4875059Z 2025-06-05T23:24:36.4875359Z  2025-06-05T23:24:36.4875893Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:36.4876535Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:36.4877005Z CMake. 2025-06-05T23:24:36.4877115Z 2025-06-05T23:24:36.4877347Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:36.4877888Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:36.4878377Z to work with policies introduced by or earlier. 2025-06-05T23:24:36.4878727Z Call Stack (most recent call first): 2025-06-05T23:24:36.4879431Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:36.4880520Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:36.4881612Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:36.4882640Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-IrcmEH/CMakeLists.txt:4 (project) 2025-06-05T23:24:36.4883192Z 2025-06-05T23:24:36.4883293Z  2025-06-05T23:24:36.4883533Z -- Looking for C++ include stddef.h - found 2025-06-05T23:24:36.4884095Z -- Check size of uint32_t 2025-06-05T23:24:36.4884740Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:36.4885452Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:36.4885855Z CMake. 2025-06-05T23:24:36.4885965Z 2025-06-05T23:24:36.4886203Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:36.4886743Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:36.4887221Z to work with policies introduced by or earlier. 2025-06-05T23:24:36.4887571Z Call Stack (most recent call first): 2025-06-05T23:24:36.4888094Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:36.4889036Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-UnBr9I/CMakeLists.txt:4 (project) 2025-06-05T23:24:36.4889580Z 2025-06-05T23:24:36.4889686Z  2025-06-05T23:24:36.4890295Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:36.4891022Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:36.4891436Z CMake. 2025-06-05T23:24:36.4891543Z 2025-06-05T23:24:36.4891822Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:36.4892375Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:36.4892848Z to work with policies introduced by or earlier. 2025-06-05T23:24:36.4893248Z Call Stack (most recent call first): 2025-06-05T23:24:36.4893634Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:36.4894242Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:36.4895116Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-UnBr9I/CMakeLists.txt:4 (project) 2025-06-05T23:24:36.4895664Z 2025-06-05T23:24:36.4895778Z  2025-06-05T23:24:36.4896274Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:36.4896922Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:36.4897320Z CMake. 2025-06-05T23:24:36.4897445Z 2025-06-05T23:24:36.4897664Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:36.4898206Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:36.4898688Z to work with policies introduced by or earlier. 2025-06-05T23:24:36.4899047Z Call Stack (most recent call first): 2025-06-05T23:24:36.4899729Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:36.4900840Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:36.4902102Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:36.4903285Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-UnBr9I/CMakeLists.txt:4 (project) 2025-06-05T23:24:36.4903836Z 2025-06-05T23:24:36.4903970Z  2025-06-05T23:24:36.4904172Z -- Check size of uint32_t - done 2025-06-05T23:24:36.4904456Z -- Looking for strtoll 2025-06-05T23:24:36.4905077Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:36.4905898Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:36.4906302Z CMake. 2025-06-05T23:24:36.4906437Z 2025-06-05T23:24:36.4906658Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:36.4907218Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:36.4907770Z to work with policies introduced by or earlier. 2025-06-05T23:24:36.4908137Z Call Stack (most recent call first): 2025-06-05T23:24:36.4908653Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:36.4909534Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-4uzM4u/CMakeLists.txt:4 (project) 2025-06-05T23:24:36.4910079Z 2025-06-05T23:24:36.4910192Z  2025-06-05T23:24:36.4910811Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:24:36.4911550Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:36.4911952Z CMake. 2025-06-05T23:24:36.4912109Z 2025-06-05T23:24:36.4912340Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:36.4912877Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:36.4913362Z to work with policies introduced by or earlier. 2025-06-05T23:24:36.4913714Z Call Stack (most recent call first): 2025-06-05T23:24:36.4914099Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:24:36.4914758Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:24:36.4915616Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-4uzM4u/CMakeLists.txt:4 (project) 2025-06-05T23:24:36.4916172Z 2025-06-05T23:24:36.4916274Z  2025-06-05T23:24:36.4916799Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:24:36.4917448Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:36.4917850Z CMake. 2025-06-05T23:24:36.4917969Z 2025-06-05T23:24:36.4918183Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:36.4918731Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:36.4919194Z to work with policies introduced by or earlier. 2025-06-05T23:24:36.4919557Z Call Stack (most recent call first): 2025-06-05T23:24:36.4920240Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:24:36.4921338Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:24:36.4922423Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:24:36.4923431Z /pytorch/executorch/cmake-out-android-x86_64/CMakeFiles/CMakeScratch/TryCompile-4uzM4u/CMakeLists.txt:4 (project) 2025-06-05T23:24:36.4923990Z 2025-06-05T23:24:36.4924089Z  2025-06-05T23:24:36.4924290Z -- Looking for strtoll - found 2025-06-05T23:24:36.4924694Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-06-05T23:24:36.4925251Z -- Found assembler: /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang 2025-06-05T23:24:36.4925747Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-05T23:24:36.4926358Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.16") found components: Interpreter 2025-06-05T23:24:36.4926924Z -- Generating microkernels.cmake 2025-06-05T23:24:36.4927301Z No microkernel found in src/reference/binary-elementwise.cc 2025-06-05T23:24:36.4927716Z No microkernel found in src/reference/packing.cc 2025-06-05T23:24:36.4928131Z No microkernel found in src/reference/unary-elementwise.cc 2025-06-05T23:24:36.4928899Z -- executorch: Using source file list /pytorch/executorch/cmake-out-android-x86_64/extension/llm/custom_ops/../../../executorch_srcs.cmake 2025-06-05T23:24:36.4929614Z -- Generating operator lib: 2025-06-05T23:24:36.4929890Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:24:36.4930337Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:24:36.4930780Z -- ROOT_OPS: 2025-06-05T23:24:36.4930996Z -- INCLUDE_ALL_OPS: 2025-06-05T23:24:36.4932330Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out-android-x86_64/kernels/quantized/quantized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/quantized/quantized.yaml" 2025-06-05T23:24:36.4933548Z -- Generating kernel bindings: 2025-06-05T23:24:36.4933825Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:24:36.4934106Z -- FUNCTIONS_YAML: 2025-06-05T23:24:36.4934468Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:24:36.4934912Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:24:37.7889572Z Generated files /pytorch/executorch/cmake-out-android-x86_64/kernels/quantized/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out-android-x86_64/kernels/quantized/quantized_ops_lib/Functions.h;/pytorch/executorch/cmake-out-android-x86_64/kernels/quantized/quantized_ops_lib/NativeFunctions.h;/pytorch/executorch/cmake-out-android-x86_64/kernels/quantized/quantized_ops_lib/RegisterCPUCustomOps.cpp;/pytorch/executorch/cmake-out-android-x86_64/kernels/quantized/quantized_ops_lib/RegisterSchema.cpp;/pytorch/executorch/cmake-out-android-x86_64/kernels/quantized/quantized_ops_lib/CustomOpsNativeFunctions.h 2025-06-05T23:24:37.7897896Z -- Generating operator lib: 2025-06-05T23:24:37.7898873Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:24:37.7899519Z -- KERNEL_LIBS: quantized_kernels 2025-06-05T23:24:37.7900334Z -- DEPS: executorch_core 2025-06-05T23:24:37.7901417Z -- Configuring done (7.7s) 2025-06-05T23:24:37.7902092Z -- Generating done (0.4s) 2025-06-05T23:24:37.7903802Z CMake Warning: 2025-06-05T23:24:37.7904880Z Manually-specified variables were not used by the project: 2025-06-05T23:24:37.7905515Z 2025-06-05T23:24:37.7905761Z NEURON_BUFFER_ALLOCATOR_LIB 2025-06-05T23:24:37.7906850Z QNN_SDK_ROOT 2025-06-05T23:24:37.7907178Z SUPPORT_REGEX_LOOKAHEAD 2025-06-05T23:24:37.7908371Z 2025-06-05T23:24:37.7908643Z  2025-06-05T23:24:37.7910129Z -- Build files have been written to: /pytorch/executorch/cmake-out-android-x86_64 2025-06-05T23:24:37.7911204Z ++ uname 2025-06-05T23:24:37.7911883Z + '[' Linux == Darwin ']' 2025-06-05T23:24:37.7912935Z ++ nproc 2025-06-05T23:24:37.7913271Z + CMAKE_JOBS=7 2025-06-05T23:24:37.7915707Z + cmake --build cmake-out-android-x86_64 -j 7 --target install --config Release 2025-06-05T23:24:37.7917163Z [ 0%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:24:37.7920253Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:24:37.7924077Z [ 0%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.o 2025-06-05T23:24:37.7927240Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:24:37.7930105Z [ 0%] Creating directories for 'flatcc_external_project' 2025-06-05T23:24:37.7933559Z [ 0%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-06-05T23:24:37.7936587Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-06-05T23:24:37.7938045Z [ 0%] No download step for 'flatbuffers_external_project' 2025-06-05T23:24:37.7939272Z [ 0%] No download step for 'flatcc_external_project' 2025-06-05T23:24:37.7940065Z [ 0%] No update step for 'flatcc_external_project' 2025-06-05T23:24:37.7940956Z [ 0%] No update step for 'flatbuffers_external_project' 2025-06-05T23:24:37.7941887Z [ 0%] No patch step for 'flatcc_external_project' 2025-06-05T23:24:37.7942839Z [ 0%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:24:37.7944065Z [ 0%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:24:37.7945152Z [ 0%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:24:37.7946079Z CMake Warning: 2025-06-05T23:24:37.7946590Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:24:37.7947095Z 2025-06-05T23:24:37.7947297Z  2025-06-05T23:24:37.7948051Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:24:37.7949074Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:24:37.7949814Z CMake. 2025-06-05T23:24:37.7950019Z 2025-06-05T23:24:37.7950743Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:24:37.7951940Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:24:37.7952776Z to work with policies introduced by or earlier. 2025-06-05T23:24:37.7953255Z 2025-06-05T23:24:37.7953468Z  2025-06-05T23:24:37.7953857Z CMake Warning: 2025-06-05T23:24:37.7954400Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:24:37.7954903Z 2025-06-05T23:24:37.7955093Z  2025-06-05T23:24:37.7955522Z fatal: No names found, cannot describe anything. 2025-06-05T23:24:37.7956464Z CMake Warning at CMake/Version.cmake:32 (message): 2025-06-05T23:24:37.7957163Z git describe failed with exit code: 128 2025-06-05T23:24:37.7957545Z 2025-06-05T23:24:37.7957842Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-06-05T23:24:37.7958549Z Call Stack (most recent call first): 2025-06-05T23:24:37.7959098Z CMakeLists.txt:5 (include) 2025-06-05T23:24:37.7959406Z 2025-06-05T23:24:37.7959616Z  2025-06-05T23:24:37.7960011Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:24:37.7961222Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:24:37.7962589Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:24:37.7964293Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-06-05T23:24:37.7965736Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:24:37.7966401Z -- Detecting C compiler ABI info 2025-06-05T23:24:37.7967614Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:24:37.7969565Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:24:37.7971498Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-06-05T23:24:37.7972706Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:24:37.7973352Z -- Detecting CXX compiler ABI info 2025-06-05T23:24:37.7974617Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:24:37.7976420Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:24:37.7978165Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-06-05T23:24:37.7979803Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.o 2025-06-05T23:24:37.7981541Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:24:37.7982674Z -- Detecting C compiler ABI info - done 2025-06-05T23:24:37.7983983Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:24:37.7985198Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:24:37.7986613Z -- Detecting C compile features 2025-06-05T23:24:37.7987137Z -- Detecting C compile features - done 2025-06-05T23:24:37.7987762Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:24:37.7988549Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:24:37.7989199Z -- Setting Clang compiler options 2025-06-05T23:24:37.7990385Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:24:37.7991558Z -- Configuring done (0.3s) 2025-06-05T23:24:37.7992579Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:24:37.7994580Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/init.c.o 2025-06-05T23:24:37.7996410Z -- Generating done (0.0s) 2025-06-05T23:24:37.7997901Z -- Build files have been written to: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/src/flatcc_external_project-build 2025-06-05T23:24:37.7999905Z [ 1%] Performing build step for 'flatcc_external_project' 2025-06-05T23:24:37.8001444Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-06-05T23:24:37.8003171Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:24:37.8004387Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/info.c.o 2025-06-05T23:24:37.8005354Z [ 1%] Linking C static library libpthreadpool.a 2025-06-05T23:24:37.8006644Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:24:37.8007805Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:24:37.8008336Z [ 1%] Built target pthreadpool 2025-06-05T23:24:37.8009195Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:24:37.8010106Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:24:37.8011298Z -- Detecting CXX compile features 2025-06-05T23:24:37.8011830Z -- Detecting CXX compile features - done 2025-06-05T23:24:37.8013025Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:24:37.8014011Z -- Looking for strtof_l 2025-06-05T23:24:37.8014792Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:24:37.8016138Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:24:37.8018357Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/vendor.c.o 2025-06-05T23:24:37.8020174Z [ 3%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.o 2025-06-05T23:24:37.8021792Z [ 12%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:24:37.8023387Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/uarch.c.o 2025-06-05T23:24:37.8024857Z [ 15%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:24:37.8026390Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:24:37.8028145Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/name.c.o 2025-06-05T23:24:37.8029638Z [ 18%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:24:37.8030169Z -- Looking for strtof_l - found 2025-06-05T23:24:37.8030462Z -- Looking for strtoull_l 2025-06-05T23:24:37.8030975Z [ 21%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:24:37.8031897Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:24:38.9322261Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/topology.c.o 2025-06-05T23:24:38.9324181Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:24:38.9325899Z [ 3%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-06-05T23:24:38.9327990Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/isa.c.o 2025-06-05T23:24:38.9329911Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:24:38.9331746Z [ 27%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:24:38.9333548Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/init.c.o 2025-06-05T23:24:38.9335099Z [ 3%] Linking CXX static library libgflags_nothreads.a 2025-06-05T23:24:38.9335852Z [ 3%] Built target gflags_nothreads_static 2025-06-05T23:24:38.9337457Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:24:38.9339654Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:24:38.9341537Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:24:38.9342539Z -- Looking for strtoull_l - found 2025-06-05T23:24:38.9343075Z -- Looking for realpath 2025-06-05T23:24:38.9344135Z [ 33%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:24:38.9345144Z [ 33%] Built target flatccrt 2025-06-05T23:24:38.9346312Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:24:38.9347865Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:24:38.9349758Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:24:38.9351564Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:24:38.9353461Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:24:38.9355609Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:24:38.9357588Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:24:38.9359702Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/init.c.o 2025-06-05T23:24:38.9361781Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:24:38.9363497Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:24:38.9364709Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:24:38.9365758Z -- Looking for realpath - found 2025-06-05T23:24:38.9366373Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:24:38.9367835Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:24:38.9369018Z -- Configuring done (1.1s) 2025-06-05T23:24:38.9369483Z -- Generating done (0.0s) 2025-06-05T23:24:38.9370963Z -- Build files have been written to: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/src/flatbuffers_external_project-build 2025-06-05T23:24:38.9373418Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:24:38.9374880Z [ 3%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:24:38.9375983Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:24:38.9377632Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o 2025-06-05T23:24:38.9379672Z [ 3%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-06-05T23:24:38.9381600Z [ 4%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-06-05T23:24:38.9383621Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-06-05T23:24:38.9385156Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:24:38.9386872Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:24:38.9388959Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:24:38.9390900Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-06-05T23:24:38.9392496Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:24:38.9394227Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o 2025-06-05T23:24:38.9396395Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o 2025-06-05T23:24:38.9397858Z [ 4%] Linking C static library libcpuinfo.a 2025-06-05T23:24:38.9398500Z [ 4%] Built target cpuinfo 2025-06-05T23:24:38.9399896Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o 2025-06-05T23:24:38.9402007Z [ 5%] Building C object extension/llm/custom_ops/spinquant/third-party/FFHT/CMakeFiles/dumb_fht.dir/dumb_fht.c.o 2025-06-05T23:24:38.9403609Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:24:38.9404883Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:24:38.9406233Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:24:38.9407337Z [ 5%] Linking C static library libdumb_fht.a 2025-06-05T23:24:38.9408274Z [ 5%] Linking C static library libcpuinfo_internals.a 2025-06-05T23:24:38.9409364Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:24:38.9410211Z [ 5%] Built target cpuinfo_internals 2025-06-05T23:24:38.9410741Z [ 5%] Built target dumb_fht 2025-06-05T23:24:38.9411612Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:24:38.9413169Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-06-05T23:24:38.9415066Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-06-05T23:24:38.9416959Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-06-05T23:24:38.9418569Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:24:38.9419987Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:24:38.9421429Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:24:38.9423174Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-06-05T23:24:38.9424793Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:24:38.9426120Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:24:38.9427303Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:24:38.9428512Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:24:38.9430063Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-06-05T23:24:38.9431928Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-06-05T23:24:38.9433698Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:24:38.9435400Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-06-05T23:24:38.9437283Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-06-05T23:24:38.9439056Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:24:38.9440539Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:24:38.9441870Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:24:38.9443625Z [ 5%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-06-05T23:24:38.9445636Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-06-05T23:24:38.9448008Z [ 5%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-f16c-c8.c.o 2025-06-05T23:24:38.9450754Z [ 5%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-f16c-c8.c.o 2025-06-05T23:24:38.9452815Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:24:38.9454508Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-06-05T23:24:39.3292400Z [ 5%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-06-05T23:24:39.3294375Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-06-05T23:24:39.3296561Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3-acc2.c.o 2025-06-05T23:24:39.3298763Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-06-05T23:24:39.3299960Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:24:39.3301125Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:24:39.3302636Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-06-05T23:24:39.3304324Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:24:39.3306520Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:24:39.3308718Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-06-05T23:24:39.3310915Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-06-05T23:24:39.3312724Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-06-05T23:24:39.3313793Z [ 93%] Built target flatcc 2025-06-05T23:24:39.3314673Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:24:39.3316125Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-06-05T23:24:39.3317898Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-06-05T23:24:39.3320152Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3.c.o 2025-06-05T23:24:39.3322304Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:24:39.3323543Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:24:39.3325129Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-06-05T23:24:39.3327287Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-06-05T23:24:39.3329194Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-06-05T23:24:39.3330285Z [100%] Built target flatcc_cli 2025-06-05T23:24:39.3330849Z [ 7%] Built target logging 2025-06-05T23:24:39.3332109Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-06-05T23:24:39.3333536Z [ 7%] Performing install step for 'flatcc_external_project' 2025-06-05T23:24:39.3334286Z [ 21%] Built target flatccrt 2025-06-05T23:24:39.3334739Z [ 7%] Built target indirection 2025-06-05T23:24:39.3336363Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3.c.o 2025-06-05T23:24:39.3338613Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-06-05T23:24:39.3339788Z [ 7%] Built target microparams-init 2025-06-05T23:24:39.3340327Z [ 93%] Built target flatcc 2025-06-05T23:24:39.3341926Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-u16.c.o 2025-06-05T23:24:39.3343349Z [100%] Built target flatcc_cli 2025-06-05T23:24:39.3344630Z [ 7%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-06-05T23:24:39.3345986Z Install the project... 2025-06-05T23:24:39.3346505Z -- Install configuration: "" 2025-06-05T23:24:39.3347514Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:24:39.3349207Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc.h 2025-06-05T23:24:39.3351092Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_accessors.h 2025-06-05T23:24:39.3352957Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_alloc.h 2025-06-05T23:24:39.3354858Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_assert.h 2025-06-05T23:24:39.3356694Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_builder.h 2025-06-05T23:24:39.3358489Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_emitter.h 2025-06-05T23:24:39.3360637Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_endian.h 2025-06-05T23:24:39.3362515Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_epilogue.h 2025-06-05T23:24:39.3364512Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_flatbuffers.h 2025-06-05T23:24:39.3368365Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_identifier.h 2025-06-05T23:24:39.3370358Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_iov.h 2025-06-05T23:24:39.3372494Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_json_parser.h 2025-06-05T23:24:39.3374535Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_json_printer.h 2025-06-05T23:24:39.3376577Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_portable.h 2025-06-05T23:24:39.3378740Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_prologue.h 2025-06-05T23:24:39.3380702Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_refmap.h 2025-06-05T23:24:39.3382839Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_rtconfig.h 2025-06-05T23:24:39.3384888Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_types.h 2025-06-05T23:24:39.3386982Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_unaligned.h 2025-06-05T23:24:39.3389050Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_verifier.h 2025-06-05T23:24:39.3391074Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/flatcc_version.h 2025-06-05T23:24:39.3393061Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable 2025-06-05T23:24:39.3395014Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/LICENSE 2025-06-05T23:24:39.3397031Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/README.md 2025-06-05T23:24:39.3399148Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/grisu3_math.h 2025-06-05T23:24:39.3401284Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/grisu3_parse.h 2025-06-05T23:24:39.3403432Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/grisu3_print.h 2025-06-05T23:24:39.3405482Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/include 2025-06-05T23:24:39.3419361Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/include/README 2025-06-05T23:24:39.3421749Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/include/linux 2025-06-05T23:24:39.3424000Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/include/linux/endian.h 2025-06-05T23:24:39.3425928Z [ 7%] Linking CXX static library libeigen_blas.a 2025-06-05T23:24:39.3427538Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/include/std 2025-06-05T23:24:39.3429766Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/include/std/inttypes.h 2025-06-05T23:24:39.3432097Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdalign.h 2025-06-05T23:24:39.7032805Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdbool.h 2025-06-05T23:24:39.7034121Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdint.h 2025-06-05T23:24:39.7035486Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/paligned_alloc.h 2025-06-05T23:24:39.7036608Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pattributes.h 2025-06-05T23:24:39.7037681Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pbase64.h 2025-06-05T23:24:39.7038804Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pcrt.h 2025-06-05T23:24:39.7039874Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic.h 2025-06-05T23:24:39.7041033Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_pop.h 2025-06-05T23:24:39.7042175Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_push.h 2025-06-05T23:24:39.7043274Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pendian.h 2025-06-05T23:24:39.7044380Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pendian_detect.h 2025-06-05T23:24:39.7045462Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pinline.h 2025-06-05T23:24:39.7046535Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pinttypes.h 2025-06-05T23:24:39.7047601Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pmemaccess.h 2025-06-05T23:24:39.7048679Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/portable.h 2025-06-05T23:24:39.7049775Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/portable_basic.h 2025-06-05T23:24:39.7050866Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pparsefp.h 2025-06-05T23:24:39.7051943Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pparseint.h 2025-06-05T23:24:39.7053019Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pprintfp.h 2025-06-05T23:24:39.7054862Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pprintint.h 2025-06-05T23:24:39.7056966Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/prestrict.h 2025-06-05T23:24:39.7058914Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert.h 2025-06-05T23:24:39.7061200Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert_scope.h 2025-06-05T23:24:39.7063367Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pstdalign.h 2025-06-05T23:24:39.7066403Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pstdbool.h 2025-06-05T23:24:39.7068553Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pstdint.h 2025-06-05T23:24:39.7070557Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/punaligned.h 2025-06-05T23:24:39.7072781Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pversion.h 2025-06-05T23:24:39.7074886Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/portable/pwarnings.h 2025-06-05T23:24:39.7075987Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/reflection 2025-06-05T23:24:39.7077138Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/reflection/README 2025-06-05T23:24:39.7078297Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_builder.h 2025-06-05T23:24:39.7079587Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_reader.h 2025-06-05T23:24:39.7080805Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/reflection/reflection_builder.h 2025-06-05T23:24:39.7081975Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/reflection/reflection_reader.h 2025-06-05T23:24:39.7083234Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/reflection/reflection_verifier.h 2025-06-05T23:24:39.7084407Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/support 2025-06-05T23:24:39.7085550Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/support/README 2025-06-05T23:24:39.7086644Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/support/cdump.h 2025-06-05T23:24:39.7087805Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/support/elapsed.h 2025-06-05T23:24:39.7088909Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/support/hexdump.h 2025-06-05T23:24:39.7090080Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/include/flatcc/support/readfile.h 2025-06-05T23:24:39.7091129Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/lib/libflatccrt.a 2025-06-05T23:24:39.7092142Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/lib/libflatcc.a 2025-06-05T23:24:39.7093080Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:24:39.7093992Z [ 8%] Completed 'flatcc_external_project' 2025-06-05T23:24:39.7094411Z [ 8%] Built target flatcc_external_project 2025-06-05T23:24:39.7095379Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-u16.c.o 2025-06-05T23:24:39.7096397Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:24:39.7096945Z [ 8%] Built target eigen_blas 2025-06-05T23:24:39.7097607Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-06-05T23:24:39.7098223Z [ 9%] Built target normalization 2025-06-05T23:24:39.7099099Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-u16.c.o 2025-06-05T23:24:39.7100210Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-06-05T23:24:39.7101362Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-06-05T23:24:39.7102318Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:24:39.7102788Z [ 9%] Built target allocator 2025-06-05T23:24:39.7103255Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:24:39.7103695Z [ 9%] Built target packing 2025-06-05T23:24:39.7104148Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:24:39.7104763Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:24:39.7105929Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-06-05T23:24:39.7107297Z [ 9%] Built target cache 2025-06-05T23:24:39.7108579Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-06-05T23:24:39.7110126Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:24:39.7111520Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-06-05T23:24:39.7113865Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-u32.c.o 2025-06-05T23:24:39.7116871Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-u16.c.o 2025-06-05T23:24:39.7118394Z [ 9%] Built target datatype 2025-06-05T23:24:40.9474199Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-gemm/gen/f16-f32acc-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:24:40.9475968Z [ 9%] Built target memory 2025-06-05T23:24:40.9477878Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-gemm/gen/f16-f32acc-gemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:24:40.9480002Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:24:40.9481173Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:24:40.9482284Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:24:40.9483849Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-06-05T23:24:40.9486445Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:24:40.9488106Z [ 9%] Built target microkernel-utils 2025-06-05T23:24:40.9490108Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:24:40.9493233Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-avx512skx-c64.c.o 2025-06-05T23:24:40.9495255Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:24:40.9496972Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-06-05T23:24:40.9499112Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-f16c-c32.c.o 2025-06-05T23:24:40.9501431Z [ 10%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-06-05T23:24:40.9503704Z [ 10%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-06-05T23:24:40.9505009Z [ 10%] Built target mutex 2025-06-05T23:24:40.9505999Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:24:40.9507792Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-06-05T23:24:40.9510074Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-avx512skx-u64-acc4.c.o 2025-06-05T23:24:40.9513028Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-f16c-u32-acc4.c.o 2025-06-05T23:24:40.9515899Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x64-minmax-avx512fp16-broadcast.c.o 2025-06-05T23:24:40.9517651Z [ 10%] Built target operator-utils 2025-06-05T23:24:40.9518988Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-06-05T23:24:40.9520542Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:24:40.9521895Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:24:40.9523258Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:24:40.9525380Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-7x64-minmax-avx512fp16-broadcast.c.o 2025-06-05T23:24:40.9527616Z [ 10%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:24:40.9528624Z [ 10%] Built target reference-ukernels 2025-06-05T23:24:40.9530336Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-fma3-c8.c.o 2025-06-05T23:24:40.9531751Z [ 10%] Built target operator-run 2025-06-05T23:24:40.9533619Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x64-minmax-avx512fp16-broadcast.c.o 2025-06-05T23:24:40.9535849Z [ 10%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:24:40.9537421Z [ 10%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:24:40.9539025Z [ 10%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:24:40.9540652Z [ 10%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:24:40.9542078Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:24:40.9543226Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:24:40.9545268Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-7x64-minmax-avx512fp16-broadcast.c.o 2025-06-05T23:24:40.9548164Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-f16c-c8.c.o 2025-06-05T23:24:40.9550978Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-avx2-c8.c.o 2025-06-05T23:24:40.9553674Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-avx2-c8.c.o 2025-06-05T23:24:40.9555836Z [ 10%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:24:40.9557816Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-06-05T23:24:40.9559498Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:24:40.9561226Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-06-05T23:24:40.9563276Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-06-05T23:24:40.9565823Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:24:40.9567877Z [ 11%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:24:40.9568750Z [ 11%] Built target flatccrt 2025-06-05T23:24:40.9570644Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.o 2025-06-05T23:24:40.9572257Z [ 11%] Built target hardware-config 2025-06-05T23:24:40.9573678Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/f16-rmax-f16c-u32.c.o 2025-06-05T23:24:40.9576008Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-avx512fp16-u128-acc4.c.o 2025-06-05T23:24:40.9577778Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:24:40.9579432Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-06-05T23:24:40.9581710Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-avx512skx-u64-acc4.c.o 2025-06-05T23:24:40.9583514Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:24:40.9585348Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-06-05T23:24:40.9587708Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-06-05T23:24:40.9590064Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-avx512fp16-u128-acc4.c.o 2025-06-05T23:24:40.9592347Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-06-05T23:24:40.9594491Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-06-05T23:24:40.9596646Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-06-05T23:24:40.9599048Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-avx512skx-u64-acc4.c.o 2025-06-05T23:24:40.9601703Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-06-05T23:24:40.9604226Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-06-05T23:24:40.9605873Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:24:42.0067344Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-06-05T23:24:42.0069908Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-avx512fp16-u64.c.o 2025-06-05T23:24:42.0072367Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-f16c-u16.c.o 2025-06-05T23:24:42.0074970Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-06-05T23:24:42.0077235Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-06-05T23:24:42.0079474Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-06-05T23:24:42.0081791Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-06-05T23:24:42.0084177Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-avx512fp16-u64.c.o 2025-06-05T23:24:42.0086025Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:24:42.0087578Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-06-05T23:24:42.0089766Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-f16c-u16.c.o 2025-06-05T23:24:42.0091435Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:24:42.0092981Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-06-05T23:24:42.0095105Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-avx512fp16-u64.c.o 2025-06-05T23:24:42.0097321Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-06-05T23:24:42.0099398Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-06-05T23:24:42.0101577Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-f16c-u8.c.o 2025-06-05T23:24:42.0103598Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-06-05T23:24:42.0105881Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-06-05T23:24:42.0107711Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:24:42.0109429Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-06-05T23:24:42.0111380Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-06-05T23:24:42.0113457Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-06-05T23:24:42.0115510Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-06-05T23:24:42.0117922Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-avx512fp16-u64.c.o 2025-06-05T23:24:42.0120329Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-f16c-u8.c.o 2025-06-05T23:24:42.0122516Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-06-05T23:24:42.0124769Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-avx512fp16-u64.c.o 2025-06-05T23:24:42.0127084Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-f16c-u16.c.o 2025-06-05T23:24:42.0128901Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:24:42.0130711Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-avx512fp16-u64.c.o 2025-06-05T23:24:42.0131963Z [ 13%] Built target operators 2025-06-05T23:24:42.0133457Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-f16c-u16.c.o 2025-06-05T23:24:42.0135492Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-06-05T23:24:42.0137349Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-06-05T23:24:42.0139468Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-avx512fp16-u64.c.o 2025-06-05T23:24:42.0141410Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:24:42.0143085Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-06-05T23:24:42.0145079Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-06-05T23:24:42.0147499Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-f16c-u16.c.o 2025-06-05T23:24:42.0150118Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-avx512fp16-u64.c.o 2025-06-05T23:24:42.0152445Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-06-05T23:24:42.0154846Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-f16c-u16.c.o 2025-06-05T23:24:42.0157330Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-06-05T23:24:42.0159512Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-06-05T23:24:42.0161718Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-avx512fp16-u64.c.o 2025-06-05T23:24:42.0163744Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:24:42.0166742Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-f16c-u16.c.o 2025-06-05T23:24:42.0169369Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-avx512fp16-u64.c.o 2025-06-05T23:24:42.0171890Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-f16c-u16.c.o 2025-06-05T23:24:42.0174343Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-06-05T23:24:42.0176497Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-06-05T23:24:42.0178548Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-06-05T23:24:42.0180613Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-06-05T23:24:42.0182735Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-06-05T23:24:42.0184635Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:24:42.0186574Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-06-05T23:24:42.0188961Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-06-05T23:24:42.0191566Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-avx512fp16-u64.c.o 2025-06-05T23:24:42.0193982Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-06-05T23:24:42.0196292Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-06-05T23:24:42.0198564Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-06-05T23:24:42.0200960Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-f16c-u16.c.o 2025-06-05T23:24:43.1571343Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-avx512fp16-u64.c.o 2025-06-05T23:24:43.1574148Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-f16c-u16.c.o 2025-06-05T23:24:43.1576182Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:24:43.1577990Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-06-05T23:24:43.1580336Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-avx512fp16-u64.c.o 2025-06-05T23:24:43.1583031Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-f16c-u8.c.o 2025-06-05T23:24:43.1585811Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-avx512fp16-u64.c.o 2025-06-05T23:24:43.1588139Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-06-05T23:24:43.1590484Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-f16c-u16.c.o 2025-06-05T23:24:43.1593190Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-avx512fp16-u64.c.o 2025-06-05T23:24:43.1594889Z [100%] Linking CXX executable flatc 2025-06-05T23:24:43.1596438Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-06-05T23:24:43.1598831Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-06-05T23:24:43.1601771Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-f16c-u16.c.o 2025-06-05T23:24:43.1604075Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-06-05T23:24:43.1606525Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-avx512fp16-u64.c.o 2025-06-05T23:24:43.1608842Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-06-05T23:24:43.1611038Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-f16c-u16.c.o 2025-06-05T23:24:43.1613601Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-06-05T23:24:43.1615807Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-06-05T23:24:43.1618417Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-avx512fp16-u64.c.o 2025-06-05T23:24:43.1621049Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-06-05T23:24:43.1623977Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-06-05T23:24:43.1626853Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-06-05T23:24:43.1629302Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-f16c-u16.c.o 2025-06-05T23:24:43.1632001Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-avx512fp16-u64.c.o 2025-06-05T23:24:43.1634399Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-06-05T23:24:43.1636770Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-f16c-u16.c.o 2025-06-05T23:24:43.1639039Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-06-05T23:24:43.1641084Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-06-05T23:24:43.1643509Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-avx512fp16-u64.c.o 2025-06-05T23:24:43.1646160Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-f16c-u16.c.o 2025-06-05T23:24:43.1648744Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-f16c-u16.c.o 2025-06-05T23:24:43.1650924Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-06-05T23:24:43.1653683Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-u16.c.o 2025-06-05T23:24:43.1656247Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-f16c-u16.c.o 2025-06-05T23:24:43.1658854Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-u16.c.o 2025-06-05T23:24:43.1661720Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-fma3-2x.c.o 2025-06-05T23:24:43.1663212Z [ 17%] Built target subgraph 2025-06-05T23:24:43.1664802Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-f16c-u16.c.o 2025-06-05T23:24:43.1667401Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-f16c-u16.c.o 2025-06-05T23:24:43.1669657Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-f16c-u16.c.o 2025-06-05T23:24:43.1672322Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-f16c-u16.c.o 2025-06-05T23:24:43.1674935Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-f16c-rsqrt-u32.c.o 2025-06-05T23:24:43.1677777Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.o 2025-06-05T23:24:43.1680644Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-f16c-rsqrt-u32.c.o 2025-06-05T23:24:43.1683639Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u72.c.o 2025-06-05T23:24:43.1686662Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-fma3-polynomial-p19h9t2-u32.c.o 2025-06-05T23:24:43.1689412Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-sse2-u16.c.o 2025-06-05T23:24:43.1691820Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-sse2-u16.c.o 2025-06-05T23:24:43.1693738Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-f16c-u16.c.o 2025-06-05T23:24:43.1695637Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2025-06-05T23:24:43.1697764Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-sse2-c4.c.o 2025-06-05T23:24:43.1700015Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-06-05T23:24:43.1702311Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-sse2-c4.c.o 2025-06-05T23:24:43.1704469Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-06-05T23:24:43.1706925Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-sse2-c4.c.o 2025-06-05T23:24:43.1709467Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:24:43.3915038Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:24:43.3917719Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:24:43.3920467Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-sse-c4.c.o 2025-06-05T23:24:43.3922277Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-06-05T23:24:43.3923832Z [100%] Built target flatc 2025-06-05T23:24:43.3924382Z [ 19%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:24:43.3925615Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.o 2025-06-05T23:24:43.3927107Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f.c.o 2025-06-05T23:24:43.3928709Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-06-05T23:24:43.3930172Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-06-05T23:24:43.3931684Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-avx.c.o 2025-06-05T23:24:43.3932482Z [100%] Built target flatc 2025-06-05T23:24:43.3932801Z Install the project... 2025-06-05T23:24:43.3933150Z -- Install configuration: "" 2025-06-05T23:24:43.3933799Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:24:43.3934844Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/allocator.h 2025-06-05T23:24:43.3935933Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/array.h 2025-06-05T23:24:43.3936982Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/base.h 2025-06-05T23:24:43.3938048Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/buffer.h 2025-06-05T23:24:43.3939139Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/buffer_ref.h 2025-06-05T23:24:43.3940256Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/code_generator.h 2025-06-05T23:24:43.3941396Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/code_generators.h 2025-06-05T23:24:43.3942626Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/default_allocator.h 2025-06-05T23:24:43.3944293Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/detached_buffer.h 2025-06-05T23:24:43.3945916Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/file_manager.h 2025-06-05T23:24:43.3947134Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffer_builder.h 2025-06-05T23:24:43.3948281Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffers.h 2025-06-05T23:24:43.3949371Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/flatc.h 2025-06-05T23:24:43.3950615Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/flex_flat_util.h 2025-06-05T23:24:43.3951869Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/flexbuffers.h 2025-06-05T23:24:43.3952949Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/grpc.h 2025-06-05T23:24:43.3953982Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/hash.h 2025-06-05T23:24:43.3955462Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/idl.h 2025-06-05T23:24:43.3956671Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/minireflect.h 2025-06-05T23:24:43.3957919Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/pch 2025-06-05T23:24:43.3958999Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/pch/flatc_pch.h 2025-06-05T23:24:43.3960096Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/pch/pch.h 2025-06-05T23:24:43.3961224Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/reflection.h 2025-06-05T23:24:43.3962363Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/reflection_generated.h 2025-06-05T23:24:43.3963542Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/registry.h 2025-06-05T23:24:43.3964649Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/stl_emulation.h 2025-06-05T23:24:43.3965950Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/string.h 2025-06-05T23:24:43.3967026Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/struct.h 2025-06-05T23:24:43.3968087Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/table.h 2025-06-05T23:24:43.3969118Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/util.h 2025-06-05T23:24:43.3970174Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/vector.h 2025-06-05T23:24:43.3971262Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/vector_downward.h 2025-06-05T23:24:43.3972381Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/include/flatbuffers/verifier.h 2025-06-05T23:24:43.3973544Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config.cmake 2025-06-05T23:24:43.3974753Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/BuildFlatBuffers.cmake 2025-06-05T23:24:43.3976028Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config-version.cmake 2025-06-05T23:24:43.3977148Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:24:43.3978473Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-fma3.c.o 2025-06-05T23:24:43.3979728Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets.cmake 2025-06-05T23:24:43.3981050Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake 2025-06-05T23:24:43.3981982Z [ 19%] Completed 'flatbuffers_external_project' 2025-06-05T23:24:43.3982976Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-sse.c.o 2025-06-05T23:24:43.3983794Z [ 19%] Built target flatbuffers_external_project 2025-06-05T23:24:43.3984843Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-06-05T23:24:43.3985869Z [ 19%] Generating common_schema headers 2025-06-05T23:24:43.3986383Z [ 20%] Generating xnnpack_schema headers 2025-06-05T23:24:43.3986734Z [ 20%] Built target common_schema 2025-06-05T23:24:43.3987108Z [ 20%] Generating scalar_type_schema headers 2025-06-05T23:24:43.3987552Z [ 20%] Generating program_schema headers 2025-06-05T23:24:43.3987884Z [ 20%] Built target xnnpack_schema 2025-06-05T23:24:43.3988188Z [ 20%] Built target scalar_type_schema 2025-06-05T23:24:43.3989190Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx.c.o 2025-06-05T23:24:43.3990091Z [ 20%] Generating flat_tensor_schema headers 2025-06-05T23:24:43.3990442Z [ 20%] Built target program_schema 2025-06-05T23:24:44.7257015Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx512f.c.o 2025-06-05T23:24:44.7258611Z [ 20%] Built target flat_tensor_schema 2025-06-05T23:24:44.7259683Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:24:44.7261034Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:24:44.7262407Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:24:44.7264478Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:24:44.7266906Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-06-05T23:24:44.7268736Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:24:44.7270826Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-06-05T23:24:44.7272795Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:24:44.7274112Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:24:44.7275265Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:24:44.7276283Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:24:44.7277960Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-sse.c.o 2025-06-05T23:24:44.7279587Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx.c.o 2025-06-05T23:24:44.7281191Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:24:44.7282884Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx512f.c.o 2025-06-05T23:24:44.7284414Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:24:44.7285935Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-fma3.c.o 2025-06-05T23:24:44.7287200Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:24:44.7288321Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:24:44.7289387Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:24:44.7290967Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-06-05T23:24:44.7292363Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:24:44.7293513Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:24:44.7295180Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-06-05T23:24:44.7296722Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:24:44.7298895Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-sse.c.o 2025-06-05T23:24:44.7300773Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.o 2025-06-05T23:24:44.7302043Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:24:44.7303257Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.o 2025-06-05T23:24:44.7305047Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.o 2025-06-05T23:24:44.7307810Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.o 2025-06-05T23:24:44.7309938Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:24:44.7312074Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx.c.o 2025-06-05T23:24:44.7314034Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:24:44.7315428Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:24:44.7316960Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/android.cpp.o 2025-06-05T23:24:44.7319170Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx512f.c.o 2025-06-05T23:24:44.7321761Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-fma3.c.o 2025-06-05T23:24:44.7324434Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-06-05T23:24:44.7327120Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-06-05T23:24:44.7329820Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-sse.c.o 2025-06-05T23:24:44.7332726Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:24:44.7334731Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o 2025-06-05T23:24:44.7336907Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.o 2025-06-05T23:24:44.7338776Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.o 2025-06-05T23:24:44.7340662Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o 2025-06-05T23:24:44.7342945Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:24:44.7344808Z [ 23%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:24:44.7345492Z [ 23%] Built target executorch_core 2025-06-05T23:24:44.7347587Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.o 2025-06-05T23:24:44.7349940Z [ 23%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:24:44.7351374Z [ 23%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:24:44.7352802Z [ 23%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:24:44.7355176Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:24:44.7358160Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:24:44.7360632Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:24:44.7362547Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:24:44.7364433Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:24:44.7366891Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-4x4.c.o 2025-06-05T23:24:46.3375170Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:24:46.3377907Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:24:46.3379218Z [ 23%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:24:46.3379936Z [ 23%] Linking CXX static library libexecutorch.a 2025-06-05T23:24:46.3380322Z [ 23%] Built target executorch 2025-06-05T23:24:46.3381402Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4.c.o 2025-06-05T23:24:46.3382958Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:24:46.3383966Z [ 23%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-06-05T23:24:46.3384961Z [ 23%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-06-05T23:24:46.3386323Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-u24.c.o 2025-06-05T23:24:46.3387519Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:24:46.3388655Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:24:46.3389672Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:24:46.3390890Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-u16.c.o 2025-06-05T23:24:46.3391928Z [ 24%] Linking CXX static library libextension_data_loader.a 2025-06-05T23:24:46.3392726Z [ 24%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:24:46.3393470Z [ 24%] Built target extension_data_loader 2025-06-05T23:24:46.3394800Z [ 24%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/flat_tensor_data_map.cpp.o 2025-06-05T23:24:46.3396461Z [ 24%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/serialize/flat_tensor_header.cpp.o 2025-06-05T23:24:46.3398262Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-u16.c.o 2025-06-05T23:24:46.3399626Z [ 24%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:24:46.3400639Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:24:46.3401639Z [ 24%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:24:46.3402709Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:24:46.3403800Z [ 24%] Building CXX object extension/runner_util/CMakeFiles/extension_runner_util.dir/inputs.cpp.o 2025-06-05T23:24:46.3405082Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-06-05T23:24:46.3406195Z [ 24%] Linking CXX static library libextension_flat_tensor.a 2025-06-05T23:24:46.3407330Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-06-05T23:24:46.3408526Z [ 24%] Building CXX object extension/runner_util/CMakeFiles/extension_runner_util.dir/inputs_portable.cpp.o 2025-06-05T23:24:46.3409195Z [ 24%] Built target extension_flat_tensor 2025-06-05T23:24:46.3409837Z [ 24%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-06-05T23:24:46.3410956Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-u16.c.o 2025-06-05T23:24:46.3412397Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-u8.c.o 2025-06-05T23:24:46.3413384Z [ 24%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:24:46.3413907Z [ 24%] Built target extension_threadpool 2025-06-05T23:24:46.3414707Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:24:46.3416033Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:24:46.3417350Z [ 24%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:24:46.3418485Z [ 24%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:24:46.3419495Z [ 24%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-06-05T23:24:46.3420309Z [ 24%] Linking CXX static library libextension_runner_util.a 2025-06-05T23:24:46.3420727Z [ 24%] Built target extension_runner_util 2025-06-05T23:24:46.3421392Z [ 24%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-06-05T23:24:46.3422410Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:24:46.3423840Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:24:46.3425568Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:24:46.3427040Z [ 24%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-06-05T23:24:46.3428521Z [ 24%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:24:46.3429964Z [ 24%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:24:46.3430976Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:24:46.3432276Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:24:46.3433765Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:24:46.3435217Z [ 24%] Linking CXX static library libcpublas.a 2025-06-05T23:24:46.3435713Z [ 24%] Built target cpublas 2025-06-05T23:24:46.3436611Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:24:46.3437633Z [ 25%] Linking CXX static library libextension_tensor.a 2025-06-05T23:24:46.3438171Z [ 25%] Built target extension_tensor 2025-06-05T23:24:46.3439101Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:24:46.3440404Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:24:46.3441286Z [ 25%] Generating etdump headers 2025-06-05T23:24:46.3442557Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-06-05T23:24:46.3443930Z [ 25%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/etdump_flatcc.cpp.o 2025-06-05T23:24:46.3444922Z [ 25%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/emitter.cpp.o 2025-06-05T23:24:46.3445718Z [ 25%] Generating bundled_program headers 2025-06-05T23:24:46.3446680Z [ 25%] Building CXX object devtools/bundled_program/CMakeFiles/bundled_program.dir/bundled_program.cpp.o 2025-06-05T23:24:46.3448321Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-06-05T23:24:46.3449922Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:24:46.3451578Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse-load1.c.o 2025-06-05T23:24:46.3453421Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-06-05T23:24:46.3454960Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:24:46.3456346Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:24:46.3457610Z [ 25%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/buffer_data_sink.cpp.o 2025-06-05T23:24:46.3458559Z [ 25%] Linking CXX static library libbundled_program.a 2025-06-05T23:24:48.6895079Z [ 25%] Built target bundled_program 2025-06-05T23:24:48.6896682Z [ 25%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/file_data_sink.cpp.o 2025-06-05T23:24:48.6897869Z [ 26%] Building CXX object extension/module/CMakeFiles/extension_module.dir/module.cpp.o 2025-06-05T23:24:48.6899474Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-06-05T23:24:48.6901084Z [ 26%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:24:48.6902719Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-06-05T23:24:48.6904323Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:24:48.6905752Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:24:48.6907630Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:24:48.6909322Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:24:48.6910371Z [ 27%] Linking CXX static library libetdump.a 2025-06-05T23:24:48.6910822Z [ 27%] Built target etdump 2025-06-05T23:24:48.6911986Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-06-05T23:24:48.6913547Z [ 27%] Building CXX object extension/module/CMakeFiles/extension_module_static.dir/module.cpp.o 2025-06-05T23:24:48.6914502Z [ 27%] Linking CXX static library libextension_module.a 2025-06-05T23:24:48.6915041Z [ 27%] Built target extension_module 2025-06-05T23:24:48.6915945Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:24:48.6917530Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-06-05T23:24:48.6918760Z [ 27%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:24:48.6920110Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2c4-minmax-sse.c.o 2025-06-05T23:24:48.6921249Z [ 27%] Built target kernels_util_all_deps 2025-06-05T23:24:48.6922462Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:24:48.6924147Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:24:48.6925418Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:24:48.6926850Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:24:48.6928428Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:24:48.6929642Z [ 27%] Linking CXX static library libextension_module_static.a 2025-06-05T23:24:48.6931240Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-06-05T23:24:48.6932644Z [ 27%] Built target extension_module_static 2025-06-05T23:24:48.6933665Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-06-05T23:24:48.6934682Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:24:48.6936131Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:24:48.6937097Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:24:48.6938360Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-06-05T23:24:48.6939457Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:24:48.6940632Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse-load1.c.o 2025-06-05T23:24:48.6941790Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:24:48.6942749Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:24:48.6943855Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:24:48.6946175Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:24:48.6948356Z [ 28%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:24:48.6950077Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:24:48.6951710Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:24:48.6953907Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-fma3-broadcast.c.o 2025-06-05T23:24:48.6956129Z [ 28%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:24:48.6958448Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:24:48.6960088Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-06-05T23:24:48.6962305Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-7x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:24:48.6964440Z [ 29%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:24:48.6966367Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:24:48.6968235Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:24:48.6970401Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-06-05T23:24:48.6972878Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-sse-p8.c.o 2025-06-05T23:24:48.6974663Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-06-05T23:24:48.6975832Z [ 29%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:24:48.6977028Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-06-05T23:24:48.6978361Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-sse-c8.c.o 2025-06-05T23:24:48.6979501Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:24:48.6980566Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:24:48.6981866Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:24:48.6983057Z [ 29%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_quantize.cpp.o 2025-06-05T23:24:48.6984293Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:24:48.6985492Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:24:48.6986847Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:24:48.6988087Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:24:48.6989127Z [ 30%] Building CXX object extension/training/CMakeFiles/extension_training.dir/__/data_loader/file_data_loader.cpp.o 2025-06-05T23:24:48.6990469Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:24:48.6991688Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:24:48.6992439Z [ 30%] Linking CXX static library libquantized_kernels.a 2025-06-05T23:24:48.6993235Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:24:51.1640239Z [ 30%] Built target quantized_kernels 2025-06-05T23:24:51.1654291Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:24:51.1656261Z [ 31%] Building CXX object extension/training/CMakeFiles/extension_training.dir/__/data_loader/mmap_data_loader.cpp.o 2025-06-05T23:24:51.1658632Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:24:51.1661187Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-06-05T23:24:51.1663534Z [ 31%] Building CXX object extension/training/CMakeFiles/extension_training.dir/__/flat_tensor/flat_tensor_data_map.cpp.o 2025-06-05T23:24:51.1666396Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-06-05T23:24:51.1668378Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:24:51.1670268Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:24:51.1671983Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:24:51.1674231Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-load1.c.o 2025-06-05T23:24:51.1677177Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-06-05T23:24:51.1679608Z [ 31%] Building CXX object extension/training/CMakeFiles/extension_training.dir/__/flat_tensor/serialize/flat_tensor_header.cpp.o 2025-06-05T23:24:51.1681661Z [ 31%] Building CXX object extension/training/CMakeFiles/extension_training.dir/__/module/module.cpp.o 2025-06-05T23:24:51.1684099Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-06-05T23:24:51.1686360Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:24:51.1688432Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:24:51.1690138Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:24:51.1692237Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-06-05T23:24:51.1695025Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:24:51.1697840Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-06-05T23:24:51.1700116Z [ 31%] Building CXX object extension/training/CMakeFiles/extension_training.dir/module/training_module.cpp.o 2025-06-05T23:24:51.1701938Z [ 31%] Building CXX object extension/training/CMakeFiles/extension_training.dir/optimizer/sgd.cpp.o 2025-06-05T23:24:51.1704044Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-06-05T23:24:51.1706343Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:24:51.1708009Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:24:51.1710162Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2c4-minmax-sse.c.o 2025-06-05T23:24:51.1712374Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:24:51.1714745Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:24:51.1717292Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-06-05T23:24:51.1719015Z [ 32%] Linking CXX static library libextension_training.a 2025-06-05T23:24:51.1719741Z [ 32%] Built target extension_training 2025-06-05T23:24:51.1721432Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-06-05T23:24:51.1723771Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:24:51.1725636Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:24:51.1727547Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:24:51.1729793Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse-load1.c.o 2025-06-05T23:24:51.1732548Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:24:51.1735010Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:24:51.1736801Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:24:51.1738472Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:24:51.1740886Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.o 2025-06-05T23:24:51.1743814Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-7x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:24:51.1746830Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:24:51.1749023Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:24:51.1750848Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:24:51.1752674Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:24:51.1754773Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:24:51.1757496Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:24:51.1760393Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:24:51.1762527Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:24:51.1764780Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:24:51.1767640Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-sse-c4.c.o 2025-06-05T23:24:51.1769849Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:24:51.1771747Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:24:51.1774227Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:24:51.1777212Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:24:51.1779550Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:24:51.1781277Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:24:51.1783726Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:24:51.1786023Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:24:51.1787743Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:24:51.1790072Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:24:53.8918290Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-sse41-dup.c.o 2025-06-05T23:24:53.8920867Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:24:53.8923171Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:24:53.8925789Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx-broadcast.c.o 2025-06-05T23:24:53.8929000Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx2-broadcast.c.o 2025-06-05T23:24:53.8931380Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:24:53.8933325Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:24:53.8936059Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-fma3-broadcast.c.o 2025-06-05T23:24:53.8939073Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:24:53.8941463Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:24:53.8943370Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:24:53.8945193Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:24:53.8947691Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-sse41-dup.c.o 2025-06-05T23:24:53.8950747Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:24:53.8953164Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:24:53.8954762Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:24:53.8957296Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:24:53.8959700Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:24:53.8961306Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:24:53.8963784Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:24:53.8966817Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:24:53.8969867Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:24:53.8972153Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:24:53.8974719Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:24:53.8977291Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:24:53.8978961Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:24:53.8980655Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:24:53.8982957Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:24:53.8985914Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-sse41-dup.c.o 2025-06-05T23:24:53.8988922Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:24:53.8991391Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:24:53.8993301Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:24:53.8995109Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:24:53.8997517Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-sse41-dup.c.o 2025-06-05T23:24:53.9000514Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:24:53.9003033Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:24:53.9005658Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx2-broadcast.c.o 2025-06-05T23:24:53.9008017Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:24:53.9009378Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:24:53.9010683Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-fma3-broadcast.c.o 2025-06-05T23:24:53.9011895Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:24:53.9012646Z [ 37%] Generating selected_operators.yaml for quantized_ops_lib 2025-06-05T23:24:53.9013806Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:24:53.9015040Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:24:53.9015822Z [ 37%] Generating code for kernel registration 2025-06-05T23:24:53.9016785Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-u32.c.o 2025-06-05T23:24:53.9017967Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:24:53.9018945Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:24:53.9020133Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-u64.c.o 2025-06-05T23:24:53.9021278Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:24:53.9022549Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-u128.c.o 2025-06-05T23:24:53.9023983Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:24:53.9025144Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:24:53.9026145Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:24:53.9027388Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:24:53.9028556Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:24:53.9029779Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:24:53.9031167Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-u32.c.o 2025-06-05T23:24:53.9032261Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:24:53.9033407Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-u32.c.o 2025-06-05T23:24:56.7632295Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:24:56.7634589Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-u32.c.o 2025-06-05T23:24:56.7636737Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:24:56.7638534Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:24:56.7640897Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-u64.c.o 2025-06-05T23:24:56.7643075Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:24:56.7645376Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-u128.c.o 2025-06-05T23:24:56.7648107Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:24:56.7650562Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:24:56.7652463Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:24:56.7654975Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:24:56.7657675Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:24:56.7660017Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:24:56.7662300Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-u32.c.o 2025-06-05T23:24:56.7665491Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.o 2025-06-05T23:24:56.7668420Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:24:56.7670231Z [ 39%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:24:56.7673027Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc2.c.o 2025-06-05T23:24:56.7675506Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:24:56.7678238Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.o 2025-06-05T23:24:56.7681758Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-06-05T23:24:56.7684366Z [ 39%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:24:56.7686151Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:24:56.7689012Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.o 2025-06-05T23:24:56.7692098Z [ 39%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_lib.dir/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:24:56.7694184Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:24:56.7696600Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-avx-c32.c.o 2025-06-05T23:24:56.7699356Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-avx512f-c64.c.o 2025-06-05T23:24:56.7701136Z [ 39%] Linking CXX static library libquantized_ops_lib.a 2025-06-05T23:24:56.7702599Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:24:56.7703742Z [ 39%] Built target quantized_ops_lib 2025-06-05T23:24:56.7705151Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:24:56.7707075Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:24:56.7709309Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-06-05T23:24:56.7711578Z [ 40%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-06-05T23:24:56.7714079Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-sse-c16.c.o 2025-06-05T23:24:56.7716514Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:24:56.7718747Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx-u32-acc4.c.o 2025-06-05T23:24:56.7720920Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:24:56.7722787Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:24:56.7725139Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx512f-u64-acc4.c.o 2025-06-05T23:24:56.7727257Z [ 41%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:24:56.7728903Z [ 41%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:24:56.7730733Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:24:56.7733081Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-06-05T23:24:56.7735304Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:24:56.7737389Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-sse-u16-acc4.c.o 2025-06-05T23:24:56.7739978Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-avx-u32-acc4.c.o 2025-06-05T23:24:56.7742199Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:24:56.7744004Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:24:56.7745651Z [ 41%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:24:56.7747520Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:24:56.7749788Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-avx512f-u64-acc4.c.o 2025-06-05T23:24:56.7752612Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-06-05T23:24:56.7754775Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:24:56.7757000Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-sse-u16-acc4.c.o 2025-06-05T23:24:56.7759075Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:24:56.7760748Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:24:56.7762885Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx-u32-acc4.c.o 2025-06-05T23:24:56.7765622Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx512f-u64-acc4.c.o 2025-06-05T23:24:56.7767797Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:24:56.7769812Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:24:59.7498919Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-06-05T23:24:59.7501176Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:24:59.7503377Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-sse-u16-acc4.c.o 2025-06-05T23:24:59.7505957Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-sse.c.o 2025-06-05T23:24:59.7508958Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-06-05T23:24:59.7511079Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:24:59.7512697Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:24:59.7515004Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-06-05T23:24:59.7517641Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-06-05T23:24:59.7519929Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:24:59.7522132Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx-u16.c.o 2025-06-05T23:24:59.7524205Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:24:59.7526328Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx512f-u32.c.o 2025-06-05T23:24:59.7528926Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-06-05T23:24:59.7531204Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:24:59.7533151Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:24:59.7535359Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-sse-u8.c.o 2025-06-05T23:24:59.7537524Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:24:59.7539715Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx-u16.c.o 2025-06-05T23:24:59.7542264Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx512f-u32.c.o 2025-06-05T23:24:59.7544388Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:24:59.7546287Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:24:59.7548282Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:24:59.7550584Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-06-05T23:24:59.7552682Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:24:59.7554990Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-sse-u8.c.o 2025-06-05T23:24:59.7557530Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx-u16.c.o 2025-06-05T23:24:59.7559753Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:24:59.7561527Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:24:59.7563738Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx512f-u32.c.o 2025-06-05T23:24:59.7566056Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:24:59.7568140Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-06-05T23:24:59.7570691Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-sse-u8.c.o 2025-06-05T23:24:59.7572979Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:24:59.7574760Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:24:59.7576972Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx-u16.c.o 2025-06-05T23:24:59.7579490Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx512f-u32.c.o 2025-06-05T23:24:59.7582072Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-06-05T23:24:59.7584249Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:24:59.7586514Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-sse-u8.c.o 2025-06-05T23:24:59.7588728Z [ 44%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:24:59.7590644Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:24:59.7592919Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx-u16.c.o 2025-06-05T23:24:59.7595464Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx512f-u32.c.o 2025-06-05T23:24:59.7597978Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-06-05T23:24:59.7600263Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:24:59.7602504Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-sse-u8.c.o 2025-06-05T23:24:59.7605078Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx-u16.c.o 2025-06-05T23:24:59.7607144Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:24:59.7608827Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:24:59.7610838Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:24:59.7613457Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx512f-u32.c.o 2025-06-05T23:24:59.7616099Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-06-05T23:24:59.7618276Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:24:59.7620312Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-sse-u8.c.o 2025-06-05T23:24:59.7622762Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx-u16.c.o 2025-06-05T23:24:59.7625049Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:24:59.7626956Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:24:59.7629152Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx512f-u32.c.o 2025-06-05T23:24:59.7631855Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-06-05T23:24:59.7634028Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:24:59.7635757Z [ 46%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:24:59.7637389Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:25:02.7478964Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-sse-u8.c.o 2025-06-05T23:25:02.7481430Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx-u16.c.o 2025-06-05T23:25:02.7483424Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:25:02.7485524Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx512f-u32.c.o 2025-06-05T23:25:02.7487689Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:25:02.7489441Z [ 46%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:25:02.7491097Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:25:02.7493205Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-06-05T23:25:02.7495657Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-sse-u8.c.o 2025-06-05T23:25:02.7497663Z [ 46%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:25:02.7499400Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:25:02.7501662Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-avx-u16.c.o 2025-06-05T23:25:02.7503592Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:25:02.7505647Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-avx512f-u32.c.o 2025-06-05T23:25:02.7508414Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-06-05T23:25:02.7510525Z [ 46%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:25:02.7522995Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:25:02.7525581Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-sse-u8.c.o 2025-06-05T23:25:02.7532067Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:25:02.7535289Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-avx-u16.c.o 2025-06-05T23:25:02.7538028Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:25:02.7540264Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:25:02.7543188Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-avx512f-u32.c.o 2025-06-05T23:25:02.7545814Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:25:02.7548518Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-06-05T23:25:02.7551535Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-sse-u8.c.o 2025-06-05T23:25:02.7554477Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-avx-u16.c.o 2025-06-05T23:25:02.7559989Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:25:02.7562785Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-avx512f-u32.c.o 2025-06-05T23:25:02.7565439Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:25:02.7567999Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-06-05T23:25:02.7570603Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:25:02.7572890Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-sse2-u8.c.o 2025-06-05T23:25:02.7575058Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:25:02.7577315Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-avx-u16.c.o 2025-06-05T23:25:02.7579426Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:25:02.7581595Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-avx512f-u32.c.o 2025-06-05T23:25:02.7583890Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:25:02.7585954Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-06-05T23:25:02.7588074Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:25:02.7589972Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:25:02.7592074Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-sse2-u8.c.o 2025-06-05T23:25:02.7594476Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-avx-u16.c.o 2025-06-05T23:25:02.7596593Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:25:02.7598635Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:25:02.7600578Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:25:02.7602694Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-avx512f-u32.c.o 2025-06-05T23:25:02.7605241Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-06-05T23:25:02.7607762Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-sse-u8.c.o 2025-06-05T23:25:02.7609976Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:25:02.7611758Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:25:02.7613749Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:25:02.7615970Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-avx-u16.c.o 2025-06-05T23:25:02.7618245Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:25:02.7620472Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-avx512f-u32.c.o 2025-06-05T23:25:02.7623928Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-06-05T23:25:02.7626565Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-sse2-u8.c.o 2025-06-05T23:25:02.7628619Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:25:02.7630623Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-avx-u16.c.o 2025-06-05T23:25:02.7633103Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-avx512f-u32.c.o 2025-06-05T23:25:02.7635123Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:25:02.7636878Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:25:02.7638942Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-06-05T23:25:04.9419507Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:25:04.9421599Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:25:04.9424012Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-sse-u8.c.o 2025-06-05T23:25:04.9426696Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx-u16.c.o 2025-06-05T23:25:04.9429248Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:25:04.9431874Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx512f-u32.c.o 2025-06-05T23:25:04.9434166Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:25:04.9436209Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:25:04.9438471Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-06-05T23:25:04.9440750Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:25:04.9443155Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-sse-u8.c.o 2025-06-05T23:25:04.9445798Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx-u16.c.o 2025-06-05T23:25:04.9448092Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:25:04.9449986Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:25:04.9451882Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:25:04.9454270Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx512f-u32.c.o 2025-06-05T23:25:04.9456984Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-06-05T23:25:04.9459254Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:25:04.9460952Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:25:04.9463032Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-u8.c.o 2025-06-05T23:25:04.9465882Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx-u16.c.o 2025-06-05T23:25:04.9468377Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx512f-u32.c.o 2025-06-05T23:25:04.9470418Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:25:04.9472172Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:25:04.9473964Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:25:04.9476231Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-06-05T23:25:04.9478256Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:25:04.9480447Z [ 52%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-sse-u8.c.o 2025-06-05T23:25:04.9482947Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:25:04.9485097Z [ 52%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-avx-u16.c.o 2025-06-05T23:25:04.9487486Z [ 52%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-avx512f-u32.c.o 2025-06-05T23:25:04.9489923Z [ 52%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-06-05T23:25:04.9491506Z [ 52%] Linking CXX static library liboptimized_kernels.a 2025-06-05T23:25:04.9493123Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:25:04.9495236Z [ 52%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-sse-u8.c.o 2025-06-05T23:25:04.9497192Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:25:04.9499334Z [ 52%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-avx-u16.c.o 2025-06-05T23:25:04.9500643Z [ 52%] Built target optimized_kernels 2025-06-05T23:25:04.9501848Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:25:04.9503398Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:25:04.9505017Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:25:04.9506846Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:25:04.9508912Z [ 52%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-avx512f-u16.c.o 2025-06-05T23:25:04.9511117Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:25:04.9513059Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:25:04.9515219Z [ 52%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-06-05T23:25:04.9517547Z [ 52%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-sse-u8.c.o 2025-06-05T23:25:04.9519867Z [ 52%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-avx512f-u32.c.o 2025-06-05T23:25:04.9521550Z [ 53%] Generating selected_operators.yaml for optimized_ops_lib 2025-06-05T23:25:04.9522960Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:25:04.9524646Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:25:04.9526690Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-fma3-u16.c.o 2025-06-05T23:25:04.9529019Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-06-05T23:25:04.9531308Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-sse-u8.c.o 2025-06-05T23:25:04.9532884Z [ 53%] Generating code for kernel registration 2025-06-05T23:25:04.9534733Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx.c.o 2025-06-05T23:25:04.9536927Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:25:04.9539239Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx512f.c.o 2025-06-05T23:25:04.9541495Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:25:04.9543291Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:25:04.9545499Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-06-05T23:25:04.9548285Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-sse2.c.o 2025-06-05T23:25:04.9550612Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:25:04.9552822Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:25:07.0669315Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx.c.o 2025-06-05T23:25:07.0671081Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:25:07.0672503Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:25:07.0673921Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:25:07.0675385Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx512f.c.o 2025-06-05T23:25:07.0676528Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:25:07.0677511Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:25:07.0678474Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:25:07.0679606Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-06-05T23:25:07.0680720Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:25:07.0681610Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:25:07.0682755Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-sse2.c.o 2025-06-05T23:25:07.0684118Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx.c.o 2025-06-05T23:25:07.0685333Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:25:07.0686571Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx512f.c.o 2025-06-05T23:25:07.0687967Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-06-05T23:25:07.0689054Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:25:07.0690288Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-sse2.c.o 2025-06-05T23:25:07.0691389Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:25:07.0692287Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:25:07.0693264Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:25:07.0694618Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-u32.c.o 2025-06-05T23:25:07.0696065Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:25:07.0697066Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:25:07.0698370Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-u56.c.o 2025-06-05T23:25:07.0699955Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-u128.c.o 2025-06-05T23:25:07.0701518Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-06-05T23:25:07.0702943Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-06-05T23:25:07.0704123Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:25:07.0705091Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:25:07.0706503Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-u12.c.o 2025-06-05T23:25:07.0707727Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:25:07.0708818Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:25:07.0709981Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-06-05T23:25:07.0711049Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:25:07.0712352Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx-rational-12-10-div.c.o 2025-06-05T23:25:07.0713558Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:25:07.0714811Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx512f-rational-12-10-nr.c.o 2025-06-05T23:25:07.0716263Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-fma3-rational-12-10-div.c.o 2025-06-05T23:25:07.0717406Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:25:07.0718280Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:25:07.0719259Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:25:07.0720538Z [ 57%] Building CXX object kernels/optimized/CMakeFiles/optimized_ops_lib.dir/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:25:07.0721835Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:25:07.0723144Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-06-05T23:25:07.0724612Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-sse2-rational-12-10-div.c.o 2025-06-05T23:25:07.0725857Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:25:07.0726865Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:25:07.0727972Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx-u16.c.o 2025-06-05T23:25:07.0729320Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx512f-u16.c.o 2025-06-05T23:25:07.0730247Z [ 58%] Linking CXX static library liboptimized_ops_lib.a 2025-06-05T23:25:07.0730671Z [ 58%] Built target optimized_ops_lib 2025-06-05T23:25:07.0731561Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-fma3-u16.c.o 2025-06-05T23:25:07.0732787Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:25:07.0734020Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-06-05T23:25:07.0735168Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:25:07.0736122Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:25:07.0737096Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:25:07.0738073Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:25:07.0739057Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:25:07.0740254Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-sse-u8.c.o 2025-06-05T23:25:07.0741714Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx2-rational-3-3-div.c.o 2025-06-05T23:25:07.0744057Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx512f-rational-3-3-div.c.o 2025-06-05T23:25:08.7855041Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-fma3-rational-3-3-div.c.o 2025-06-05T23:25:08.7856319Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:25:08.7857579Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-06-05T23:25:08.7859017Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-sse2-rational-3-3-div.c.o 2025-06-05T23:25:08.7860143Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:25:08.7861220Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:25:08.7862169Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:25:08.7863220Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:25:08.7864445Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-u16.c.o 2025-06-05T23:25:08.7866128Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:25:08.7867941Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-u16.c.o 2025-06-05T23:25:08.7869289Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:25:08.7871096Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:25:08.7872874Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:25:08.7875216Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-06-05T23:25:08.7877048Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:25:08.7878348Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:25:08.7879566Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-u8.c.o 2025-06-05T23:25:08.7880730Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:25:08.7881915Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-u8.c.o 2025-06-05T23:25:08.7883368Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-06-05T23:25:08.7884957Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-sse-2x.c.o 2025-06-05T23:25:08.7886355Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-06-05T23:25:08.7887642Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx-u16.c.o 2025-06-05T23:25:08.7888821Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:25:08.7889879Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:25:08.7891047Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-u16.c.o 2025-06-05T23:25:08.7892483Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-06-05T23:25:08.7893933Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-06-05T23:25:08.7895691Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-sse2-u8.c.o 2025-06-05T23:25:08.7896781Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:25:08.7897804Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:25:08.7898750Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:25:08.7899906Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-sse41-u8.c.o 2025-06-05T23:25:08.7901199Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx-u16.c.o 2025-06-05T23:25:08.7902959Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-u16.c.o 2025-06-05T23:25:08.7904565Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:25:08.7906465Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-06-05T23:25:08.7908301Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-06-05T23:25:08.7909642Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:25:08.7910630Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:25:08.7911665Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:25:08.7912656Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:25:08.7913799Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse2-u8.c.o 2025-06-05T23:25:08.7914923Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:25:08.7915927Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:25:08.7917125Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse41-u8.c.o 2025-06-05T23:25:08.7918415Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx-u16.c.o 2025-06-05T23:25:08.7919701Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx512f-u16.c.o 2025-06-05T23:25:08.7920852Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:25:08.7921838Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:25:08.7922830Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:25:08.7923842Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:25:08.7924855Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:25:08.7925804Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:25:08.7926940Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-06-05T23:25:08.7928294Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-06-05T23:25:08.7929653Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-sse2-u8.c.o 2025-06-05T23:25:08.7930801Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:25:08.7931775Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:25:08.7932880Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-sse41-u8.c.o 2025-06-05T23:25:08.7933939Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:25:08.7934859Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:25:10.7416501Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx-u16.c.o 2025-06-05T23:25:10.7417901Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-u16.c.o 2025-06-05T23:25:10.7419270Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:25:10.7420466Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-06-05T23:25:10.7421892Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-06-05T23:25:10.7423235Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-sse2-u8.c.o 2025-06-05T23:25:10.7424353Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:25:10.7425323Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:25:10.7426368Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:25:10.7427497Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-sse41-u8.c.o 2025-06-05T23:25:10.7428590Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:25:10.7429498Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:25:10.7430446Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:25:10.7431666Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx-rsqrt-u16.c.o 2025-06-05T23:25:10.7432799Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:25:10.7434017Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx512f-rsqrt-u32.c.o 2025-06-05T23:25:10.7435185Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:25:10.7436392Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-fma3-rsqrt-u16.c.o 2025-06-05T23:25:10.7437792Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-06-05T23:25:10.7438989Z [ 63%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:25:10.7440601Z [ 63%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:25:10.7442403Z [ 63%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:25:10.7444692Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-06-05T23:25:10.7447349Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-sse-rsqrt-u8.c.o 2025-06-05T23:25:10.7450102Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-u40.c.o 2025-06-05T23:25:10.7452684Z [ 63%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:25:10.7454797Z [ 63%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:25:10.7456753Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:25:10.7458544Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:25:10.7460266Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-u40.c.o 2025-06-05T23:25:10.7461957Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u64.c.o 2025-06-05T23:25:10.7463306Z [ 63%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:25:10.7464306Z [ 63%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:25:10.7466270Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.o 2025-06-05T23:25:10.7468279Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-u8.c.o 2025-06-05T23:25:10.7469453Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:25:10.7470403Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:25:10.7471353Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:25:10.7472638Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-u8.c.o 2025-06-05T23:25:10.7473877Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:25:10.7474836Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:25:10.7476033Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-rsqrt-u16.c.o 2025-06-05T23:25:10.7477134Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:25:10.7478030Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:25:10.7478975Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:25:10.7480159Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-rsqrt-u16.c.o 2025-06-05T23:25:10.7481436Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:25:10.7482405Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:25:10.7483577Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-rsqrt-u16.c.o 2025-06-05T23:25:10.7484939Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-06-05T23:25:10.7486400Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-sse-rsqrt-u12.c.o 2025-06-05T23:25:10.7487618Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:25:10.7489473Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx-rational-9-8-div.c.o 2025-06-05T23:25:10.7491515Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:25:10.7493183Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:25:10.7495127Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:25:10.7497546Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx512f-rational-9-8-nr.c.o 2025-06-05T23:25:10.7499682Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:25:10.7501422Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:25:10.7503689Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-fma3-rational-9-8-div.c.o 2025-06-05T23:25:10.7505967Z [ 66%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:25:10.7508001Z [ 66%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:25:12.3976341Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-06-05T23:25:12.3978667Z [ 66%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:25:12.3980464Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:25:12.3982229Z [ 66%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:25:12.3984178Z [ 66%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:25:12.3986646Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-sse2-rational-9-8-div.c.o 2025-06-05T23:25:12.3988948Z [ 66%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:25:12.3991148Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx.c.o 2025-06-05T23:25:12.3993655Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx512f.c.o 2025-06-05T23:25:12.3996380Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-06-05T23:25:12.3998875Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-sse2.c.o 2025-06-05T23:25:12.4001133Z [ 66%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:25:12.4002974Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:25:12.4004916Z [ 66%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:25:12.4007199Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx.c.o 2025-06-05T23:25:12.4009841Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx512f.c.o 2025-06-05T23:25:12.4011862Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:25:12.4014083Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-06-05T23:25:12.4016413Z [ 66%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:25:12.4018448Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:25:12.4020541Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-sse2.c.o 2025-06-05T23:25:12.4022950Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx.c.o 2025-06-05T23:25:12.4025408Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx512f.c.o 2025-06-05T23:25:12.4027417Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:25:12.4028532Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-06-05T23:25:12.4029649Z [ 67%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:25:12.4030761Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-sse2.c.o 2025-06-05T23:25:12.4031817Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:25:12.4033058Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:25:12.4034618Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:25:12.4036280Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:25:12.4037957Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x8c8-minmax-avx256skx-madd-prfm.c.o 2025-06-05T23:25:12.4039243Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:25:12.4040545Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnni.c.o 2025-06-05T23:25:12.4041951Z [ 68%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:25:12.4043008Z [ 68%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:25:12.4044382Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:25:12.4046064Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-8x8c8-minmax-avx256skx-madd-prfm.c.o 2025-06-05T23:25:12.4047725Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnni.c.o 2025-06-05T23:25:12.4049390Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-16x64c4-minmax-avx512amx.c.o 2025-06-05T23:25:12.4050600Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:25:12.4051920Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x64c4-minmax-avx512amx.c.o 2025-06-05T23:25:12.4053181Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:25:12.4054136Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:25:12.4055381Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:25:12.4056560Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:25:12.4057494Z [ 69%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:25:12.4058457Z [ 69%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:25:12.4059777Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c8-minmax-avx256skx.c.o 2025-06-05T23:25:12.4061390Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c8-minmax-avx256vnni.c.o 2025-06-05T23:25:12.4062957Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:25:12.4064186Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:25:12.4065405Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:25:12.4067390Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-5x8c8-minmax-avx256skx.c.o 2025-06-05T23:25:12.4068668Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:25:12.4069771Z [ 69%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:25:12.4071219Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-8x8c8-minmax-avx256vnni.c.o 2025-06-05T23:25:12.4072694Z [ 69%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:25:14.1073744Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-16x64c4-minmax-avx512amx.c.o 2025-06-05T23:25:14.1076505Z [ 69%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:25:14.1079202Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x64c4-minmax-avx512amx.c.o 2025-06-05T23:25:14.1082101Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:25:14.1084068Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c8-minmax-avx256skx.c.o 2025-06-05T23:25:14.1085407Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:25:14.1086524Z [ 70%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:25:14.1087980Z [ 70%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:25:14.1089122Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:25:14.1090062Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:25:14.1091356Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c8-minmax-avx256vnni.c.o 2025-06-05T23:25:14.1092685Z [ 70%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:25:14.1094040Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:25:14.1095651Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-5x8c8-minmax-avx256skx.c.o 2025-06-05T23:25:14.1097273Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-8x8c8-minmax-avx256vnni.c.o 2025-06-05T23:25:14.1098927Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:25:14.1100531Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:25:14.1101780Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:25:14.1103113Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld128.c.o 2025-06-05T23:25:14.1104358Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:25:14.1105253Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:25:14.1106364Z [ 70%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:25:14.1107329Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:25:14.1108408Z [ 70%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:25:14.1109506Z [ 70%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:25:14.1110869Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:25:14.1112499Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld128.c.o 2025-06-05T23:25:14.1113850Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:25:14.1115085Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:25:14.1116492Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:25:14.1118097Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld128.c.o 2025-06-05T23:25:14.1119680Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:25:14.1121258Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:25:14.1122529Z [ 70%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:25:14.1123567Z [ 70%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:25:14.1124620Z [ 71%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:25:14.1125993Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld128.c.o 2025-06-05T23:25:14.1127324Z [ 72%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:25:14.1128445Z [ 72%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:25:14.1129573Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:25:14.1130952Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:25:14.1132593Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:25:14.1134958Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-16x64c4-minmax-avx512amx.c.o 2025-06-05T23:25:14.1137033Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:25:14.1138682Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:25:14.1140395Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:25:14.1142116Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:25:14.1143860Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:25:14.1145616Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:25:14.1148032Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd-prfm.c.o 2025-06-05T23:25:14.1150786Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:25:14.1152966Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:25:14.1154271Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:25:14.1155529Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:25:14.1156593Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:25:14.1157629Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:25:15.5525971Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:25:15.5528692Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:25:15.5531724Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:25:15.5534080Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:25:15.5536505Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x64c4-minmax-avx512amx.c.o 2025-06-05T23:25:15.5539504Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:25:15.5541916Z [ 73%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:25:15.5544382Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8c8-minmax-avx256skx-madd-prfm.c.o 2025-06-05T23:25:15.5546716Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:25:15.5548378Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:25:15.5550594Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:25:15.5552803Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:25:15.5554578Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:25:15.5556326Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:25:15.5557682Z [ 73%] Linking CXX static library liboptimized_portable_kernels.a 2025-06-05T23:25:15.5559886Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:25:15.5562102Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:25:15.5563827Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:25:15.5564886Z [ 73%] Built target optimized_portable_kernels 2025-06-05T23:25:15.5566415Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:25:15.5567681Z [ 73%] Merging kernel yaml files 2025-06-05T23:25:15.5569064Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:25:15.5571337Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:25:15.5573596Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:25:15.5575229Z [ 73%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-06-05T23:25:15.5577398Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:25:15.5580492Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-madd-prfm.c.o 2025-06-05T23:25:15.5583527Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:25:15.5586436Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x8c8-minmax-avx256skx-madd-prfm.c.o 2025-06-05T23:25:15.5589489Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-10x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:25:15.5591537Z [ 75%] Linking CXX static library libportable_kernels.a 2025-06-05T23:25:15.5593536Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-16x64c4-minmax-avx512amx.c.o 2025-06-05T23:25:15.5596425Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:25:15.5599603Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:25:15.5602732Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.o 2025-06-05T23:25:15.5604376Z [ 75%] Built target portable_kernels 2025-06-05T23:25:15.5605141Z [ 75%] Generating code for kernel registration 2025-06-05T23:25:15.5607107Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:25:15.5610257Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:25:15.5612362Z [ 75%] Generating selected_operators.yaml for portable_ops_lib 2025-06-05T23:25:15.5614628Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:25:15.5617738Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x64c4-minmax-avx512amx.c.o 2025-06-05T23:25:15.5620757Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:25:15.5623773Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-avx256skx.c.o 2025-06-05T23:25:15.5626989Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.o 2025-06-05T23:25:15.5630082Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:25:15.5633140Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:25:15.5636322Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:25:15.5639470Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8c8-minmax-avx2.c.o 2025-06-05T23:25:15.5642653Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:25:15.5645864Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-8x8c8-minmax-avx256skx.c.o 2025-06-05T23:25:15.5647789Z [ 76%] Generating code for kernel registration 2025-06-05T23:25:15.5650011Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-10x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:25:15.5653253Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-16x64c4-minmax-avx512amx.c.o 2025-06-05T23:25:15.5656593Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:25:15.5659937Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:25:16.7017173Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.o 2025-06-05T23:25:16.7020371Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:25:16.7023370Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:25:16.7026494Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:25:16.7029516Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x64c4-minmax-avx512amx.c.o 2025-06-05T23:25:16.7032691Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:25:16.7035619Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-avx256skx.c.o 2025-06-05T23:25:16.7038540Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.o 2025-06-05T23:25:16.7041333Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:25:16.7044325Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:25:16.7047162Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:25:16.7050123Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8c8-minmax-avx2.c.o 2025-06-05T23:25:16.7053028Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:25:16.7055850Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x8c8-minmax-avx256skx.c.o 2025-06-05T23:25:16.7058659Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:25:16.7061398Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:25:16.7064143Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:25:16.7067339Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:16.7070246Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:16.7073018Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:25:16.7075872Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-06-05T23:25:16.7078754Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-06-05T23:25:16.7081569Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:25:16.7084349Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:25:16.7086924Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:25:16.7089825Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:16.7092795Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:16.7095667Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:25:16.7098682Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-06-05T23:25:16.7101919Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-06-05T23:25:16.7104743Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-avx2-u16.c.o 2025-06-05T23:25:16.7107519Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-u32.c.o 2025-06-05T23:25:16.7110213Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-u16.c.o 2025-06-05T23:25:16.7112957Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-u32.c.o 2025-06-05T23:25:16.7115675Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-06-05T23:25:16.7118304Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-06-05T23:25:16.7120839Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-u32.c.o 2025-06-05T23:25:16.7123417Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-u16.c.o 2025-06-05T23:25:16.7126343Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-avx256vnni-prfm.c.o 2025-06-05T23:25:16.7129296Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:25:16.7132134Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-06-05T23:25:16.7135090Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-goi-avx256vnni-prfm.c.o 2025-06-05T23:25:16.7138321Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:25:16.7141650Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:25:16.7144868Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:25:16.7148111Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:16.7151313Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:16.7154723Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:25:17.8912118Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:25:17.8914633Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:25:17.8916344Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:25:17.8918218Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:25:17.8919940Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:25:17.8921610Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:17.8923306Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:17.8925028Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:25:17.8926693Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:25:17.8928383Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:25:17.8931749Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:25:17.8934991Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:25:17.8938237Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:25:17.8941534Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:17.8944604Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:17.8947889Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:25:17.8951188Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:25:17.8954462Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:25:17.8957830Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-16x64c4-minmax-fp32-avx512amx.c.o 2025-06-05T23:25:17.8960962Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:25:17.8964142Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512vnni-prfm.c.o 2025-06-05T23:25:17.8967788Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:17.8971199Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:17.8974323Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:25:17.8977538Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:25:17.8979178Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:25:17.8980836Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x64c4-minmax-fp32-avx512amx.c.o 2025-06-05T23:25:17.8983449Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:25:17.8986594Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-avx256skx.c.o 2025-06-05T23:25:17.8989550Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:17.8992712Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:25:17.8995875Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:17.8999023Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:25:17.9002166Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:25:17.9005219Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:25:17.9008275Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8c8-minmax-fp32-avx256skx.c.o 2025-06-05T23:25:17.9011482Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:25:17.9014737Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512vnni-prfm.c.o 2025-06-05T23:25:17.9018005Z [ 81%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:25:17.9021140Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-16x64c4-minmax-fp32-avx512amx.c.o 2025-06-05T23:25:17.9024376Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:25:17.9027533Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:25:17.9030880Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:17.9034123Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:17.9037454Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:25:17.9040636Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:25:19.0824220Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:25:19.0827371Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x64c4-minmax-fp32-avx512amx.c.o 2025-06-05T23:25:19.0830364Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:25:19.0833336Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-avx256skx.c.o 2025-06-05T23:25:19.0836503Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:19.0837982Z [ 82%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-06-05T23:25:19.0838452Z [ 82%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:25:19.0839691Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:25:19.0841477Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:19.0843297Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:25:19.0844921Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_ops_lib.dir/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:25:19.0846552Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:25:19.0849412Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:25:19.0852518Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8c8-minmax-fp32-avx256skx.c.o 2025-06-05T23:25:19.0855724Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:25:19.0858775Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:25:19.0861660Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-goi-avx256vnni.c.o 2025-06-05T23:25:19.0864543Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:25:19.0867848Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.o 2025-06-05T23:25:19.0870551Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.o 2025-06-05T23:25:19.0873449Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.o 2025-06-05T23:25:19.0874634Z [ 83%] Linking CXX static library libportable_ops_lib.a 2025-06-05T23:25:19.0875957Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-06-05T23:25:19.0876797Z [ 83%] Built target portable_ops_lib 2025-06-05T23:25:19.0877691Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx2-u64-acc2.c.o 2025-06-05T23:25:19.0879047Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx256skx-u64-acc2.c.o 2025-06-05T23:25:19.0880230Z [ 83%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/data_loader/file_data_loader.cpp.o 2025-06-05T23:25:19.0881228Z [ 83%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/data_loader/mmap_data_loader.cpp.o 2025-06-05T23:25:19.0882225Z [ 83%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/flat_tensor/flat_tensor_data_map.cpp.o 2025-06-05T23:25:19.0883288Z [ 84%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/flat_tensor/serialize/flat_tensor_header.cpp.o 2025-06-05T23:25:19.0884329Z [ 84%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/flat_tensor/serialize/serialize.cpp.o 2025-06-05T23:25:19.0885548Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx512skx-u128-acc2.c.o 2025-06-05T23:25:19.0886947Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx512vnni-u128-acc2.c.o 2025-06-05T23:25:19.0888056Z [ 84%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/module/module.cpp.o 2025-06-05T23:25:19.0888946Z [ 84%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/tensor/tensor_ptr.cpp.o 2025-06-05T23:25:19.0889862Z [ 84%] Building CXX object extension/training/CMakeFiles/train_xor.dir/__/tensor/tensor_ptr_maker.cpp.o 2025-06-05T23:25:19.0890775Z [ 84%] Building CXX object extension/training/CMakeFiles/train_xor.dir/examples/XOR/train.cpp.o 2025-06-05T23:25:19.0891879Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-06-05T23:25:19.0892965Z [ 84%] Building CXX object extension/training/CMakeFiles/train_xor.dir/module/training_module.cpp.o 2025-06-05T23:25:19.0894192Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-ssse3-u32-acc2.c.o 2025-06-05T23:25:19.0895609Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:25:19.0896731Z [ 84%] Building CXX object extension/training/CMakeFiles/train_xor.dir/optimizer/sgd.cpp.o 2025-06-05T23:25:19.0897915Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:25:19.0899412Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:25:19.0900917Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:25:19.0902284Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-06-05T23:25:19.0903868Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:25:19.0905407Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:25:19.0907015Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:25:19.0908495Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:25:19.0910310Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:25:19.0911801Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:25:19.0913177Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:25:19.0914618Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:25:19.0916100Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:25:19.0917028Z [ 85%] Linking CXX executable train_xor 2025-06-05T23:25:19.8615608Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-u32.c.o 2025-06-05T23:25:19.8616978Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-u32.c.o 2025-06-05T23:25:19.8618270Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-06-05T23:25:19.8619573Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-06-05T23:25:19.8620840Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-u32.c.o 2025-06-05T23:25:19.8622133Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-u32.c.o 2025-06-05T23:25:19.8623597Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-ssse3-u32.c.o 2025-06-05T23:25:19.8624885Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-u32.c.o 2025-06-05T23:25:19.8625640Z [ 86%] Built target train_xor 2025-06-05T23:25:19.8626573Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-u32.c.o 2025-06-05T23:25:19.8627957Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:25:19.8629449Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:25:19.8630805Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-u32.c.o 2025-06-05T23:25:19.8632220Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-u32.c.o 2025-06-05T23:25:19.8633605Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-u32.c.o 2025-06-05T23:25:19.8635082Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:25:19.8636552Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:25:19.8638014Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:25:19.8639863Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:25:19.8641549Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:25:19.8643657Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:25:19.8645714Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:25:19.8648257Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:25:19.8650284Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-06-05T23:25:19.8651834Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.o 2025-06-05T23:25:19.8653360Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-06-05T23:25:19.8654858Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-sse2-c8.c.o 2025-06-05T23:25:19.8656389Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o 2025-06-05T23:25:19.8657938Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:25:19.8659579Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:25:19.8661161Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:19.8662742Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:19.8664324Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:25:19.8666303Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:25:19.8667850Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:25:19.8669494Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:25:19.8671086Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o 2025-06-05T23:25:19.8672625Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:25:19.8674201Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:19.8675774Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:19.8677365Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:25:19.8679917Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:25:19.8682433Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:25:19.8684741Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-u32.c.o 2025-06-05T23:25:19.8687103Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-u16.c.o 2025-06-05T23:25:19.8689473Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-u32.c.o 2025-06-05T23:25:19.8691024Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-06-05T23:25:19.8692489Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-06-05T23:25:19.8693958Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-u32.c.o 2025-06-05T23:25:19.8695933Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-u16.c.o 2025-06-05T23:25:19.8698434Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:25:19.8700909Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:20.7457521Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:20.7460498Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:25:20.7463634Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:25:20.7467103Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:25:20.7469997Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:25:20.7472871Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:20.7475914Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:25:20.7478887Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:20.7481830Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:25:20.7484740Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:25:20.7487622Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:25:20.7490537Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:25:20.7493617Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:25:20.7495970Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:20.7497492Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:20.7499015Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:25:20.7500511Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:25:20.7502002Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:25:20.7503480Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:25:20.7505075Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:25:20.7506686Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:25:20.7508194Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:25:20.7509696Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:25:20.7511265Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:25:20.7512751Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:25:20.7514258Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:25:20.7515752Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-ssse3-c64.c.o 2025-06-05T23:25:20.7517118Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-06-05T23:25:20.7518423Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-avx2-u64-acc2.c.o 2025-06-05T23:25:20.7519739Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-06-05T23:25:20.7521321Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-sse2-u32-acc2.c.o 2025-06-05T23:25:20.7524004Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:25:20.7526901Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:25:20.7529879Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:25:20.7532734Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:25:20.7535259Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-06-05T23:25:20.7538078Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:25:20.7540998Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:25:20.7543909Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:25:20.7546921Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:25:20.7549959Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:25:20.7553001Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:25:20.7555764Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:25:20.7558620Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:25:20.7561484Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:25:20.7564244Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-u32.c.o 2025-06-05T23:25:20.7566869Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-u32.c.o 2025-06-05T23:25:20.7569309Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-06-05T23:25:20.7571920Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-06-05T23:25:20.7574522Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-u32.c.o 2025-06-05T23:25:20.7576979Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-u32.c.o 2025-06-05T23:25:21.5462799Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-u32.c.o 2025-06-05T23:25:21.5464703Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-u32.c.o 2025-06-05T23:25:21.5466591Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-u32.c.o 2025-06-05T23:25:21.5468350Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:25:21.5469879Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:25:21.5471369Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-u32.c.o 2025-06-05T23:25:21.5472845Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-u32.c.o 2025-06-05T23:25:21.5474300Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-u32.c.o 2025-06-05T23:25:21.5475849Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:25:21.5477439Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:25:21.5479278Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:25:21.5481113Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:25:21.5482653Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:25:21.5484305Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:25:21.5485957Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:25:21.5487776Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:25:21.5489312Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-avx2.c.o 2025-06-05T23:25:21.5490893Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-avx512f.c.o 2025-06-05T23:25:21.5492591Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-06-05T23:25:21.5494243Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-06-05T23:25:21.5495743Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-c8.c.o 2025-06-05T23:25:21.5497418Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-c16.c.o 2025-06-05T23:25:21.5498934Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:25:21.5500427Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse2-c16.c.o 2025-06-05T23:25:21.5501913Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse41-c16.c.o 2025-06-05T23:25:21.5503317Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx2-u128.c.o 2025-06-05T23:25:21.5504627Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx512skx-u256.c.o 2025-06-05T23:25:21.5505979Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-06-05T23:25:21.5507316Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse2-u64.c.o 2025-06-05T23:25:21.5508592Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse41-u64.c.o 2025-06-05T23:25:21.5509905Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-06-05T23:25:21.5511269Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-c8.c.o 2025-06-05T23:25:21.5512629Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse41-c16.c.o 2025-06-05T23:25:21.5514019Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-06-05T23:25:21.5515399Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:25:21.5516858Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-sse2-c16.c.o 2025-06-05T23:25:21.5518175Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-06-05T23:25:21.5519411Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-sse2-u16.c.o 2025-06-05T23:25:21.5520655Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx2-u128.c.o 2025-06-05T23:25:21.5521961Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx512skx-u256.c.o 2025-06-05T23:25:21.5523297Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-06-05T23:25:21.5524551Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-sse2-u64.c.o 2025-06-05T23:25:21.5525981Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-avx2-u16-prfm.c.o 2025-06-05T23:25:21.5527553Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x64-gemm-goi-scalar-int-u4.c.o 2025-06-05T23:25:21.5529123Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-switch-avx2.c.o 2025-06-05T23:25:21.5530650Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-06-05T23:25:21.5532150Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-sse2.c.o 2025-06-05T23:25:21.5533632Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-06-05T23:25:21.5535028Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-ssse3.c.o 2025-06-05T23:25:21.5536411Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-avx-u4.c.o 2025-06-05T23:25:21.5537837Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16s4-gemm-goi-avx-u4.c.o 2025-06-05T23:25:21.5539314Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:25:21.5540770Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2c4-gemm-goi-sse2-u4.c.o 2025-06-05T23:25:22.4968759Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x32-gemm-goi-avx512f-u4-prfm.c.o 2025-06-05T23:25:22.4971679Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:25:22.4974502Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-sse2-u4.c.o 2025-06-05T23:25:22.4977162Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-06-05T23:25:22.4980734Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-multi-avx.c.o 2025-06-05T23:25:22.4983171Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-sse.c.o 2025-06-05T23:25:22.4985747Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-06-05T23:25:22.4988120Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-sse2.c.o 2025-06-05T23:25:22.4990467Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-06-05T23:25:22.4992896Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-sse2.c.o 2025-06-05T23:25:22.4995253Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-06-05T23:25:22.4997597Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-sse2.c.o 2025-06-05T23:25:22.5000030Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-06-05T23:25:22.5002363Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-sse2.c.o 2025-06-05T23:25:22.5004614Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-06-05T23:25:22.5006869Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-sse2.c.o 2025-06-05T23:25:22.5020297Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-sse2.c.o 2025-06-05T23:25:22.5022984Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-06-05T23:25:22.5025196Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-multi-avx.c.o 2025-06-05T23:25:22.5026972Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx-u64.c.o 2025-06-05T23:25:22.5028215Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx2-u128.c.o 2025-06-05T23:25:22.5029540Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-u64.c.o 2025-06-05T23:25:22.5030942Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-u128.c.o 2025-06-05T23:25:22.5032253Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-06-05T23:25:22.5033551Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-06-05T23:25:22.5034929Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-06-05T23:25:22.5036359Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-06-05T23:25:22.5037820Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-06-05T23:25:22.5039316Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-06-05T23:25:22.5040796Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-sse2.c.o 2025-06-05T23:25:22.5042284Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-06-05T23:25:22.5043783Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-switch-avx2.c.o 2025-06-05T23:25:22.5045217Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-06-05T23:25:22.5046435Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-sse2.c.o 2025-06-05T23:25:22.5047624Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-06-05T23:25:22.5048865Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-sse2.c.o 2025-06-05T23:25:22.5050090Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-06-05T23:25:22.5051296Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-sse2.c.o 2025-06-05T23:25:22.5052484Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-06-05T23:25:22.5053686Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-sse2.c.o 2025-06-05T23:25:22.5054904Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-06-05T23:25:22.5056153Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-06-05T23:25:22.5057407Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-sse2-u64.c.o 2025-06-05T23:25:22.5058676Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-sse2-u16.c.o 2025-06-05T23:25:22.5060068Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-06-05T23:25:22.5061990Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-06-05T23:25:22.5064056Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-06-05T23:25:22.5066259Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-06-05T23:25:22.5067864Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-06-05T23:25:22.5069096Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-06-05T23:25:22.5070342Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-06-05T23:25:22.5071586Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-06-05T23:25:22.5072937Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-06-05T23:25:22.5074200Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-06-05T23:25:22.5075358Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-06-05T23:25:22.5076160Z [ 98%] Linking C static library libmicrokernels-prod.a 2025-06-05T23:25:22.5076566Z [ 98%] Built target microkernels-prod 2025-06-05T23:25:22.5076941Z [ 98%] Generating build_identifier.c 2025-06-05T23:25:25.9270352Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-06-05T23:25:25.9271658Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-06-05T23:25:25.9272738Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-06-05T23:25:25.9274460Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-06-05T23:25:25.9275654Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-06-05T23:25:25.9276874Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-06-05T23:25:25.9277998Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-06-05T23:25:25.9279127Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-06-05T23:25:25.9280228Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-06-05T23:25:25.9281326Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-06-05T23:25:25.9282460Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-06-05T23:25:25.9283577Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-06-05T23:25:25.9284666Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-06-05T23:25:25.9285766Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-06-05T23:25:25.9286853Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-06-05T23:25:25.9288036Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-06-05T23:25:25.9289202Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-06-05T23:25:25.9290258Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-06-05T23:25:25.9291312Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-06-05T23:25:25.9292402Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-06-05T23:25:25.9293560Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-06-05T23:25:25.9294763Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-06-05T23:25:25.9295846Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-06-05T23:25:25.9296949Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-06-05T23:25:25.9298037Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-06-05T23:25:25.9299105Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-06-05T23:25:25.9300222Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-06-05T23:25:25.9301232Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-06-05T23:25:25.9302138Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-06-05T23:25:25.9303104Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-06-05T23:25:25.9303844Z [ 99%] Linking CXX static library libXNNPACK.a 2025-06-05T23:25:25.9304213Z [ 99%] Built target XNNPACK 2025-06-05T23:25:25.9304947Z [ 99%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-06-05T23:25:25.9305974Z [ 99%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-06-05T23:25:25.9306919Z [ 99%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-06-05T23:25:25.9307859Z [ 99%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-06-05T23:25:25.9308868Z [ 99%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-06-05T23:25:25.9309880Z [ 99%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-06-05T23:25:25.9310646Z [ 99%] Linking CXX static library libxnnpack_backend.a 2025-06-05T23:25:25.9311037Z [ 99%] Built target xnnpack_backend 2025-06-05T23:25:25.9311643Z [ 99%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_fallback.cpp.o 2025-06-05T23:25:25.9312588Z [ 99%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_fast_hadamard_transform.cpp.o 2025-06-05T23:25:25.9313543Z [ 99%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_update_cache.cpp.o 2025-06-05T23:25:25.9314394Z [ 99%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_sdpa.cpp.o 2025-06-05T23:25:25.9315339Z [ 99%] Building C object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/spinquant/third-party/FFHT/fht_avx.c.o 2025-06-05T23:25:25.9316381Z [ 99%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/spinquant/fast_hadamard_transform.cpp.o 2025-06-05T23:25:25.9317140Z [ 99%] Linking CXX static library libcustom_ops.a 2025-06-05T23:25:25.9317500Z [ 99%] Built target custom_ops 2025-06-05T23:25:25.9318203Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/examples/portable/executor_runner/executor_runner.cpp.o 2025-06-05T23:25:25.9319190Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/extension/data_loader/file_data_loader.cpp.o 2025-06-05T23:25:25.9320094Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:25:25.9320970Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs.cpp.o 2025-06-05T23:25:25.9321897Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs_portable.cpp.o 2025-06-05T23:25:25.9322874Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/runtime/executor/test/test_backend_compiler_lib.cpp.o 2025-06-05T23:25:25.9323609Z [100%] Linking CXX executable executor_runner 2025-06-05T23:25:25.9323962Z [100%] Built target executor_runner 2025-06-05T23:25:25.9324315Z Install the project... 2025-06-05T23:25:25.9324593Z -- Install configuration: "Release" 2025-06-05T23:25:25.9325052Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libflatccrt.a 2025-06-05T23:25:25.9325642Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/fxdiv.h 2025-06-05T23:25:25.9326319Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/share/cpuinfo/cpuinfo-config.cmake 2025-06-05T23:25:25.9327034Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libcpuinfo.a 2025-06-05T23:25:25.9327624Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/cpuinfo.h 2025-06-05T23:25:25.9328307Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/share/cpuinfo/cpuinfo-targets.cmake 2025-06-05T23:25:25.9329105Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/share/cpuinfo/cpuinfo-targets-release.cmake 2025-06-05T23:25:25.9329908Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/pkgconfig/libcpuinfo.pc 2025-06-05T23:25:25.9330586Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/pthreadpool.h 2025-06-05T23:25:25.9331279Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libpthreadpool.a 2025-06-05T23:25:25.9331980Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/liboptimized_portable_kernels.a 2025-06-05T23:25:25.9332687Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libportable_kernels.a 2025-06-05T23:25:25.9333360Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libportable_ops_lib.a 2025-06-05T23:25:25.9334118Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/kernels/portable/Functions.h 2025-06-05T23:25:25.9335023Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/kernels/portable/NativeFunctions.h 2025-06-05T23:25:25.9335811Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libeigen_blas.a 2025-06-05T23:25:25.9336405Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libcpublas.a 2025-06-05T23:25:25.9337044Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/liboptimized_kernels.a 2025-06-05T23:25:25.9337711Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/liboptimized_ops_lib.a 2025-06-05T23:25:25.9338487Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/kernels/optimized/Functions.h 2025-06-05T23:25:25.9339402Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/kernels/optimized/NativeFunctions.h 2025-06-05T23:25:25.9705364Z -- Up-to-date: /pytorch/executorch/cmake-out-android-x86_64/lib/libcpublas.a 2025-06-05T23:25:25.9706685Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/liboptimized_native_cpu_ops_lib.a 2025-06-05T23:25:25.9707765Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/Functions.h 2025-06-05T23:25:25.9708663Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/NativeFunctions.h 2025-06-05T23:25:25.9709711Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core 2025-06-05T23:25:25.9710749Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/array_ref.h 2025-06-05T23:25:25.9711906Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/data_loader.h 2025-06-05T23:25:25.9712946Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/defines.h 2025-06-05T23:25:25.9713974Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/error.h 2025-06-05T23:25:25.9715263Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/evalue.h 2025-06-05T23:25:25.9716398Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/event_tracer.h 2025-06-05T23:25:25.9717696Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/event_tracer_hooks.h 2025-06-05T23:25:25.9718925Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/event_tracer_hooks_delegate.h 2025-06-05T23:25:25.9719970Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten 2025-06-05T23:25:25.9721113Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten/exec_aten.h 2025-06-05T23:25:25.9722272Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:25:25.9723408Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h 2025-06-05T23:25:25.9724601Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h 2025-06-05T23:25:25.9725808Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten/testing_util/test 2025-06-05T23:25:25.9726909Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:25:25.9727971Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten/util/dim_order_util.h 2025-06-05T23:25:25.9729244Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h 2025-06-05T23:25:25.9730724Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h 2025-06-05T23:25:25.9732149Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h 2025-06-05T23:25:25.9733394Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten/util/tensor_util.h 2025-06-05T23:25:25.9734653Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/exec_aten/util/test 2025-06-05T23:25:25.9735811Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/freeable_buffer.h 2025-06-05T23:25:25.9737043Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/function_ref.h 2025-06-05T23:25:25.9738150Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/hierarchical_allocator.h 2025-06-05T23:25:25.9739404Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/memory_allocator.h 2025-06-05T23:25:25.9740708Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/named_data_map.h 2025-06-05T23:25:25.9741778Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type 2025-06-05T23:25:25.9742989Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/bfloat16.h 2025-06-05T23:25:25.9744114Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/bfloat16_math.h 2025-06-05T23:25:25.9745238Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/bits_types.h 2025-06-05T23:25:25.9746441Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:25:25.9747486Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:25:25.9748610Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:25:25.9749758Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h 2025-06-05T23:25:25.9750921Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h 2025-06-05T23:25:25.9751957Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:25:25.9753138Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h 2025-06-05T23:25:25.9754621Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h 2025-06-05T23:25:25.9755741Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h 2025-06-05T23:25:25.9756806Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h 2025-06-05T23:25:25.9757969Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h 2025-06-05T23:25:25.9759174Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h 2025-06-05T23:25:25.9760350Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h 2025-06-05T23:25:25.9761428Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h 2025-06-05T23:25:25.9762513Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h 2025-06-05T23:25:25.9763628Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h 2025-06-05T23:25:25.9764783Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h 2025-06-05T23:25:25.9766106Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h 2025-06-05T23:25:25.9767122Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/complex.h 2025-06-05T23:25:25.9768058Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/device.h 2025-06-05T23:25:25.9768997Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/half.h 2025-06-05T23:25:25.9769947Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/optional.h 2025-06-05T23:25:25.9770905Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/qint_types.h 2025-06-05T23:25:25.9771864Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/scalar.h 2025-06-05T23:25:25.9772819Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/scalar_type.h 2025-06-05T23:25:25.9773809Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/string_view.h 2025-06-05T23:25:25.9774766Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/tensor.h 2025-06-05T23:25:25.9775722Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/tensor_impl.h 2025-06-05T23:25:25.9776821Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/tensor_options.h 2025-06-05T23:25:25.9777766Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/portable_type/test 2025-06-05T23:25:25.9778617Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/result.h 2025-06-05T23:25:25.9779416Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/span.h 2025-06-05T23:25:25.9780186Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/tag.h 2025-06-05T23:25:25.9781014Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/tensor_layout.h 2025-06-05T23:25:25.9781902Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/tensor_shape_dynamism.h 2025-06-05T23:25:26.4155649Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/core/test 2025-06-05T23:25:26.4156692Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/kernel 2025-06-05T23:25:26.4157517Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/kernel/kernel_includes.h 2025-06-05T23:25:26.4159089Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/kernel/kernel_runtime_context.h 2025-06-05T23:25:26.4160059Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/kernel/operator_registry.h 2025-06-05T23:25:26.4160981Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/kernel/test 2025-06-05T23:25:26.4161821Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/kernel/test/test_util.h 2025-06-05T23:25:26.4162769Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/kernel/thread_parallel_interface.h 2025-06-05T23:25:26.4163665Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform 2025-06-05T23:25:26.4164466Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/abort.h 2025-06-05T23:25:26.4165484Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/assert.h 2025-06-05T23:25:26.4166316Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/clock.h 2025-06-05T23:25:26.4167186Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/compat_unistd.h 2025-06-05T23:25:26.4168057Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/compiler.h 2025-06-05T23:25:26.4168903Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/default 2025-06-05T23:25:26.4169724Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/log.h 2025-06-05T23:25:26.4170541Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/platform.h 2025-06-05T23:25:26.4171404Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/profiler.h 2025-06-05T23:25:26.4172244Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/runtime.h 2025-06-05T23:25:26.4173081Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/system.h 2025-06-05T23:25:26.4173899Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/test 2025-06-05T23:25:26.4174730Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/test/pal_spy.h 2025-06-05T23:25:26.4175661Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/test/stub_platform.h 2025-06-05T23:25:26.4176543Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/runtime/platform/types.h 2025-06-05T23:25:26.4177496Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/kernel_util 2025-06-05T23:25:26.4178600Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h 2025-06-05T23:25:26.4179655Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/kernel_util/meta_programming.h 2025-06-05T23:25:26.4180588Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/kernel_util/test 2025-06-05T23:25:26.4181560Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/kernel_util/type_list.h 2025-06-05T23:25:26.4182495Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/tensor 2025-06-05T23:25:26.4183301Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/tensor/tensor.h 2025-06-05T23:25:26.4184179Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/tensor/tensor_accessor.h 2025-06-05T23:25:26.4185079Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/tensor/tensor_ptr.h 2025-06-05T23:25:26.4186108Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/tensor/tensor_ptr_maker.h 2025-06-05T23:25:26.4186988Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/tensor/test 2025-06-05T23:25:26.4187826Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/threadpool 2025-06-05T23:25:26.4188692Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/threadpool/cpuinfo_utils.h 2025-06-05T23:25:26.4189597Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/threadpool/test 2025-06-05T23:25:26.4190472Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/threadpool/threadpool.h 2025-06-05T23:25:26.4191429Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/extension/threadpool/threadpool_guard.h 2025-06-05T23:25:26.4192350Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libexecutorch.a 2025-06-05T23:25:26.4192991Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libexecutorch_core.a 2025-06-05T23:25:26.4193748Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/cmake/ExecuTorch/executorch-config.cmake 2025-06-05T23:25:26.4194465Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libXNNPACK.a 2025-06-05T23:25:26.4195068Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/xnnpack.h 2025-06-05T23:25:26.4195706Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/experiments-config.h 2025-06-05T23:25:26.4196408Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libmicrokernels-prod.a 2025-06-05T23:25:26.4197099Z -- Up-to-date: /pytorch/executorch/cmake-out-android-x86_64/lib/libmicrokernels-prod.a 2025-06-05T23:25:26.4197756Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libxnnpack_backend.a 2025-06-05T23:25:26.4198385Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libetdump.a 2025-06-05T23:25:26.4198996Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libbundled_program.a 2025-06-05T23:25:26.4199678Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libextension_data_loader.a 2025-06-05T23:25:26.4200392Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libextension_flat_tensor.a 2025-06-05T23:25:26.4201071Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libextension_module.a 2025-06-05T23:25:26.4201770Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libextension_module_static.a 2025-06-05T23:25:26.4202480Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libextension_runner_util.a 2025-06-05T23:25:26.4203235Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libextension_tensor.a 2025-06-05T23:25:26.4203924Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libextension_threadpool.a 2025-06-05T23:25:26.4204610Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libextension_training.a 2025-06-05T23:25:26.4205270Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libcustom_ops.a 2025-06-05T23:25:26.4205911Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libquantized_kernels.a 2025-06-05T23:25:26.4206593Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/lib/libquantized_ops_lib.a 2025-06-05T23:25:26.4207367Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/kernels/quantized/Functions.h 2025-06-05T23:25:26.4208331Z -- Installing: /pytorch/executorch/cmake-out-android-x86_64/include/executorch/kernels/quantized/NativeFunctions.h 2025-06-05T23:25:26.4211008Z + cmake extension/android -DCMAKE_TOOLCHAIN_FILE=/opt/ndk/build/cmake/android.toolchain.cmake -DANDROID_ABI=x86_64 -DANDROID_PLATFORM=android-26 -DBUILD_TESTING=OFF -DCMAKE_INSTALL_PREFIX=cmake-out-android-x86_64 -DEXECUTORCH_ENABLE_LOGGING=ON -DEXECUTORCH_LOG_LEVEL=Info -DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=BOTH -DEXECUTORCH_ANDROID_PROFILING=OFF -DNEURON_BUFFER_ALLOCATOR_LIB= -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON -DEXECUTORCH_BUILD_LLAMA_JNI=ON -DSUPPORT_REGEX_LOOKAHEAD=ON -DCMAKE_BUILD_TYPE=Release -Bcmake-out-android-x86_64/extension/android 2025-06-05T23:25:26.4213986Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:26.4214691Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:26.4215111Z CMake. 2025-06-05T23:25:26.4215227Z 2025-06-05T23:25:26.4215461Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:26.4216004Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:26.4216490Z to work with policies introduced by or earlier. 2025-06-05T23:25:26.4216844Z Call Stack (most recent call first): 2025-06-05T23:25:26.4217537Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:146 (include) 2025-06-05T23:25:26.4218231Z CMakeLists.txt:9 (project) 2025-06-05T23:25:26.4218419Z 2025-06-05T23:25:26.4218527Z  2025-06-05T23:25:26.4219149Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:26.4219903Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:26.4220316Z CMake. 2025-06-05T23:25:26.4220427Z 2025-06-05T23:25:26.4220646Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:26.4221195Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:26.4221661Z to work with policies introduced by or earlier. 2025-06-05T23:25:26.4222023Z Call Stack (most recent call first): 2025-06-05T23:25:26.4222405Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:26.8998699Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:146 (include) 2025-06-05T23:25:26.8999443Z CMakeLists.txt:9 (project) 2025-06-05T23:25:26.8999637Z 2025-06-05T23:25:26.8999901Z  2025-06-05T23:25:26.9000512Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:26.9001259Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:26.9001675Z CMake. 2025-06-05T23:25:26.9001798Z 2025-06-05T23:25:26.9002017Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:26.9002559Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:26.9003599Z to work with policies introduced by or earlier. 2025-06-05T23:25:26.9003964Z Call Stack (most recent call first): 2025-06-05T23:25:26.9004572Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:26.9005208Z CMakeLists.txt:9 (project) 2025-06-05T23:25:26.9005383Z 2025-06-05T23:25:26.9005489Z  2025-06-05T23:25:26.9005737Z -- The C compiler identification is Clang 18.0.2 2025-06-05T23:25:26.9006114Z -- The CXX compiler identification is Clang 18.0.2 2025-06-05T23:25:26.9006765Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:26.9007417Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:26.9007898Z CMake. 2025-06-05T23:25:26.9008007Z 2025-06-05T23:25:26.9008241Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:26.9008778Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:26.9009346Z to work with policies introduced by or earlier. 2025-06-05T23:25:26.9009751Z Call Stack (most recent call first): 2025-06-05T23:25:26.9010631Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:26.9011729Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:26.9012847Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:26.9013564Z CMakeLists.txt:9 (project) 2025-06-05T23:25:26.9013743Z 2025-06-05T23:25:26.9013857Z  2025-06-05T23:25:26.9014073Z -- Detecting C compiler ABI info 2025-06-05T23:25:26.9014728Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:26.9015441Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:26.9015855Z CMake. 2025-06-05T23:25:26.9015963Z 2025-06-05T23:25:26.9016180Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:26.9016732Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:26.9017198Z to work with policies introduced by or earlier. 2025-06-05T23:25:26.9017557Z Call Stack (most recent call first): 2025-06-05T23:25:26.9018201Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:26.9019247Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-2nEk79/CMakeLists.txt:2 (project) 2025-06-05T23:25:26.9019880Z 2025-06-05T23:25:26.9019994Z  2025-06-05T23:25:26.9020594Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:26.9021331Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:26.9021730Z CMake. 2025-06-05T23:25:26.9021849Z 2025-06-05T23:25:26.9022064Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:26.9022612Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:26.9023074Z to work with policies introduced by or earlier. 2025-06-05T23:25:26.9023431Z Call Stack (most recent call first): 2025-06-05T23:25:26.9023803Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:26.9024504Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:26.9025549Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-2nEk79/CMakeLists.txt:2 (project) 2025-06-05T23:25:26.9026324Z 2025-06-05T23:25:26.9026432Z  2025-06-05T23:25:26.9026937Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:26.9027571Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:26.9027988Z CMake. 2025-06-05T23:25:26.9028094Z 2025-06-05T23:25:26.9028314Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:26.9028862Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:26.9029346Z to work with policies introduced by or earlier. 2025-06-05T23:25:26.9029696Z Call Stack (most recent call first): 2025-06-05T23:25:26.9030391Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:26.9031504Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:26.9032568Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:26.9033670Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-2nEk79/CMakeLists.txt:2 (project) 2025-06-05T23:25:26.9034304Z 2025-06-05T23:25:26.9034442Z  2025-06-05T23:25:26.9034666Z -- Detecting C compiler ABI info - done 2025-06-05T23:25:26.9035198Z -- Check for working C compiler: /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang - skipped 2025-06-05T23:25:26.9035777Z -- Detecting C compile features 2025-06-05T23:25:26.9036064Z -- Detecting C compile features - done 2025-06-05T23:25:26.9036376Z -- Detecting CXX compiler ABI info 2025-06-05T23:25:26.9037049Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:26.9037754Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:26.9038168Z CMake. 2025-06-05T23:25:26.9038276Z 2025-06-05T23:25:26.9038495Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:26.9039046Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:26.9039513Z to work with policies introduced by or earlier. 2025-06-05T23:25:26.9039873Z Call Stack (most recent call first): 2025-06-05T23:25:26.9040491Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:26.9041536Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-qaZGgL/CMakeLists.txt:2 (project) 2025-06-05T23:25:26.9042180Z 2025-06-05T23:25:26.9042275Z  2025-06-05T23:25:26.9042874Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:26.9043613Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:26.9044015Z CMake. 2025-06-05T23:25:26.9044134Z 2025-06-05T23:25:26.9044354Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:26.9044901Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:26.9045365Z to work with policies introduced by or earlier. 2025-06-05T23:25:26.9045725Z Call Stack (most recent call first): 2025-06-05T23:25:26.9046095Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:26.9046800Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:26.9047855Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-qaZGgL/CMakeLists.txt:2 (project) 2025-06-05T23:25:26.9048492Z 2025-06-05T23:25:26.9048587Z  2025-06-05T23:25:26.9049090Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:26.9049760Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:26.9050172Z CMake. 2025-06-05T23:25:26.9050279Z 2025-06-05T23:25:26.9050494Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:26.9051043Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:26.9051519Z to work with policies introduced by or earlier. 2025-06-05T23:25:26.9051865Z Call Stack (most recent call first): 2025-06-05T23:25:26.9052555Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:26.9053638Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:25:26.9054767Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:25:26.9055882Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-qaZGgL/CMakeLists.txt:2 (project) 2025-06-05T23:25:26.9056515Z 2025-06-05T23:25:26.9056629Z  2025-06-05T23:25:26.9056848Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:25:26.9057452Z -- Check for working CXX compiler: /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ - skipped 2025-06-05T23:25:26.9058005Z -- Detecting CXX compile features 2025-06-05T23:25:26.9058320Z -- Detecting CXX compile features - done 2025-06-05T23:25:26.9058801Z CMake Warning (dev) at CMakeLists.txt:64 (find_package): 2025-06-05T23:25:26.9059322Z Policy CMP0144 is not set: find_package uses upper-case _ROOT 2025-06-05T23:25:26.9059873Z variables. Run "cmake --help-policy CMP0144" for policy details. Use the 2025-06-05T23:25:26.9060414Z cmake_policy command to set the policy and suppress this warning. 2025-06-05T23:25:26.9060719Z 2025-06-05T23:25:26.9060853Z CMake variable EXECUTORCH_ROOT is set to: 2025-06-05T23:25:26.9061071Z 2025-06-05T23:25:26.9061197Z /pytorch/executorch/extension/android/../.. 2025-06-05T23:25:26.9061439Z 2025-06-05T23:25:26.9061659Z For compatibility, find_package is ignoring the variable, but code in a 2025-06-05T23:25:26.9062093Z .cmake module might still use it. 2025-06-05T23:25:26.9062504Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-05T23:25:26.9062924Z  2025-06-05T23:25:26.9063168Z coreml_util library is not found. 2025-06-05T23:25:26.9063646Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:26.9064107Z coreml_inmemoryfs library is not found. 2025-06-05T23:25:26.9064588Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:26.9065266Z coremldelegate library is not found. 2025-06-05T23:25:26.9065876Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:26.9066331Z mpsdelegate library is not found. 2025-06-05T23:25:26.9066798Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:26.9067258Z neuron_backend library is not found. 2025-06-05T23:25:27.1096379Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:27.1096959Z qnn_executorch_backend library is not found. 2025-06-05T23:25:27.1097481Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:27.1097926Z kleidiai library is not found. 2025-06-05T23:25:27.1098404Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:27.1098853Z vulkan_backend library is not found. 2025-06-05T23:25:27.1099329Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:27.1099806Z quantized_ops_aot_lib library is not found. 2025-06-05T23:25:27.1100303Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:25:27.1101279Z -- executorch: Using source file list /pytorch/executorch/cmake-out-android-x86_64/extension/llm/runner/../../../executorch_srcs.cmake 2025-06-05T23:25:27.1102400Z -- executorch: Using source file list /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/../../../../executorch_srcs.cmake 2025-06-05T23:25:27.1103180Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX17 2025-06-05T23:25:27.1103885Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:27.1104598Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.1105001Z CMake. 2025-06-05T23:25:27.1105123Z 2025-06-05T23:25:27.1105343Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.1106064Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.1106533Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.1106906Z Call Stack (most recent call first): 2025-06-05T23:25:27.1107515Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:27.1108629Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-9uWTRn/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.1109263Z 2025-06-05T23:25:27.1109383Z  2025-06-05T23:25:27.1110030Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:27.1110824Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.1111243Z CMake. 2025-06-05T23:25:27.1111352Z 2025-06-05T23:25:27.1111568Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.1112114Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.1112578Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.1112943Z Call Stack (most recent call first): 2025-06-05T23:25:27.1113311Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:27.1114012Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:27.1115064Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-9uWTRn/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.1115696Z 2025-06-05T23:25:27.1115795Z  2025-06-05T23:25:27.1116303Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:27.1116934Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.1117347Z CMake. 2025-06-05T23:25:27.1117455Z 2025-06-05T23:25:27.1117684Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.1118220Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.1118696Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.1119046Z Call Stack (most recent call first): 2025-06-05T23:25:27.1119742Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:27.1120822Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:25:27.1121907Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:25:27.1123016Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-9uWTRn/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.1123651Z 2025-06-05T23:25:27.1123748Z  2025-06-05T23:25:27.1124017Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX17 - Success 2025-06-05T23:25:27.1124445Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX20 2025-06-05T23:25:27.1125153Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:27.1125859Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.1126259Z CMake. 2025-06-05T23:25:27.1126365Z 2025-06-05T23:25:27.1126596Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.1127130Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.1127611Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.1127959Z Call Stack (most recent call first): 2025-06-05T23:25:27.1128576Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:27.1129685Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-pZ67i1/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.1130323Z 2025-06-05T23:25:27.1130422Z  2025-06-05T23:25:27.1131041Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:27.1131769Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.1132184Z CMake. 2025-06-05T23:25:27.1132326Z 2025-06-05T23:25:27.1132556Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.1133094Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.1133602Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.1133953Z Call Stack (most recent call first): 2025-06-05T23:25:27.1134331Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:27.1135025Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:27.1136078Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-pZ67i1/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.1136711Z 2025-06-05T23:25:27.1136823Z  2025-06-05T23:25:27.1137320Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:27.1137972Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.1138374Z CMake. 2025-06-05T23:25:27.1138496Z 2025-06-05T23:25:27.1138713Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.1139252Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.1139735Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.1140099Z Call Stack (most recent call first): 2025-06-05T23:25:27.1140780Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:27.1141882Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-CXX.cmake:1 (include) 2025-06-05T23:25:27.1142957Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake:48 (include) 2025-06-05T23:25:27.1144076Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-pZ67i1/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.1144712Z 2025-06-05T23:25:27.1144822Z  2025-06-05T23:25:27.1145079Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX20 - Failed 2025-06-05T23:25:27.1145467Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:25:27.1146250Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:27.1146963Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.1147363Z CMake. 2025-06-05T23:25:27.1147484Z 2025-06-05T23:25:27.1147741Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.1148291Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.1148754Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.1149117Z Call Stack (most recent call first): 2025-06-05T23:25:27.1149723Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:27.1150784Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-FBprCz/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.1151421Z 2025-06-05T23:25:27.1151528Z  2025-06-05T23:25:27.1152120Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:27.1152890Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.1153289Z CMake. 2025-06-05T23:25:27.1153413Z 2025-06-05T23:25:27.1153631Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.1154165Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.1154639Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.1155000Z Call Stack (most recent call first): 2025-06-05T23:25:27.1155396Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:27.1156099Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:27.1157166Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-FBprCz/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.1157816Z 2025-06-05T23:25:27.1157915Z  2025-06-05T23:25:27.1158425Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:27.1159060Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.1159477Z CMake. 2025-06-05T23:25:27.1159585Z 2025-06-05T23:25:27.1159802Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.1160350Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.1160821Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.1161181Z Call Stack (most recent call first): 2025-06-05T23:25:27.1161869Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:27.1162939Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:27.7262332Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:27.7263507Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-FBprCz/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.7264167Z 2025-06-05T23:25:27.7264422Z  2025-06-05T23:25:27.7264677Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2025-06-05T23:25:27.7265224Z -- Looking for pthread_create in pthreads 2025-06-05T23:25:27.7266019Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:27.7266720Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.7267140Z CMake. 2025-06-05T23:25:27.7267250Z 2025-06-05T23:25:27.7267473Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.7268030Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.7268497Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.7268859Z Call Stack (most recent call first): 2025-06-05T23:25:27.7269479Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:27.7270691Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-ZSn3bI/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.7271340Z 2025-06-05T23:25:27.7271448Z  2025-06-05T23:25:27.7272052Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:27.7272794Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.7273196Z CMake. 2025-06-05T23:25:27.7273315Z 2025-06-05T23:25:27.7273535Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.7274080Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.7274606Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.7274969Z Call Stack (most recent call first): 2025-06-05T23:25:27.7275343Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:27.7276048Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:27.7277104Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-ZSn3bI/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.7277835Z 2025-06-05T23:25:27.7277969Z  2025-06-05T23:25:27.7278480Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:27.7279172Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.7279587Z CMake. 2025-06-05T23:25:27.7279694Z 2025-06-05T23:25:27.7279910Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.7280458Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.7280935Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.7281283Z Call Stack (most recent call first): 2025-06-05T23:25:27.7281976Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:27.7283094Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:27.7284139Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:27.7285248Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-ZSn3bI/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.7285881Z 2025-06-05T23:25:27.7285979Z  2025-06-05T23:25:27.7286244Z -- Looking for pthread_create in pthreads - not found 2025-06-05T23:25:27.7286626Z -- Looking for pthread_create in pthread 2025-06-05T23:25:27.7287300Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:27.7288012Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.7288415Z CMake. 2025-06-05T23:25:27.7288535Z 2025-06-05T23:25:27.7288750Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.7289290Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.7289770Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.7290133Z Call Stack (most recent call first): 2025-06-05T23:25:27.7290738Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:27.7291807Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-QGtfVC/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.7292450Z 2025-06-05T23:25:27.7292548Z  2025-06-05T23:25:27.7293158Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:27.7293945Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.7294354Z CMake. 2025-06-05T23:25:27.7294464Z 2025-06-05T23:25:27.7294701Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.7295242Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.7295735Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.7296088Z Call Stack (most recent call first): 2025-06-05T23:25:27.7296496Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:27.7297203Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:27.7298287Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-QGtfVC/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.7298924Z 2025-06-05T23:25:27.7299038Z  2025-06-05T23:25:27.7299536Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:27.7300191Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.7300596Z CMake. 2025-06-05T23:25:27.7300720Z 2025-06-05T23:25:27.7300971Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.7301523Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.7301987Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.7302383Z Call Stack (most recent call first): 2025-06-05T23:25:27.7303065Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:27.7304150Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:27.7305213Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:27.7306379Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-QGtfVC/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.7307030Z 2025-06-05T23:25:27.7307130Z  2025-06-05T23:25:27.7307379Z -- Looking for pthread_create in pthread - not found 2025-06-05T23:25:27.7307749Z -- Check if compiler accepts -pthread 2025-06-05T23:25:27.7308418Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:27.7309122Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.7309535Z CMake. 2025-06-05T23:25:27.7309644Z 2025-06-05T23:25:27.7309861Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.7310407Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.7310871Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.7311237Z Call Stack (most recent call first): 2025-06-05T23:25:27.7311839Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:27.7312904Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-cjBXyR/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.7313541Z 2025-06-05T23:25:27.7313648Z  2025-06-05T23:25:27.7314251Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:27.7315001Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.7315399Z CMake. 2025-06-05T23:25:27.7315521Z 2025-06-05T23:25:27.7315739Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.7316290Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.7316819Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.7317181Z Call Stack (most recent call first): 2025-06-05T23:25:27.7317549Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:27.7318255Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:27.7319359Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-cjBXyR/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.7320241Z 2025-06-05T23:25:27.7320427Z  2025-06-05T23:25:27.7320951Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:27.7321659Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.7322199Z CMake. 2025-06-05T23:25:27.7322314Z 2025-06-05T23:25:27.7322532Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:27.7323150Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:27.7323688Z to work with policies introduced by or earlier. 2025-06-05T23:25:27.7324037Z Call Stack (most recent call first): 2025-06-05T23:25:27.7324818Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:27.7326010Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:27.7327177Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:27.7328400Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-cjBXyR/CMakeLists.txt:5 (project) 2025-06-05T23:25:27.7329096Z 2025-06-05T23:25:27.7329198Z  2025-06-05T23:25:27.7329440Z -- Check if compiler accepts -pthread - yes 2025-06-05T23:25:27.7329812Z -- Found Threads: TRUE 2025-06-05T23:25:27.7330747Z CMake Deprecation Warning at /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/CMakeLists.txt:15 (cmake_minimum_required): 2025-06-05T23:25:27.7331713Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:27.7332188Z CMake. 2025-06-05T23:25:27.7332297Z 2025-06-05T23:25:27.7332541Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.2372631Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.2373588Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.2374147Z 2025-06-05T23:25:28.2374411Z  2025-06-05T23:25:28.2374628Z -- VERSION: 0.2.1 2025-06-05T23:25:28.2374884Z -- Not Found TCMalloc: TCMALLOC_LIB-NOTFOUND 2025-06-05T23:25:28.2375311Z -- Could NOT find BZip2 (missing: BZIP2_LIBRARIES BZIP2_INCLUDE_DIR) 2025-06-05T23:25:28.2376134Z -- Found ZLIB: /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/26/libz.so (found version "1.3.0.1") 2025-06-05T23:25:28.2377067Z -- Could NOT find Readline (missing: READLINE_INCLUDE_DIR READLINE_LIBRARY) 2025-06-05T23:25:28.2377857Z -- Could NOT find Editline (missing: EDITLINE_INCLUDE_DIR EDITLINE_LIBRARY) 2025-06-05T23:25:28.2378325Z -- Looking for assert.h 2025-06-05T23:25:28.2379030Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.2379732Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.2380149Z CMake. 2025-06-05T23:25:28.2380259Z 2025-06-05T23:25:28.2380489Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.2381031Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.2381510Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.2382058Z Call Stack (most recent call first): 2025-06-05T23:25:28.2382674Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.2383747Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-xO7bLj/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.2384384Z 2025-06-05T23:25:28.2384490Z  2025-06-05T23:25:28.2385103Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.2385912Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.2386330Z CMake. 2025-06-05T23:25:28.2386442Z 2025-06-05T23:25:28.2386660Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.2387286Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.2387769Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.2388124Z Call Stack (most recent call first): 2025-06-05T23:25:28.2388513Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:28.2389206Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.2390315Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-xO7bLj/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.2390952Z 2025-06-05T23:25:28.2391071Z  2025-06-05T23:25:28.2391613Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:28.2392266Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.2392671Z CMake. 2025-06-05T23:25:28.2392793Z 2025-06-05T23:25:28.2393013Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.2393550Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.2394034Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.2394397Z Call Stack (most recent call first): 2025-06-05T23:25:28.2395085Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:28.2396172Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:28.2397219Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:28.2398336Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-xO7bLj/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.2398969Z 2025-06-05T23:25:28.2399085Z  2025-06-05T23:25:28.2399287Z -- Looking for assert.h - found 2025-06-05T23:25:28.2399570Z -- Looking for dirent.h 2025-06-05T23:25:28.2400185Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.2400889Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.2401290Z CMake. 2025-06-05T23:25:28.2401413Z 2025-06-05T23:25:28.2401633Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.2402178Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.2402640Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.2403001Z Call Stack (most recent call first): 2025-06-05T23:25:28.2403601Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.2404658Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-dpWm8X/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.2405296Z 2025-06-05T23:25:28.2405434Z  2025-06-05T23:25:28.2406045Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.2406782Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.2407185Z CMake. 2025-06-05T23:25:28.2407294Z 2025-06-05T23:25:28.2407524Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.2408060Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.2408537Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.2408889Z Call Stack (most recent call first): 2025-06-05T23:25:28.2409266Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:28.2409972Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.2411046Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-dpWm8X/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.2411689Z 2025-06-05T23:25:28.2411787Z  2025-06-05T23:25:28.2412276Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:28.2412919Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.2413365Z CMake. 2025-06-05T23:25:28.2413473Z 2025-06-05T23:25:28.2413693Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.2414269Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.2414734Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.2415093Z Call Stack (most recent call first): 2025-06-05T23:25:28.2415774Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:28.2416857Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:28.2417919Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:28.2419013Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-dpWm8X/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.2419661Z 2025-06-05T23:25:28.2419758Z  2025-06-05T23:25:28.2419957Z -- Looking for dirent.h - found 2025-06-05T23:25:28.2420238Z -- Looking for sys/stat.h 2025-06-05T23:25:28.2420872Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.2421563Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.2421975Z CMake. 2025-06-05T23:25:28.2422083Z 2025-06-05T23:25:28.2422298Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.2422848Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.2423311Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.2423670Z Call Stack (most recent call first): 2025-06-05T23:25:28.2424285Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.2425489Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-VJQCwg/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.2426282Z 2025-06-05T23:25:28.2426397Z  2025-06-05T23:25:28.2427013Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.2427752Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.2428167Z CMake. 2025-06-05T23:25:28.2428277Z 2025-06-05T23:25:28.2428494Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.2429106Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.2429573Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.2429937Z Call Stack (most recent call first): 2025-06-05T23:25:28.2430305Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:28.2431013Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.2432081Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-VJQCwg/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.2432712Z 2025-06-05T23:25:28.2432808Z  2025-06-05T23:25:28.2433309Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:28.2433971Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.2434383Z CMake. 2025-06-05T23:25:28.2434493Z 2025-06-05T23:25:28.2434708Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.2435254Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.2435726Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.2436074Z Call Stack (most recent call first): 2025-06-05T23:25:28.2436794Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:28.2437890Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:28.2438949Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:28.2440055Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-VJQCwg/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.2440695Z 2025-06-05T23:25:28.2440796Z  2025-06-05T23:25:28.2441013Z -- Looking for sys/stat.h - found 2025-06-05T23:25:28.2441298Z -- Looking for sys/types.h 2025-06-05T23:25:28.2441942Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.2442636Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.5342626Z CMake. 2025-06-05T23:25:28.5342898Z 2025-06-05T23:25:28.5343379Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.5343985Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.5344460Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.5344845Z Call Stack (most recent call first): 2025-06-05T23:25:28.5345469Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.5346644Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-mysQ05/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.5347307Z 2025-06-05T23:25:28.5347570Z  2025-06-05T23:25:28.5348194Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.5348938Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.5349359Z CMake. 2025-06-05T23:25:28.5349472Z 2025-06-05T23:25:28.5349691Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.5350252Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.5350734Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.5351089Z Call Stack (most recent call first): 2025-06-05T23:25:28.5351477Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:28.5352176Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.5353390Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-mysQ05/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.5354030Z 2025-06-05T23:25:28.5354136Z  2025-06-05T23:25:28.5354647Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:28.5355298Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.5355700Z CMake. 2025-06-05T23:25:28.5355809Z 2025-06-05T23:25:28.5356044Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.5356580Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.5357122Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.5357471Z Call Stack (most recent call first): 2025-06-05T23:25:28.5358164Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:28.5359251Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:28.5360348Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:28.5361453Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-mysQ05/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.5362089Z 2025-06-05T23:25:28.5362250Z  2025-06-05T23:25:28.5362459Z -- Looking for sys/types.h - found 2025-06-05T23:25:28.5362750Z -- Looking for unistd.h 2025-06-05T23:25:28.5363362Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.5364070Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.5364473Z CMake. 2025-06-05T23:25:28.5364595Z 2025-06-05T23:25:28.5364810Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.5365801Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.5366281Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.5366651Z Call Stack (most recent call first): 2025-06-05T23:25:28.5367253Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.5368316Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-VgPccK/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.5368951Z 2025-06-05T23:25:28.5369065Z  2025-06-05T23:25:28.5369681Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.5370425Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.5370829Z CMake. 2025-06-05T23:25:28.5370937Z 2025-06-05T23:25:28.5371166Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.5371705Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.5372181Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.5372531Z Call Stack (most recent call first): 2025-06-05T23:25:28.5372912Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:28.5373617Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.5374657Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-VgPccK/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.5375307Z 2025-06-05T23:25:28.5375404Z  2025-06-05T23:25:28.5375894Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:28.5376624Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.5377029Z CMake. 2025-06-05T23:25:28.5377154Z 2025-06-05T23:25:28.5377374Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.5377925Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.5378392Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.5378756Z Call Stack (most recent call first): 2025-06-05T23:25:28.5379440Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:28.5380524Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:28.5381626Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:28.5382721Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-VgPccK/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.5383372Z 2025-06-05T23:25:28.5383472Z  2025-06-05T23:25:28.5383671Z -- Looking for unistd.h - found 2025-06-05T23:25:28.5383959Z -- Looking for windows.h 2025-06-05T23:25:28.5384617Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.5385322Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.5385808Z CMake. 2025-06-05T23:25:28.5385918Z 2025-06-05T23:25:28.5386181Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.5386736Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.5387203Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.5387566Z Call Stack (most recent call first): 2025-06-05T23:25:28.5388173Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.5389226Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-BN0DhQ/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.5390007Z 2025-06-05T23:25:28.5390158Z  2025-06-05T23:25:28.5390799Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.5391539Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.5391941Z CMake. 2025-06-05T23:25:28.5392064Z 2025-06-05T23:25:28.5392281Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.5392829Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.5393298Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.5393656Z Call Stack (most recent call first): 2025-06-05T23:25:28.5394024Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:28.5394723Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.5395766Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-BN0DhQ/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.5396410Z 2025-06-05T23:25:28.5396508Z  2025-06-05T23:25:28.5397015Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:28.5397649Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.5398064Z CMake. 2025-06-05T23:25:28.5398177Z 2025-06-05T23:25:28.5398392Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.5398940Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.5399413Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.5399810Z Call Stack (most recent call first): 2025-06-05T23:25:28.5400502Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:28.5409381Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:28.5410481Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:28.5411590Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-BN0DhQ/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.5412246Z 2025-06-05T23:25:28.5412417Z  2025-06-05T23:25:28.5412714Z -- Looking for windows.h - not found 2025-06-05T23:25:28.5413018Z -- Looking for bcopy 2025-06-05T23:25:28.5413655Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.5414360Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.5414778Z CMake. 2025-06-05T23:25:28.5414890Z 2025-06-05T23:25:28.5415110Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.5415698Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.5416166Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.5416533Z Call Stack (most recent call first): 2025-06-05T23:25:28.5417187Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.5418230Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-026rhj/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.5418876Z 2025-06-05T23:25:28.5418976Z  2025-06-05T23:25:28.5419580Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.5420323Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.5420739Z CMake. 2025-06-05T23:25:28.5420847Z 2025-06-05T23:25:28.8391401Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.8392067Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.8392546Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.8392914Z Call Stack (most recent call first): 2025-06-05T23:25:28.8393298Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:28.8394017Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.8395076Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-026rhj/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.8395723Z 2025-06-05T23:25:28.8395998Z  2025-06-05T23:25:28.8396515Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:28.8397147Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.8397562Z CMake. 2025-06-05T23:25:28.8397673Z 2025-06-05T23:25:28.8397892Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.8398439Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.8398914Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.8399270Z Call Stack (most recent call first): 2025-06-05T23:25:28.8399967Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:28.8401039Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:28.8402269Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:28.8403373Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-026rhj/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.8404005Z 2025-06-05T23:25:28.8404142Z  2025-06-05T23:25:28.8404362Z -- Looking for bcopy - found 2025-06-05T23:25:28.8404646Z -- Looking for memfd_create 2025-06-05T23:25:28.8405278Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.8405990Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.8406388Z CMake. 2025-06-05T23:25:28.8406509Z 2025-06-05T23:25:28.8406727Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.8407322Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.8407800Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.8408163Z Call Stack (most recent call first): 2025-06-05T23:25:28.8408766Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.8409877Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-TBt5kg/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.8410514Z 2025-06-05T23:25:28.8410632Z  2025-06-05T23:25:28.8411380Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.8412113Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.8412535Z CMake. 2025-06-05T23:25:28.8412645Z 2025-06-05T23:25:28.8412879Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.8413419Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.8413904Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.8414257Z Call Stack (most recent call first): 2025-06-05T23:25:28.8414637Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:28.8415329Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.8416383Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-TBt5kg/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.8417013Z 2025-06-05T23:25:28.8417122Z  2025-06-05T23:25:28.8417617Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:28.8418257Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.8418658Z CMake. 2025-06-05T23:25:28.8418776Z 2025-06-05T23:25:28.8418994Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.8419542Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.8420002Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.8420362Z Call Stack (most recent call first): 2025-06-05T23:25:28.8421043Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:28.8422125Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:28.8423185Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:28.8424272Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-TBt5kg/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.8424911Z 2025-06-05T23:25:28.8425020Z  2025-06-05T23:25:28.8425227Z -- Looking for memfd_create - not found 2025-06-05T23:25:28.8425640Z -- Looking for memmove 2025-06-05T23:25:28.8426258Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.8426961Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.8427369Z CMake. 2025-06-05T23:25:28.8427475Z 2025-06-05T23:25:28.8427694Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.8428240Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.8428705Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.8429066Z Call Stack (most recent call first): 2025-06-05T23:25:28.8429664Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.8430766Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-L7tHi1/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.8431405Z 2025-06-05T23:25:28.8431517Z  2025-06-05T23:25:28.8432113Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.8432851Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.8433252Z CMake. 2025-06-05T23:25:28.8433417Z 2025-06-05T23:25:28.8433634Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.8434182Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.8434680Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.8435046Z Call Stack (most recent call first): 2025-06-05T23:25:28.8435414Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:28.8436116Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.8437155Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-L7tHi1/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.8437802Z 2025-06-05T23:25:28.8437899Z  2025-06-05T23:25:28.8438405Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:28.8439039Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.8439451Z CMake. 2025-06-05T23:25:28.8439559Z 2025-06-05T23:25:28.8439775Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.8440325Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.8440792Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.8441156Z Call Stack (most recent call first): 2025-06-05T23:25:28.8441958Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:28.8443039Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:28.8444148Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:28.8445240Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-L7tHi1/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.8445888Z 2025-06-05T23:25:28.8445990Z  2025-06-05T23:25:28.8446207Z -- Looking for memmove - found 2025-06-05T23:25:28.8446483Z -- Looking for secure_getenv 2025-06-05T23:25:28.8447131Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.8447821Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.8448234Z CMake. 2025-06-05T23:25:28.8448341Z 2025-06-05T23:25:28.8448558Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.8449144Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.8449622Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.8449973Z Call Stack (most recent call first): 2025-06-05T23:25:28.8450591Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.8451711Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-WepGQ1/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.8452359Z 2025-06-05T23:25:28.8452463Z  2025-06-05T23:25:28.8453080Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:28.8453845Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.8454257Z CMake. 2025-06-05T23:25:28.8454367Z 2025-06-05T23:25:28.8454581Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:28.8455136Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:28.8455594Z to work with policies introduced by or earlier. 2025-06-05T23:25:28.8455956Z Call Stack (most recent call first): 2025-06-05T23:25:28.8456363Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:28.8457056Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:28.8458136Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-WepGQ1/CMakeLists.txt:5 (project) 2025-06-05T23:25:28.8458768Z 2025-06-05T23:25:28.8458865Z  2025-06-05T23:25:28.8459363Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:28.8460008Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:28.8460411Z CMake. 2025-06-05T23:25:28.8460519Z 2025-06-05T23:25:29.1346238Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.1347253Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.1347724Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.1348112Z Call Stack (most recent call first): 2025-06-05T23:25:29.1348802Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:29.1349924Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:29.1350992Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:29.1352115Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-WepGQ1/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.1352761Z 2025-06-05T23:25:29.1353025Z  2025-06-05T23:25:29.1353258Z -- Looking for secure_getenv - not found 2025-06-05T23:25:29.1353564Z -- Looking for strerror 2025-06-05T23:25:29.1354202Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.1354906Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.1355330Z CMake. 2025-06-05T23:25:29.1355438Z 2025-06-05T23:25:29.1355667Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.1356206Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.1356681Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.1357033Z Call Stack (most recent call first): 2025-06-05T23:25:29.1357648Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.1358865Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-TwrSNr/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.1359497Z 2025-06-05T23:25:29.1359599Z  2025-06-05T23:25:29.1360214Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.1360939Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.1361353Z CMake. 2025-06-05T23:25:29.1361462Z 2025-06-05T23:25:29.1361683Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.1362236Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.1362711Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.1363117Z Call Stack (most recent call first): 2025-06-05T23:25:29.1363495Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:29.1364186Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.1365506Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-TwrSNr/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.1366147Z 2025-06-05T23:25:29.1366273Z  2025-06-05T23:25:29.1366833Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:29.1367484Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.1367890Z CMake. 2025-06-05T23:25:29.1368067Z 2025-06-05T23:25:29.1368286Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.1368820Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.1369292Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.1369656Z Call Stack (most recent call first): 2025-06-05T23:25:29.1370338Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:29.1371427Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:29.1372474Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:29.1373579Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-TwrSNr/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.1374215Z 2025-06-05T23:25:29.1374328Z  2025-06-05T23:25:29.1374528Z -- Looking for strerror - found 2025-06-05T23:25:29.1374826Z -- Performing Test HAVE_REALPATH 2025-06-05T23:25:29.1375477Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.1376181Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.1376584Z CMake. 2025-06-05T23:25:29.1376702Z 2025-06-05T23:25:29.1376919Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.1377472Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.1377936Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.1378295Z Call Stack (most recent call first): 2025-06-05T23:25:29.1378893Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.1379950Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-jCs57A/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.1380581Z 2025-06-05T23:25:29.1380682Z  2025-06-05T23:25:29.1381295Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.1382032Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.1382491Z CMake. 2025-06-05T23:25:29.1382601Z 2025-06-05T23:25:29.1382838Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.1383377Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.1383863Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.1384215Z Call Stack (most recent call first): 2025-06-05T23:25:29.1384600Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:29.1385310Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.1386422Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-jCs57A/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.1387127Z 2025-06-05T23:25:29.1387233Z  2025-06-05T23:25:29.1387726Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:29.1388374Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.1388789Z CMake. 2025-06-05T23:25:29.1388898Z 2025-06-05T23:25:29.1389118Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.1389700Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.1390173Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.1390533Z Call Stack (most recent call first): 2025-06-05T23:25:29.1391244Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:29.1392325Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:29.1393372Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:29.1394474Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-jCs57A/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.1395108Z 2025-06-05T23:25:29.1395219Z  2025-06-05T23:25:29.1395526Z -- Performing Test HAVE_REALPATH - Success 2025-06-05T23:25:29.1395896Z -- Performing Test HAVE_ATTRIBUTE_UNINITIALIZED 2025-06-05T23:25:29.1396602Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.1397316Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.1397712Z CMake. 2025-06-05T23:25:29.1397836Z 2025-06-05T23:25:29.1398051Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.1398597Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.1399064Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.1399425Z Call Stack (most recent call first): 2025-06-05T23:25:29.1400029Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.1401081Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-VAdxj4/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.1401714Z 2025-06-05T23:25:29.1401812Z  2025-06-05T23:25:29.1402421Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.1403157Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.1403558Z CMake. 2025-06-05T23:25:29.1403664Z 2025-06-05T23:25:29.1403893Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.1404531Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.1405004Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.1405465Z Call Stack (most recent call first): 2025-06-05T23:25:29.1405853Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:29.1406619Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.1407717Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-VAdxj4/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.1408359Z 2025-06-05T23:25:29.1408470Z  2025-06-05T23:25:29.1408964Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:29.1409610Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.1410020Z CMake. 2025-06-05T23:25:29.1410174Z 2025-06-05T23:25:29.1410394Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.1410941Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.1411404Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.1411767Z Call Stack (most recent call first): 2025-06-05T23:25:29.1412452Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:29.1413573Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:29.1414664Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:29.5146193Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-VAdxj4/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.5146921Z 2025-06-05T23:25:29.5147186Z  2025-06-05T23:25:29.5147490Z -- Performing Test HAVE_ATTRIBUTE_UNINITIALIZED - Success 2025-06-05T23:25:29.5147868Z -- Performing Test HAVE_VISIBILITY 2025-06-05T23:25:29.5148591Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.5149407Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.5149926Z CMake. 2025-06-05T23:25:29.5150053Z 2025-06-05T23:25:29.5150286Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.5150905Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.5151369Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.5151740Z Call Stack (most recent call first): 2025-06-05T23:25:29.5152347Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.5153407Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-mkVSDr/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.5154042Z 2025-06-05T23:25:29.5154162Z  2025-06-05T23:25:29.5154763Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.5155504Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.5155905Z CMake. 2025-06-05T23:25:29.5156027Z 2025-06-05T23:25:29.5156248Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.5156787Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.5157263Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.5157624Z Call Stack (most recent call first): 2025-06-05T23:25:29.5157993Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:29.5158705Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.5159745Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-mkVSDr/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.5160572Z 2025-06-05T23:25:29.5160682Z  2025-06-05T23:25:29.5161176Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:29.5161824Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.5162243Z CMake. 2025-06-05T23:25:29.5162355Z 2025-06-05T23:25:29.5162571Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.5163126Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.5163590Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.5163956Z Call Stack (most recent call first): 2025-06-05T23:25:29.5164702Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:29.5166066Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:29.5167143Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:29.5168304Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-mkVSDr/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.5168953Z 2025-06-05T23:25:29.5169068Z  2025-06-05T23:25:29.5169312Z -- Performing Test HAVE_VISIBILITY - Success 2025-06-05T23:25:29.5169704Z -- Performing Test HAVE_BUILTIN_ASSUME 2025-06-05T23:25:29.5170389Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.5171081Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.5171499Z CMake. 2025-06-05T23:25:29.5171609Z 2025-06-05T23:25:29.5171827Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.5172382Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.5172864Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.5173217Z Call Stack (most recent call first): 2025-06-05T23:25:29.5173837Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.5174883Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-aFTM1v/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.5175532Z 2025-06-05T23:25:29.5175665Z  2025-06-05T23:25:29.5176297Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.5177043Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.5177458Z CMake. 2025-06-05T23:25:29.5177567Z 2025-06-05T23:25:29.5177784Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.5178329Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.5178792Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.5179149Z Call Stack (most recent call first): 2025-06-05T23:25:29.5179520Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:29.5180224Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.5181282Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-aFTM1v/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.5181914Z 2025-06-05T23:25:29.5182010Z  2025-06-05T23:25:29.5182514Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:29.5183146Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.5183625Z CMake. 2025-06-05T23:25:29.5183734Z 2025-06-05T23:25:29.5183968Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.5184504Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.5184984Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.5185334Z Call Stack (most recent call first): 2025-06-05T23:25:29.5186099Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:29.5187173Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:29.5188233Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:29.5189398Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-aFTM1v/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.5190040Z 2025-06-05T23:25:29.5190145Z  2025-06-05T23:25:29.5190389Z -- Performing Test HAVE_BUILTIN_ASSUME - Failed 2025-06-05T23:25:29.5190739Z -- Performing Test HAVE_BUILTIN_MUL_OVERFLOW 2025-06-05T23:25:29.5191442Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.5192201Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.5192603Z CMake. 2025-06-05T23:25:29.5192710Z 2025-06-05T23:25:29.5192973Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.5193515Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.5194002Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.5194355Z Call Stack (most recent call first): 2025-06-05T23:25:29.5194971Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.5196031Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-ynWtSm/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.5196665Z 2025-06-05T23:25:29.5196761Z  2025-06-05T23:25:29.5197375Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.5198099Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.5198510Z CMake. 2025-06-05T23:25:29.5198618Z 2025-06-05T23:25:29.5198935Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.5199583Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.5200126Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.5200505Z Call Stack (most recent call first): 2025-06-05T23:25:29.5200925Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:29.5201623Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.5202677Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-ynWtSm/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.5203309Z 2025-06-05T23:25:29.5203436Z  2025-06-05T23:25:29.5203934Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:29.5204582Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.5204987Z CMake. 2025-06-05T23:25:29.5205110Z 2025-06-05T23:25:29.5205330Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.5205864Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.5206341Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.5206700Z Call Stack (most recent call first): 2025-06-05T23:25:29.5207460Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:29.5208545Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:29.5209593Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:29.5210701Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-ynWtSm/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.5211337Z 2025-06-05T23:25:29.5211452Z  2025-06-05T23:25:29.5211698Z -- Performing Test HAVE_BUILTIN_MUL_OVERFLOW - Success 2025-06-05T23:25:29.5212131Z -- Performing Test HAVE_BUILTIN_UNREACHABLE 2025-06-05T23:25:29.5212812Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.5213519Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.5213918Z CMake. 2025-06-05T23:25:29.5214041Z 2025-06-05T23:25:29.5214257Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.5214809Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.5215310Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.8992949Z Call Stack (most recent call first): 2025-06-05T23:25:29.8994303Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.8995397Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-P0j8Xa/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.8996098Z 2025-06-05T23:25:29.8996360Z  2025-06-05T23:25:29.8996987Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.8997726Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.8998145Z CMake. 2025-06-05T23:25:29.8998254Z 2025-06-05T23:25:29.8998486Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.8999028Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.8999511Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.8999865Z Call Stack (most recent call first): 2025-06-05T23:25:29.9000251Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:29.9000947Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.9002013Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-P0j8Xa/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.9002661Z 2025-06-05T23:25:29.9002762Z  2025-06-05T23:25:29.9003272Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:29.9003904Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.9004323Z CMake. 2025-06-05T23:25:29.9004433Z 2025-06-05T23:25:29.9004649Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.9005203Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.9005674Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.9006044Z Call Stack (most recent call first): 2025-06-05T23:25:29.9006742Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:29.9007819Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:29.9008884Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:29.9010055Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-P0j8Xa/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.9010706Z 2025-06-05T23:25:29.9010812Z  2025-06-05T23:25:29.9011087Z -- Performing Test HAVE_BUILTIN_UNREACHABLE - Success 2025-06-05T23:25:29.9011454Z -- Performing Test HAVE_VSCRIPT_GNU 2025-06-05T23:25:29.9012132Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.9012829Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.9013244Z CMake. 2025-06-05T23:25:29.9013350Z 2025-06-05T23:25:29.9013568Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.9014168Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.9014646Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.9014997Z Call Stack (most recent call first): 2025-06-05T23:25:29.9015613Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.9016702Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-naxIon/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.9017349Z 2025-06-05T23:25:29.9017449Z  2025-06-05T23:25:29.9018058Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.9018814Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.9019226Z CMake. 2025-06-05T23:25:29.9019332Z 2025-06-05T23:25:29.9019549Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.9020100Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.9020563Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.9020922Z Call Stack (most recent call first): 2025-06-05T23:25:29.9021306Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:29.9021999Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.9023058Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-naxIon/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.9023689Z 2025-06-05T23:25:29.9023787Z  2025-06-05T23:25:29.9024294Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:29.9024943Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.9025348Z CMake. 2025-06-05T23:25:29.9025459Z 2025-06-05T23:25:29.9025779Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.9026322Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.9026795Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.9027141Z Call Stack (most recent call first): 2025-06-05T23:25:29.9027838Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:29.9028917Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:29.9029962Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:29.9031063Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-naxIon/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.9031700Z 2025-06-05T23:25:29.9031806Z  2025-06-05T23:25:29.9032039Z -- Performing Test HAVE_VSCRIPT_GNU - Success 2025-06-05T23:25:29.9032430Z -- Performing Test HAVE_VSCRIPT_SUN 2025-06-05T23:25:29.9033085Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.9033794Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.9034195Z CMake. 2025-06-05T23:25:29.9034318Z 2025-06-05T23:25:29.9034538Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.9035077Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.9035551Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.9035909Z Call Stack (most recent call first): 2025-06-05T23:25:29.9036511Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.9037600Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-uwqu9z/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.9038234Z 2025-06-05T23:25:29.9038331Z  2025-06-05T23:25:29.9039006Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.9039994Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.9040415Z CMake. 2025-06-05T23:25:29.9040590Z 2025-06-05T23:25:29.9040823Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.9041360Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.9041886Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.9042236Z Call Stack (most recent call first): 2025-06-05T23:25:29.9042618Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:29.9043311Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.9044370Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-uwqu9z/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.9045077Z 2025-06-05T23:25:29.9045209Z  2025-06-05T23:25:29.9045698Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:29.9046397Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.9046798Z CMake. 2025-06-05T23:25:29.9046916Z 2025-06-05T23:25:29.9047131Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.9047676Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.9048138Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.9048493Z Call Stack (most recent call first): 2025-06-05T23:25:29.9049175Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:29.9050255Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:29.9051310Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:29.9052400Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-uwqu9z/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.9053040Z 2025-06-05T23:25:29.9053155Z  2025-06-05T23:25:29.9053378Z -- Performing Test HAVE_VSCRIPT_SUN - Failed 2025-06-05T23:25:29.9053720Z -- Performing Test HAVE_VSCRIPT_BROKEN 2025-06-05T23:25:29.9054392Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.9055101Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.9055516Z CMake. 2025-06-05T23:25:29.9055623Z 2025-06-05T23:25:29.9055839Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.9056437Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:29.9056900Z to work with policies introduced by or earlier. 2025-06-05T23:25:29.9057260Z Call Stack (most recent call first): 2025-06-05T23:25:29.9057864Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:29.9058918Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-XtBnuM/CMakeLists.txt:5 (project) 2025-06-05T23:25:29.9059552Z 2025-06-05T23:25:29.9059663Z  2025-06-05T23:25:29.9060262Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:29.9061033Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:29.9061435Z CMake. 2025-06-05T23:25:29.9061556Z 2025-06-05T23:25:29.9061774Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:29.9062325Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:30.6516606Z to work with policies introduced by or earlier. 2025-06-05T23:25:30.6517346Z Call Stack (most recent call first): 2025-06-05T23:25:30.6518290Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:30.6519507Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:30.6521496Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-XtBnuM/CMakeLists.txt:5 (project) 2025-06-05T23:25:30.6522702Z 2025-06-05T23:25:30.6523125Z  2025-06-05T23:25:30.6524060Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:30.6525206Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:30.6525961Z CMake. 2025-06-05T23:25:30.6526160Z 2025-06-05T23:25:30.6526556Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:30.6527565Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:30.6528416Z to work with policies introduced by or earlier. 2025-06-05T23:25:30.6529029Z Call Stack (most recent call first): 2025-06-05T23:25:30.6530244Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:30.6532258Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:30.6534156Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:30.6536108Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-XtBnuM/CMakeLists.txt:5 (project) 2025-06-05T23:25:30.6537280Z 2025-06-05T23:25:30.6537642Z  2025-06-05T23:25:30.6538046Z -- Performing Test HAVE_VSCRIPT_BROKEN - Failed 2025-06-05T23:25:30.6538637Z -- Performing Test INTEL_CET_ENABLED 2025-06-05T23:25:30.6539827Z CMake Deprecation Warning at /opt/ndk/build/cmake/android.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:30.6540931Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:30.6541635Z CMake. 2025-06-05T23:25:30.6541809Z 2025-06-05T23:25:30.6542192Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:30.6543111Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:30.6543911Z to work with policies introduced by or earlier. 2025-06-05T23:25:30.6544309Z Call Stack (most recent call first): 2025-06-05T23:25:30.6544935Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:30.6546285Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-ICee0h/CMakeLists.txt:5 (project) 2025-06-05T23:25:30.6546938Z 2025-06-05T23:25:30.6547108Z  2025-06-05T23:25:30.6547742Z CMake Deprecation Warning at /opt/ndk/build/cmake/android-legacy.toolchain.cmake:35 (cmake_minimum_required): 2025-06-05T23:25:30.6548479Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:30.6549022Z CMake. 2025-06-05T23:25:30.6549132Z 2025-06-05T23:25:30.6549357Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:30.6549918Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:30.6550488Z to work with policies introduced by or earlier. 2025-06-05T23:25:30.6550915Z Call Stack (most recent call first): 2025-06-05T23:25:30.6551302Z /opt/ndk/build/cmake/android.toolchain.cmake:55 (include) 2025-06-05T23:25:30.6552072Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/3.31.6/CMakeSystem.cmake:6 (include) 2025-06-05T23:25:30.6553129Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-ICee0h/CMakeLists.txt:5 (project) 2025-06-05T23:25:30.6553853Z 2025-06-05T23:25:30.6554036Z  2025-06-05T23:25:30.6554560Z CMake Deprecation Warning at /opt/ndk/build/cmake/flags.cmake:18 (cmake_minimum_required): 2025-06-05T23:25:30.6555290Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:25:30.6555756Z CMake. 2025-06-05T23:25:30.6555867Z 2025-06-05T23:25:30.6556097Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:25:30.6556644Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:25:30.6557121Z to work with policies introduced by or earlier. 2025-06-05T23:25:30.6557474Z Call Stack (most recent call first): 2025-06-05T23:25:30.6558172Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang.cmake:23 (include) 2025-06-05T23:25:30.6559331Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Android-Clang-C.cmake:1 (include) 2025-06-05T23:25:30.6560382Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake:48 (include) 2025-06-05T23:25:30.6561492Z /pytorch/executorch/cmake-out-android-x86_64/extension/android/CMakeFiles/CMakeScratch/TryCompile-ICee0h/CMakeLists.txt:5 (project) 2025-06-05T23:25:30.6562126Z 2025-06-05T23:25:30.6562237Z  2025-06-05T23:25:30.6562478Z -- Performing Test INTEL_CET_ENABLED - Failed 2025-06-05T23:25:30.6562792Z -- 2025-06-05T23:25:30.6562967Z -- 2025-06-05T23:25:30.6563179Z -- PCRE2-10.46 configuration summary: 2025-06-05T23:25:30.6563450Z -- 2025-06-05T23:25:30.6563851Z -- Install prefix .................... : /pytorch/executorch/cmake-out-android-x86_64 2025-06-05T23:25:30.6564498Z -- C compiler ........................ : /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang 2025-06-05T23:25:30.6565880Z -- C compiler flags .................. : -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O3 -DNDEBUG 2025-06-05T23:25:30.6566866Z -- 2025-06-05T23:25:30.6567085Z -- Build type ........................ : Release 2025-06-05T23:25:30.6567452Z -- Build 8 bit pcre2 library ......... : ON 2025-06-05T23:25:30.6567984Z -- Build 16 bit pcre2 library ........ : OFF 2025-06-05T23:25:30.6568402Z -- Build 32 bit pcre2 library ........ : OFF 2025-06-05T23:25:30.6568782Z -- Include debugging code ............ : IfDebugBuild 2025-06-05T23:25:30.6569174Z -- Enable JIT compiling support ...... : OFF 2025-06-05T23:25:30.6569598Z -- Use SELinux allocator in JIT ...... : IGNORE 2025-06-05T23:25:30.6570056Z -- Enable Unicode support ............ : ON 2025-06-05T23:25:30.6570384Z -- Newline char/sequence ............. : LF 2025-06-05T23:25:30.6570700Z -- \R matches only ANYCRLF ........... : OFF 2025-06-05T23:25:30.6571037Z -- \C is disabled .................... : OFF 2025-06-05T23:25:30.6571345Z -- EBCDIC coding ..................... : OFF 2025-06-05T23:25:30.6571668Z -- EBCDIC code for NL ................ : n/a 2025-06-05T23:25:30.6571988Z -- EBCDIC coding ignoring compiler ... : OFF 2025-06-05T23:25:30.6572322Z -- Rebuild char tables ............... : OFF 2025-06-05T23:25:30.6572647Z -- Internal link size ................ : 2 2025-06-05T23:25:30.6572975Z -- Maximum variable lookbehind ....... : 255 2025-06-05T23:25:30.6573408Z -- Nested parentheses limit .......... : 250 2025-06-05T23:25:30.6573812Z -- Heap limit ........................ : 20000000 2025-06-05T23:25:30.6574161Z -- Match limit ....................... : 10000000 2025-06-05T23:25:30.6574512Z -- Match depth limit ................. : MATCH_LIMIT 2025-06-05T23:25:30.6574862Z -- Build shared libs ................. : OFF 2025-06-05T23:25:30.6575175Z -- with symbol versioning ........ : ON 2025-06-05T23:25:30.6575500Z -- Build static libs ................. : ON 2025-06-05T23:25:30.6575819Z -- with PIC enabled .............. : OFF 2025-06-05T23:25:30.6576177Z -- Build pcre2grep ................... : OFF 2025-06-05T23:25:30.6576529Z -- Enable JIT in pcre2grep ........... : ON 2025-06-05T23:25:30.6576852Z -- Enable callouts in pcre2grep ...... : ON 2025-06-05T23:25:30.6577265Z -- Enable callout fork in pcre2grep .. : ON 2025-06-05T23:25:30.6577608Z -- Initial buffer size for pcre2grep . : 20480 2025-06-05T23:25:30.6577985Z -- Maximum buffer size for pcre2grep . : 1048576 2025-06-05T23:25:30.6578418Z -- Build tests (implies pcre2test .... : OFF 2025-06-05T23:25:30.6578748Z -- and pcre2grep) 2025-06-05T23:25:30.6579050Z -- Link pcre2grep with libz .......... : ON 2025-06-05T23:25:30.6579420Z -- Link pcre2grep with libbz2 ........ : Library not found 2025-06-05T23:25:30.6579951Z -- Link pcre2test with libeditline ... : Library not found 2025-06-05T23:25:30.6580370Z -- Link pcre2test with libreadline ... : Library not found 2025-06-05T23:25:30.6580779Z -- Enable Valgrind support ........... : OFF 2025-06-05T23:25:30.6581279Z -- Use %zu and %td ................... : AUTO 2025-06-05T23:25:30.6581731Z -- 2025-06-05T23:25:30.6582029Z -- Configuring done (3.7s) 2025-06-05T23:25:30.6582467Z -- Generating done (0.4s) 2025-06-05T23:25:30.6583013Z CMake Warning: 2025-06-05T23:25:30.6583522Z Manually-specified variables were not used by the project: 2025-06-05T23:25:30.6583981Z 2025-06-05T23:25:30.6584161Z EXECUTORCH_ENABLE_LOGGING 2025-06-05T23:25:30.6584590Z EXECUTORCH_LOG_LEVEL 2025-06-05T23:25:30.6584853Z 2025-06-05T23:25:30.6585010Z  2025-06-05T23:25:30.6585737Z -- Build files have been written to: /pytorch/executorch/cmake-out-android-x86_64/extension/android 2025-06-05T23:25:30.6586849Z + cmake --build cmake-out-android-x86_64/extension/android -j 7 --config Release 2025-06-05T23:25:30.6588617Z [ 1%] Generating third-party/fbjni/prefab/modules/fbjni/include, third-party/fbjni/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so 2025-06-05T23:25:30.6590995Z [ 1%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/extension/llm/runner/CMakeFiles/extension_llm_runner.dir/text_decoder_runner.cpp.o 2025-06-05T23:25:30.6593536Z [ 1%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/log_severity.dir/log_severity.cc.o 2025-06-05T23:25:30.6595494Z [ 1%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/spinlock_wait.dir/internal/spinlock_wait.cc.o 2025-06-05T23:25:30.6597528Z [ 1%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/strerror.dir/internal/strerror.cc.o 2025-06-05T23:25:30.6599491Z [ 2%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_fixed.cc.o 2025-06-05T23:25:30.6600832Z Archive: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/fbjni.aar 2025-06-05T23:25:30.6601641Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/R.txt 2025-06-05T23:25:30.6602528Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/AndroidManifest.xml 2025-06-05T23:25:30.7065402Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/classes.jar 2025-06-05T23:25:30.7067648Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/META-INF/com/android/build/gradle/aar-metadata.properties 2025-06-05T23:25:30.7069644Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/ 2025-06-05T23:25:30.7071434Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/arm64-v8a/ 2025-06-05T23:25:30.7077096Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/arm64-v8a/libc++_shared.so [ 2%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/arena.cc.o 2025-06-05T23:25:30.7081027Z 2025-06-05T23:25:30.7081873Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/arm64-v8a/libfbjni.so 2025-06-05T23:25:30.7083571Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/armeabi-v7a/ 2025-06-05T23:25:30.7085400Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/armeabi-v7a/libc++_shared.so 2025-06-05T23:25:30.7087407Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/armeabi-v7a/libfbjni.so 2025-06-05T23:25:30.7089046Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/x86/ 2025-06-05T23:25:30.7090785Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/x86/libc++_shared.so 2025-06-05T23:25:30.7092556Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/x86/libfbjni.so 2025-06-05T23:25:30.7094324Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/x86_64/ 2025-06-05T23:25:30.7096117Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/x86_64/libc++_shared.so 2025-06-05T23:25:30.7098037Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/jni/x86_64/libfbjni.so 2025-06-05T23:25:30.7099731Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/ 2025-06-05T23:25:30.7101414Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/prefab.json 2025-06-05T23:25:30.7103166Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/ 2025-06-05T23:25:30.7104932Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/ 2025-06-05T23:25:30.7106977Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/module.json 2025-06-05T23:25:30.7109202Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/ 2025-06-05T23:25:30.7111220Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/ 2025-06-05T23:25:30.7113397Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/Application.h 2025-06-05T23:25:30.7115745Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/ByteBuffer.cpp 2025-06-05T23:25:30.7118130Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/ByteBuffer.h 2025-06-05T23:25:30.7120483Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/Context.h 2025-06-05T23:25:30.7122683Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/File.h 2025-06-05T23:25:30.7124925Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/JThread.h 2025-06-05T23:25:30.7127390Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/NativeRunnable.h 2025-06-05T23:25:30.7129820Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/OnLoad.cpp 2025-06-05T23:25:30.7134406Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/ReadableByteChannel.cpp 2025-06-05T23:25:30.7136957Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/ReadableByteChannel.h 2025-06-05T23:25:30.7139408Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/fbjni.cpp 2025-06-05T23:25:30.7141603Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/fbjni.h 2025-06-05T23:25:30.7143739Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/ 2025-06-05T23:25:30.7146117Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Boxed.h 2025-06-05T23:25:30.7148516Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Common.h 2025-06-05T23:25:30.7151048Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/CoreClasses-inl.h 2025-06-05T23:25:30.7153541Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/CoreClasses.h 2025-06-05T23:25:30.7156187Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Environment.cpp 2025-06-05T23:25:30.7158787Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Environment.h 2025-06-05T23:25:30.7161241Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Exceptions.cpp 2025-06-05T23:25:30.7163713Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Exceptions.h 2025-06-05T23:25:30.7166257Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/FbjniApi.h 2025-06-05T23:25:30.7168897Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Hybrid.cpp 2025-06-05T23:25:30.7171264Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Hybrid.h 2025-06-05T23:25:30.7173744Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Iterator-inl.h 2025-06-05T23:25:30.7176207Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Iterator.h 2025-06-05T23:25:30.7178889Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/JWeakReference.h 2025-06-05T23:25:30.7181372Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Log.h 2025-06-05T23:25:30.7183632Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Meta-forward.h 2025-06-05T23:25:30.7186285Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Meta-inl.h 2025-06-05T23:25:30.7188793Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Meta.cpp 2025-06-05T23:25:30.7190981Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Meta.h 2025-06-05T23:25:30.7193305Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/MetaConvert.h 2025-06-05T23:25:30.7195853Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/ReferenceAllocators-inl.h 2025-06-05T23:25:30.7198538Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/ReferenceAllocators.h 2025-06-05T23:25:31.2739002Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/References-forward.h 2025-06-05T23:25:31.2741161Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/References-inl.h 2025-06-05T23:25:31.2743227Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/References.cpp 2025-06-05T23:25:31.2745184Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/References.h 2025-06-05T23:25:31.2747290Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Registration-inl.h 2025-06-05T23:25:31.2749244Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/Registration.h 2025-06-05T23:25:31.2751249Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/SimpleFixedString.h 2025-06-05T23:25:31.2753613Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/TypeTraits.h 2025-06-05T23:25:31.2755628Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/utf8.cpp 2025-06-05T23:25:31.2757682Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/fbjni/detail/utf8.h 2025-06-05T23:25:31.2759576Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/ 2025-06-05T23:25:31.2761408Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/cxa_throw.cpp 2025-06-05T23:25:31.2763504Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/lyra.cpp 2025-06-05T23:25:31.2765647Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/lyra.h 2025-06-05T23:25:31.2767863Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/lyra_breakpad.cpp 2025-06-05T23:25:31.2770435Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/lyra_exceptions.cpp 2025-06-05T23:25:31.2772971Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/include/lyra/lyra_exceptions.h 2025-06-05T23:25:31.2775300Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/ 2025-06-05T23:25:31.2777486Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.arm64-v8a/ 2025-06-05T23:25:31.2779748Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.arm64-v8a/abi.json 2025-06-05T23:25:31.2782114Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so 2025-06-05T23:25:31.2784413Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.armeabi-v7a/ 2025-06-05T23:25:31.2786790Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.armeabi-v7a/abi.json 2025-06-05T23:25:31.2789202Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.armeabi-v7a/libfbjni.so 2025-06-05T23:25:31.2791435Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.x86/ 2025-06-05T23:25:31.2793555Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.x86/abi.json 2025-06-05T23:25:31.2795819Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.x86/libfbjni.so 2025-06-05T23:25:31.2797978Z creating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.x86_64/ 2025-06-05T23:25:31.2800171Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.x86_64/abi.json 2025-06-05T23:25:31.2802477Z inflating: /pytorch/executorch/cmake-out-android-x86_64/extension/android/third-party/fbjni/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so 2025-06-05T23:25:31.2803910Z [ 2%] Built target fbjni_prefab 2025-06-05T23:25:31.2807488Z [ 3%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/arenastring.cc.o 2025-06-05T23:25:31.2810930Z [ 3%] Linking CXX static library libabsl_spinlock_wait.a 2025-06-05T23:25:31.2811976Z [ 3%] Linking CXX static library libabsl_strerror.a 2025-06-05T23:25:31.2812607Z [ 3%] Built target spinlock_wait 2025-06-05T23:25:31.2813081Z [ 3%] Built target strerror 2025-06-05T23:25:31.2815326Z [ 3%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/utf8_for_code_point.dir/internal/utf8_for_code_point.cc.o 2025-06-05T23:25:31.2819700Z [ 3%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/bytestream.cc.o 2025-06-05T23:25:31.2822394Z [ 4%] Linking CXX static library libabsl_log_severity.a 2025-06-05T23:25:31.2824687Z [ 4%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_format.cc.o 2025-06-05T23:25:31.2826721Z [ 4%] Built target log_severity 2025-06-05T23:25:31.2828912Z [ 4%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_if.cc.o 2025-06-05T23:25:31.2832576Z [ 4%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_impl.cc.o 2025-06-05T23:25:31.2834910Z [ 4%] Linking CXX static library libabsl_utf8_for_code_point.a 2025-06-05T23:25:31.2835650Z [ 4%] Built target utf8_for_code_point 2025-06-05T23:25:31.2837715Z [ 4%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/numeric/CMakeFiles/int128.dir/int128.cc.o 2025-06-05T23:25:31.2840624Z [ 5%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/extension/llm/runner/CMakeFiles/extension_llm_runner.dir/text_prefiller.cpp.o 2025-06-05T23:25:31.2844750Z [ 5%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/coded_stream.cc.o 2025-06-05T23:25:31.2850227Z [ 5%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/common.cc.o 2025-06-05T23:25:31.2855584Z [ 6%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/extension_set.cc.o 2025-06-05T23:25:31.2860811Z [ 6%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_enum_util.cc.o 2025-06-05T23:25:31.2864091Z [ 6%] Linking CXX static library libabsl_int128.a 2025-06-05T23:25:31.2866719Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_info.cc.o 2025-06-05T23:25:31.2868704Z [ 7%] Built target int128 2025-06-05T23:25:32.0868002Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_libc.cc.o 2025-06-05T23:25:32.0873459Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_message_table_driven_lite.cc.o 2025-06-05T23:25:32.0878348Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/extension/llm/runner/CMakeFiles/extension_llm_runner.dir/pytorch/executorch/extension/llm/sampler/sampler.cpp.o 2025-06-05T23:25:32.0882012Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_lookup.cc.o 2025-06-05T23:25:32.0886071Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_posix.cc.o 2025-06-05T23:25:32.0890321Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/profiling/CMakeFiles/exponential_biased.dir/internal/exponential_biased.cc.o 2025-06-05T23:25:32.0895539Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_message_util.cc.o 2025-06-05T23:25:32.0898849Z [ 7%] Linking CXX static library libextension_llm_runner.a 2025-06-05T23:25:32.0902467Z [ 7%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/implicit_weak_message.cc.o 2025-06-05T23:25:32.0905458Z [ 7%] Built target extension_llm_runner 2025-06-05T23:25:32.0908884Z [ 8%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/int128.cc.o 2025-06-05T23:25:32.0913526Z [ 8%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/zone_info_source.cc.o 2025-06-05T23:25:32.0917114Z [ 8%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/civil_time.dir/internal/cctz/src/civil_time_detail.cc.o 2025-06-05T23:25:32.0920964Z [ 8%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/io_win32.cc.o 2025-06-05T23:25:32.0923268Z [ 8%] Linking CXX static library libabsl_exponential_biased.a 2025-06-05T23:25:32.0923840Z [ 8%] Built target exponential_biased 2025-06-05T23:25:32.0925435Z [ 8%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/leak_check.dir/leak_check.cc.o 2025-06-05T23:25:32.0926988Z [ 8%] Linking CXX static library libabsl_leak_check.a 2025-06-05T23:25:32.0927490Z [ 8%] Built target leak_check 2025-06-05T23:25:32.0929295Z [ 8%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_commandlineflag_internal.dir/internal/commandlineflag.cc.o 2025-06-05T23:25:32.0932261Z [ 9%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_nullguard.dir/internal/nullguard.cc.o 2025-06-05T23:25:32.0933886Z [ 9%] Linking CXX static library libabsl_civil_time.a 2025-06-05T23:25:32.0934379Z [ 9%] Built target civil_time 2025-06-05T23:25:32.0934931Z [ 10%] Linking CXX static library libabsl_time_zone.a 2025-06-05T23:25:32.0936540Z [ 10%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_auto_possess.c.o 2025-06-05T23:25:32.0939003Z [ 10%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/pcre2_chartables.c.o 2025-06-05T23:25:32.0940267Z [ 10%] Built target time_zone 2025-06-05T23:25:32.0941711Z [ 11%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_chkdint.c.o 2025-06-05T23:25:32.0944137Z [ 11%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_compile.c.o 2025-06-05T23:25:32.0945911Z [ 11%] Linking CXX static library libabsl_flags_commandlineflag_internal.a 2025-06-05T23:25:32.0946571Z [ 11%] Built target flags_commandlineflag_internal 2025-06-05T23:25:32.0948173Z [ 11%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_compile_cgroup.c.o 2025-06-05T23:25:32.0950630Z [ 11%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_compile_class.c.o 2025-06-05T23:25:32.0953005Z [ 11%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_config.c.o 2025-06-05T23:25:32.0956240Z [ 11%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/message_lite.cc.o 2025-06-05T23:25:32.0959342Z [ 12%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_context.c.o 2025-06-05T23:25:32.0960908Z [ 12%] Linking CXX static library libabsl_log_internal_nullguard.a 2025-06-05T23:25:32.0961485Z [ 12%] Built target log_internal_nullguard 2025-06-05T23:25:32.0963125Z [ 12%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_convert.c.o 2025-06-05T23:25:32.0965739Z [ 12%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_dfa_match.c.o 2025-06-05T23:25:32.0969536Z [ 12%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/parse_context.cc.o 2025-06-05T23:25:32.0973336Z [ 12%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_error.c.o 2025-06-05T23:25:32.0976367Z [ 13%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_extuni.c.o 2025-06-05T23:25:32.0979355Z [ 13%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_find_bracket.c.o 2025-06-05T23:25:32.0982612Z [ 14%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/profiling/CMakeFiles/periodic_sampler.dir/internal/periodic_sampler.cc.o 2025-06-05T23:25:32.0985847Z [ 15%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_seed_gen_exception.dir/seed_gen_exception.cc.o 2025-06-05T23:25:32.9025753Z [ 15%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_jit_compile.c.o 2025-06-05T23:25:32.9029547Z [ 15%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_maketables.c.o 2025-06-05T23:25:32.9033512Z [ 16%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_platform.dir/internal/randen_round_keys.cc.o 2025-06-05T23:25:32.9036100Z [ 16%] Linking CXX static library libabsl_periodic_sampler.a 2025-06-05T23:25:32.9036895Z [ 16%] Built target periodic_sampler 2025-06-05T23:25:32.9040294Z [ 16%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/repeated_field.cc.o 2025-06-05T23:25:32.9046200Z [ 17%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/status.cc.o 2025-06-05T23:25:32.9049514Z [ 17%] Linking CXX static library libabsl_random_internal_platform.a 2025-06-05T23:25:32.9051851Z [ 17%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_match.c.o 2025-06-05T23:25:32.9055302Z [ 18%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_match_data.c.o 2025-06-05T23:25:32.9057176Z [ 18%] Built target random_internal_platform 2025-06-05T23:25:32.9059603Z [ 19%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/builder.cc.o 2025-06-05T23:25:32.9064566Z [ 19%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/statusor.cc.o 2025-06-05T23:25:32.9067810Z [ 19%] Linking CXX static library libabsl_random_seed_gen_exception.a 2025-06-05T23:25:32.9068672Z [ 19%] Built target random_seed_gen_exception 2025-06-05T23:25:32.9072227Z [ 19%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/stringpiece.cc.o 2025-06-05T23:25:32.9078713Z [ 19%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/stringprintf.cc.o 2025-06-05T23:25:32.9083294Z [ 19%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_match_next.c.o 2025-06-05T23:25:32.9086712Z [ 19%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_newline.c.o 2025-06-05T23:25:32.9090809Z [ 19%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_ord2utf.c.o 2025-06-05T23:25:32.9094461Z [ 19%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/unicode_script.cc.o 2025-06-05T23:25:32.9098708Z [ 19%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/trainer_factory.cc.o 2025-06-05T23:25:32.9102593Z [ 20%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_pattern_info.c.o 2025-06-05T23:25:32.9106465Z [ 20%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/trainer_interface.cc.o 2025-06-05T23:25:32.9110562Z [ 20%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/unigram_model_trainer.cc.o 2025-06-05T23:25:32.9115716Z [ 21%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/structurally_valid.cc.o 2025-06-05T23:25:32.9120377Z [ 21%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_script_run.c.o 2025-06-05T23:25:32.9123957Z [ 21%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_serialize.c.o 2025-06-05T23:25:32.9126897Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/builder.cc:47:15: warning: unused variable 'kMaxUnicode' [-Wunused-const-variable] 2025-06-05T23:25:32.9128532Z 47 | constexpr int kMaxUnicode = 0x10FFFF; 2025-06-05T23:25:32.9129101Z | ^~~~~~~~~~~ 2025-06-05T23:25:32.9130734Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/builder.cc:49:36: warning: unused variable 'kDefaultNormalizerName' [-Wunused-const-variable] 2025-06-05T23:25:32.9132727Z 49 | static constexpr absl::string_view kDefaultNormalizerName = "nfkc"; 2025-06-05T23:25:32.9133540Z | ^~~~~~~~~~~~~~~~~~~~~~ 2025-06-05T23:25:32.9134093Z 2 warnings generated. 2025-06-05T23:25:32.9136221Z [ 21%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_string_utils.c.o 2025-06-05T23:25:32.9140100Z [ 22%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/word_model_trainer.cc.o 2025-06-05T23:25:32.9143772Z [ 22%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_study.c.o 2025-06-05T23:25:32.9147310Z [ 23%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_substitute.c.o 2025-06-05T23:25:32.9151227Z [ 23%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_substring.c.o 2025-06-05T23:25:32.9156047Z [ 23%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/strutil.cc.o 2025-06-05T23:25:32.9161045Z [ 23%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_tables.c.o 2025-06-05T23:25:32.9167061Z [ 23%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/time.cc.o 2025-06-05T23:25:32.9171927Z [ 23%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/char_model_trainer.cc.o 2025-06-05T23:25:32.9175927Z [ 23%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/bpe_model_trainer.cc.o 2025-06-05T23:25:34.1644130Z [ 23%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/wire_format_lite.cc.o 2025-06-05T23:25:34.1648836Z [ 23%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_ucd.c.o 2025-06-05T23:25:34.1652309Z [ 23%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_valid_utf.c.o 2025-06-05T23:25:34.1655631Z [ 24%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_xclass.c.o 2025-06-05T23:25:34.1660270Z [ 24%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream.cc.o 2025-06-05T23:25:34.1664656Z [ 24%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llava/runner/CMakeFiles/llava_runner.dir/llava_runner.cpp.o 2025-06-05T23:25:34.1666693Z [ 24%] Linking C static library libpcre2-8.a 2025-06-05T23:25:34.1667359Z [ 24%] Built target pcre2-8-static 2025-06-05T23:25:34.1670915Z [ 25%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream_impl.cc.o 2025-06-05T23:25:34.1676106Z [ 25%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/raw_logging_internal.dir/internal/raw_logging.cc.o 2025-06-05T23:25:34.1680321Z [ 26%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/decode_rust_punycode.dir/internal/decode_rust_punycode.cc.o 2025-06-05T23:25:34.1683876Z [ 26%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/regex_lookahead.dir/src/pcre2_regex.cpp.o 2025-06-05T23:25:34.1687547Z [ 26%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/sentencepiece_trainer.cc.o 2025-06-05T23:25:34.1691090Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/regex_lookahead.dir/src/regex_lookahead.cpp.o 2025-06-05T23:25:34.1693351Z [ 27%] Linking CXX static library libabsl_raw_logging_internal.a 2025-06-05T23:25:34.1697148Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream_impl_lite.cc.o 2025-06-05T23:25:34.1700359Z [ 27%] Built target raw_logging_internal 2025-06-05T23:25:34.1702997Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/builtin_pb/sentencepiece.pb.cc.o 2025-06-05T23:25:34.1707342Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/builtin_pb/sentencepiece_model.pb.cc.o 2025-06-05T23:25:34.1711329Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llava/runner/CMakeFiles/llava_runner.dir/pytorch/executorch/extension/llm/sampler/sampler.cpp.o 2025-06-05T23:25:34.1713619Z [ 27%] Linking CXX static library libabsl_decode_rust_punycode.a 2025-06-05T23:25:34.1714433Z [ 27%] Built target decode_rust_punycode 2025-06-05T23:25:34.1716801Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/bpe_model.cc.o 2025-06-05T23:25:34.1720249Z [ 27%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/regex_lookahead.dir/src/std_regex.cpp.o 2025-06-05T23:25:34.1723453Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_trainer.cc:207:16: warning: 'done' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] 2025-06-05T23:25:34.1725484Z 207 | virtual bool done() const { return iter_ == end_; } 2025-06-05T23:25:34.1726018Z | ^ 2025-06-05T23:25:34.1727421Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_trainer.h:52:16: note: overridden virtual function is here 2025-06-05T23:25:34.1729009Z 52 | virtual bool done() const = 0; 2025-06-05T23:25:34.1729525Z | ^ 2025-06-05T23:25:34.1729970Z 1 warning generated. 2025-06-05T23:25:34.1742894Z [ 28%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/pretokenizer_for_training.cc.o 2025-06-05T23:25:34.1747647Z [ 28%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llava/runner/CMakeFiles/llava_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/llama2c_tokenizer.cpp.o 2025-06-05T23:25:34.1751571Z [ 29%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/char_model.cc.o 2025-06-05T23:25:34.1755379Z [ 29%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/error.cc.o 2025-06-05T23:25:34.1757774Z [ 29%] Linking CXX static library libregex_lookahead.a 2025-06-05T23:25:34.1759070Z [ 29%] Built target regex_lookahead 2025-06-05T23:25:34.1761721Z [ 29%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_randen_hwaes_impl.dir/internal/randen_hwaes.cc.o 2025-06-05T23:25:34.1766033Z [ 29%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/filesystem.cc.o 2025-06-05T23:25:34.1770011Z [ 29%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/model_factory.cc.o 2025-06-05T23:25:34.1772441Z [ 29%] Linking CXX static library libsentencepiece_train.a 2025-06-05T23:25:34.1773235Z [ 29%] Built target sentencepiece_train-static 2025-06-05T23:25:34.1774107Z [ 30%] Linking CXX static library libllava_runner.a 2025-06-05T23:25:34.1776582Z [ 30%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_randen_slow.dir/internal/randen_slow.cc.o 2025-06-05T23:25:34.1778723Z [ 30%] Built target llava_runner 2025-06-05T23:25:34.1780951Z [ 30%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/types/CMakeFiles/bad_any_cast_impl.dir/bad_any_cast.cc.o 2025-06-05T23:25:34.1784489Z [ 30%] Building C object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/pcre2/CMakeFiles/pcre2-posix-static.dir/src/pcre2posix.c.o 2025-06-05T23:25:34.1786874Z [ 31%] Linking CXX static library libabsl_random_internal_randen_hwaes_impl.a 2025-06-05T23:25:34.1787863Z [ 31%] Built target random_internal_randen_hwaes_impl 2025-06-05T23:25:34.1790276Z [ 32%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/model_interface.cc.o 2025-06-05T23:25:34.1793914Z [ 32%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/cycleclock.cc.o 2025-06-05T23:25:34.1797628Z [ 32%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/normalizer.cc.o 2025-06-05T23:25:35.2604772Z [ 32%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/spinlock.cc.o 2025-06-05T23:25:35.2605994Z [ 32%] Linking C static library libpcre2-posix.a 2025-06-05T23:25:35.2606397Z [ 32%] Built target pcre2-posix-static 2025-06-05T23:25:35.2607564Z [ 32%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/sysinfo.cc.o 2025-06-05T23:25:35.2608901Z [ 32%] Linking CXX static library libabsl_bad_any_cast_impl.a 2025-06-05T23:25:35.2609535Z [ 32%] Linking CXX static library libabsl_random_internal_randen_slow.a 2025-06-05T23:25:35.2610008Z [ 32%] Built target bad_any_cast_impl 2025-06-05T23:25:35.2610324Z [ 32%] Built target random_internal_randen_slow 2025-06-05T23:25:35.2611684Z [ 32%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/throw_delegate.dir/internal/throw_delegate.cc.o 2025-06-05T23:25:35.2613636Z [ 33%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/thread_identity.cc.o 2025-06-05T23:25:35.2615645Z [ 33%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/unscaledcycleclock.cc.o 2025-06-05T23:25:35.2617768Z [ 33%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/debugging_internal.dir/internal/address_is_readable.cc.o 2025-06-05T23:25:35.2619961Z [ 33%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/debugging_internal.dir/internal/elf_mem_image.cc.o 2025-06-05T23:25:35.2622021Z [ 34%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/demangle_rust.dir/internal/demangle_rust.cc.o 2025-06-05T23:25:35.2624073Z [ 34%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/sentencepiece_processor.cc.o 2025-06-05T23:25:35.2626168Z [ 35%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/types/CMakeFiles/bad_variant_access.dir/bad_variant_access.cc.o 2025-06-05T23:25:35.2628179Z [ 35%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/types/CMakeFiles/bad_optional_access.dir/bad_optional_access.cc.o 2025-06-05T23:25:35.2629410Z [ 35%] Linking CXX static library libabsl_throw_delegate.a 2025-06-05T23:25:35.2629919Z [ 35%] Linking CXX static library libabsl_base.a 2025-06-05T23:25:35.2630286Z [ 35%] Built target throw_delegate 2025-06-05T23:25:35.2630562Z [ 35%] Built target base 2025-06-05T23:25:35.2631782Z [ 36%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_functions.dir/internal/cordz_functions.cc.o 2025-06-05T23:25:35.2633810Z [ 36%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/scoped_set_env.dir/internal/scoped_set_env.cc.o 2025-06-05T23:25:35.2635035Z [ 36%] Linking CXX static library libabsl_bad_variant_access.a 2025-06-05T23:25:35.2635626Z [ 36%] Linking CXX static library libabsl_bad_optional_access.a 2025-06-05T23:25:35.2636051Z [ 36%] Built target bad_variant_access 2025-06-05T23:25:35.2637392Z [ 36%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/debugging_internal.dir/internal/vdso_support.cc.o 2025-06-05T23:25:35.2638516Z [ 36%] Built target bad_optional_access 2025-06-05T23:25:35.2639978Z [ 36%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_randen_hwaes.dir/internal/randen_detect.cc.o 2025-06-05T23:25:35.2642077Z [ 36%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/unigram_model.cc.o 2025-06-05T23:25:35.2643351Z [ 36%] Linking CXX static library libabsl_random_internal_randen_hwaes.a 2025-06-05T23:25:35.2643941Z [ 36%] Linking CXX static library libabsl_demangle_rust.a 2025-06-05T23:25:35.2644360Z [ 36%] Built target random_internal_randen_hwaes 2025-06-05T23:25:35.2645558Z [ 36%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/util.cc.o 2025-06-05T23:25:35.2646605Z [ 36%] Built target demangle_rust 2025-06-05T23:25:35.2647796Z [ 37%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/word_model.cc.o 2025-06-05T23:25:35.2649008Z [ 37%] Linking CXX static library libabsl_scoped_set_env.a 2025-06-05T23:25:35.2649413Z [ 37%] Built target scoped_set_env 2025-06-05T23:25:35.2650676Z [ 37%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/malloc_internal.dir/internal/low_level_alloc.cc.o 2025-06-05T23:25:35.2651909Z [ 37%] Linking CXX static library libabsl_cordz_functions.a 2025-06-05T23:25:35.2652314Z [ 37%] Built target cordz_functions 2025-06-05T23:25:35.2653509Z [ 37%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/tracing_internal.dir/internal/tracing.cc.o 2025-06-05T23:25:35.2655518Z [ 37%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings_internal.dir/internal/ostringstream.cc.o 2025-06-05T23:25:35.2656787Z [ 37%] Linking CXX static library libabsl_debugging_internal.a 2025-06-05T23:25:35.2657198Z [ 37%] Built target debugging_internal 2025-06-05T23:25:35.2658448Z [ 37%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/demangle_internal.dir/internal/demangle.cc.o 2025-06-05T23:25:35.2659683Z [ 38%] Linking CXX static library libabsl_tracing_internal.a 2025-06-05T23:25:35.2660099Z [ 38%] Built target tracing_internal 2025-06-05T23:25:35.2661805Z [ 38%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/absl/flags/flag.cc.o 2025-06-05T23:25:35.2663441Z [ 38%] Linking CXX static library libabsl_malloc_internal.a 2025-06-05T23:25:35.2663847Z [ 38%] Built target malloc_internal 2025-06-05T23:25:35.2665178Z [ 38%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/string_view.dir/string_view.cc.o 2025-06-05T23:25:35.2667194Z [ 38%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings_internal.dir/internal/utf8.cc.o 2025-06-05T23:25:35.2669181Z [ 38%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings_internal.dir/internal/escaping.cc.o 2025-06-05T23:25:35.2671431Z [ 39%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/graphcycles_internal.dir/internal/graphcycles.cc.o 2025-06-05T23:25:35.2673493Z [ 39%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_cpu_detect.dir/internal/cpu_detect.cc.o 2025-06-05T23:25:35.2675355Z [ 39%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/hash/CMakeFiles/city.dir/internal/city.cc.o 2025-06-05T23:25:35.2676488Z [ 39%] Linking CXX static library libabsl_demangle_internal.a 2025-06-05T23:25:35.2676965Z [ 39%] Built target demangle_internal 2025-06-05T23:25:35.2678187Z [ 39%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/hash/CMakeFiles/low_level_hash.dir/internal/low_level_hash.cc.o 2025-06-05T23:25:35.2679408Z [ 40%] Linking CXX static library libabsl_strings_internal.a 2025-06-05T23:25:36.4154025Z [ 40%] Linking CXX static library libsentencepiece.a 2025-06-05T23:25:36.4155067Z [ 40%] Built target strings_internal 2025-06-05T23:25:36.4155924Z [ 40%] Linking CXX static library libabsl_string_view.a 2025-06-05T23:25:36.4156964Z [ 40%] Linking CXX static library libabsl_crc_cpu_detect.a 2025-06-05T23:25:36.4159624Z [ 40%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_conditions.dir/internal/conditions.cc.o 2025-06-05T23:25:36.4161659Z [ 40%] Built target string_view 2025-06-05T23:25:36.4162185Z [ 40%] Built target crc_cpu_detect 2025-06-05T23:25:36.4164430Z [ 40%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/poison.dir/internal/poison.cc.o 2025-06-05T23:25:36.4168491Z [ 41%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_randen.dir/internal/randen.cc.o 2025-06-05T23:25:36.4170567Z [ 41%] Built target sentencepiece-static 2025-06-05T23:25:36.4171391Z [ 42%] Linking CXX static library libabsl_city.a 2025-06-05T23:25:36.4173781Z [ 43%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/stacktrace.dir/stacktrace.cc.o 2025-06-05T23:25:36.4175658Z [ 43%] Built target city 2025-06-05T23:25:36.4177655Z [ 44%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/ascii.cc.o 2025-06-05T23:25:36.4179967Z [ 44%] Linking CXX static library libabsl_graphcycles_internal.a 2025-06-05T23:25:36.4180935Z [ 44%] Linking CXX static library libabsl_poison.a 2025-06-05T23:25:36.4181638Z [ 44%] Built target graphcycles_internal 2025-06-05T23:25:36.4182208Z [ 44%] Built target poison 2025-06-05T23:25:36.4184342Z [ 44%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_internal.dir/internal/crc.cc.o 2025-06-05T23:25:36.4188298Z [ 44%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_internal.dir/internal/crc_x86_arm_combined.cc.o 2025-06-05T23:25:36.4190815Z [ 44%] Linking CXX static library libabsl_log_internal_conditions.a 2025-06-05T23:25:36.4191670Z [ 44%] Built target log_internal_conditions 2025-06-05T23:25:36.4192710Z [ 44%] Linking CXX static library libabsl_stacktrace.a 2025-06-05T23:25:36.4195097Z [ 44%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/charconv.cc.o 2025-06-05T23:25:36.4197054Z [ 44%] Built target stacktrace 2025-06-05T23:25:36.4199111Z [ 44%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/escaping.cc.o 2025-06-05T23:25:36.4201266Z [ 45%] Linking CXX static library libabsl_low_level_hash.a 2025-06-05T23:25:36.4201969Z [ 45%] Built target low_level_hash 2025-06-05T23:25:36.4204487Z [ 45%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/charconv_bigint.cc.o 2025-06-05T23:25:36.4206883Z [ 45%] Linking CXX static library libabsl_random_internal_randen.a 2025-06-05T23:25:36.4207686Z [ 45%] Built target random_internal_randen 2025-06-05T23:25:36.4210106Z [ 46%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/charconv_parse.cc.o 2025-06-05T23:25:36.4214099Z [ 46%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/damerau_levenshtein_distance.cc.o 2025-06-05T23:25:36.4217927Z [ 46%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/memutil.cc.o 2025-06-05T23:25:36.4220228Z [ 47%] Linking CXX static library libabsl_crc_internal.a 2025-06-05T23:25:36.4222784Z [ 47%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/stringify_sink.cc.o 2025-06-05T23:25:36.4224863Z [ 47%] Built target crc_internal 2025-06-05T23:25:36.4227054Z [ 47%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/match.cc.o 2025-06-05T23:25:36.4230560Z [ 48%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/numbers.cc.o 2025-06-05T23:25:36.4234090Z [ 48%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/str_cat.cc.o 2025-06-05T23:25:36.4237715Z [ 48%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/str_replace.cc.o 2025-06-05T23:25:36.4241316Z [ 48%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/str_split.cc.o 2025-06-05T23:25:36.4244880Z [ 48%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/substitute.cc.o 2025-06-05T23:25:36.4247065Z [ 49%] Linking CXX static library libabsl_strings.a 2025-06-05T23:25:36.4247740Z [ 49%] Built target strings 2025-06-05T23:25:36.4249914Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/symbolize.dir/symbolize.cc.o 2025-06-05T23:25:36.4253653Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_proto.dir/internal/proto.cc.o 2025-06-05T23:25:36.4257406Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/civil_time.cc.o 2025-06-05T23:25:36.4260887Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/hash/CMakeFiles/hash.dir/internal/hash.cc.o 2025-06-05T23:25:36.4264623Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_commandlineflag.dir/commandlineflag.cc.o 2025-06-05T23:25:36.4268759Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/arg.cc.o 2025-06-05T23:25:36.4272717Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_fnmatch.dir/internal/fnmatch.cc.o 2025-06-05T23:25:36.4275245Z [ 49%] Linking CXX static library libabsl_log_internal_proto.a 2025-06-05T23:25:36.4276039Z [ 49%] Built target log_internal_proto 2025-06-05T23:25:36.4278558Z [ 49%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_distributions.dir/discrete_distribution.cc.o 2025-06-05T23:25:36.4281032Z [ 49%] Linking CXX static library libabsl_flags_commandlineflag.a 2025-06-05T23:25:36.4282096Z [ 49%] Linking CXX static library libabsl_symbolize.a 2025-06-05T23:25:36.4284298Z [ 50%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/clock.cc.o 2025-06-05T23:25:36.4286152Z [ 50%] Built target flags_commandlineflag 2025-06-05T23:25:36.4288317Z [ 50%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/duration.cc.o 2025-06-05T23:25:36.4292143Z [ 51%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/bind.cc.o 2025-06-05T23:25:36.4294323Z [ 51%] Built target symbolize 2025-06-05T23:25:36.4296851Z [ 51%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/extension.cc.o 2025-06-05T23:25:37.5971797Z [ 51%] Linking CXX static library libabsl_hash.a 2025-06-05T23:25:37.5972506Z [ 51%] Built target hash 2025-06-05T23:25:37.5974886Z [ 51%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_seed_material.dir/internal/seed_material.cc.o 2025-06-05T23:25:37.5977418Z [ 52%] Linking CXX static library libabsl_log_internal_fnmatch.a 2025-06-05T23:25:37.5978245Z [ 52%] Built target log_internal_fnmatch 2025-06-05T23:25:37.5980831Z [ 52%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/float_conversion.cc.o 2025-06-05T23:25:37.5984873Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_distributions.dir/gaussian_distribution.cc.o 2025-06-05T23:25:37.5989281Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/output.cc.o 2025-06-05T23:25:37.5993320Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/examine_stack.dir/internal/examine_stack.cc.o 2025-06-05T23:25:37.5997493Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_private_handle_accessor.dir/internal/private_handle_accessor.cc.o 2025-06-05T23:25:37.6001528Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/format.cc.o 2025-06-05T23:25:37.6005148Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/parser.cc.o 2025-06-05T23:25:37.6007745Z [ 53%] Linking CXX static library libabsl_random_internal_seed_material.a 2025-06-05T23:25:37.6008638Z [ 53%] Built target random_internal_seed_material 2025-06-05T23:25:37.6010802Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/time.cc.o 2025-06-05T23:25:37.6014447Z [ 53%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_pool_urbg.dir/internal/pool_urbg.cc.o 2025-06-05T23:25:37.6016912Z [ 53%] Linking CXX static library libabsl_random_distributions.a 2025-06-05T23:25:37.6017971Z [ 54%] Linking CXX static library libabsl_examine_stack.a 2025-06-05T23:25:37.6018713Z [ 54%] Built target random_distributions 2025-06-05T23:25:37.6019273Z [ 54%] Built target examine_stack 2025-06-05T23:25:37.6021773Z [ 54%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/failure_signal_handler.dir/failure_signal_handler.cc.o 2025-06-05T23:25:37.6024341Z [ 55%] Linking CXX static library libabsl_flags_private_handle_accessor.a 2025-06-05T23:25:37.6025235Z [ 55%] Built target flags_private_handle_accessor 2025-06-05T23:25:37.6026171Z [ 55%] Linking CXX static library libabsl_time.a 2025-06-05T23:25:37.6026808Z [ 55%] Built target time 2025-06-05T23:25:37.6028950Z [ 55%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_globals.dir/internal/globals.cc.o 2025-06-05T23:25:37.6033091Z [ 56%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/kernel_timeout_internal.dir/internal/kernel_timeout.cc.o 2025-06-05T23:25:37.6036884Z [ 56%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_entry.dir/log_entry.cc.o 2025-06-05T23:25:37.6039026Z [ 57%] Linking CXX static library libabsl_str_format_internal.a 2025-06-05T23:25:37.6039804Z [ 57%] Built target str_format_internal 2025-06-05T23:25:37.6041967Z [ 58%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_marshalling.dir/marshalling.cc.o 2025-06-05T23:25:37.6045394Z [ 58%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/crc32c.cc.o 2025-06-05T23:25:37.6047640Z [ 58%] Linking CXX static library libabsl_random_internal_pool_urbg.a 2025-06-05T23:25:37.6048519Z [ 58%] Built target random_internal_pool_urbg 2025-06-05T23:25:37.6050838Z [ 58%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/internal/crc_memcpy_fallback.cc.o 2025-06-05T23:25:37.6053157Z [ 58%] Linking CXX static library libabsl_failure_signal_handler.a 2025-06-05T23:25:37.6053989Z [ 58%] Built target failure_signal_handler 2025-06-05T23:25:37.6056625Z [ 58%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_distribution_test_util.dir/internal/chi_square.cc.o 2025-06-05T23:25:37.6059245Z [ 58%] Linking CXX static library libabsl_log_entry.a 2025-06-05T23:25:37.6059941Z [ 58%] Built target log_entry 2025-06-05T23:25:37.6062302Z [ 59%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/internal/crc_memcpy_x86_arm_combined.cc.o 2025-06-05T23:25:37.6067073Z [ 59%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/internal/crc_non_temporal_memcpy.cc.o 2025-06-05T23:25:37.6069607Z [ 60%] Linking CXX static library libabsl_log_internal_globals.a 2025-06-05T23:25:37.6070356Z [ 60%] Built target log_internal_globals 2025-06-05T23:25:37.6072458Z [ 60%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_sink.dir/log_sink.cc.o 2025-06-05T23:25:37.6074527Z [ 60%] Linking CXX static library libabsl_flags_marshalling.a 2025-06-05T23:25:37.6075665Z [ 60%] Linking CXX static library libabsl_kernel_timeout_internal.a 2025-06-05T23:25:37.6076494Z [ 60%] Built target flags_marshalling 2025-06-05T23:25:37.6079177Z [ 60%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_distribution_test_util.dir/internal/distribution_test_util.cc.o 2025-06-05T23:25:37.6081590Z [ 60%] Built target kernel_timeout_internal 2025-06-05T23:25:37.6083966Z [ 60%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_seed_sequences.dir/seed_sequences.cc.o 2025-06-05T23:25:37.6086226Z [ 60%] Linking CXX static library libabsl_log_sink.a 2025-06-05T23:25:37.6086902Z [ 60%] Built target log_sink 2025-06-05T23:25:37.6089155Z [ 60%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_format.dir/internal/log_format.cc.o 2025-06-05T23:25:37.6093089Z [ 60%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/barrier.cc.o 2025-06-05T23:25:37.6096977Z [ 60%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/blocking_counter.cc.o 2025-06-05T23:25:37.6101079Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/create_thread_identity.cc.o 2025-06-05T23:25:37.6103868Z [ 61%] Linking CXX static library libabsl_crc32c.a 2025-06-05T23:25:37.6104557Z [ 61%] Built target crc32c 2025-06-05T23:25:37.6105672Z [ 61%] Linking CXX static library libabsl_random_internal_distribution_test_util.a 2025-06-05T23:25:37.6108430Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_cord_state.dir/internal/crc_cord_state.cc.o 2025-06-05T23:25:37.6110542Z [ 61%] Built target random_internal_distribution_test_util 2025-06-05T23:25:39.0422920Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/futex_waiter.cc.o 2025-06-05T23:25:39.0425775Z [ 61%] Linking CXX static library libabsl_random_seed_sequences.a 2025-06-05T23:25:39.0426543Z [ 61%] Built target random_seed_sequences 2025-06-05T23:25:39.0428997Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/per_thread_sem.cc.o 2025-06-05T23:25:39.0433337Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/pthread_waiter.cc.o 2025-06-05T23:25:39.0435933Z [ 61%] Linking CXX static library libabsl_log_internal_format.a 2025-06-05T23:25:39.0438730Z [ 61%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/sem_waiter.cc.o 2025-06-05T23:25:39.0440951Z [ 61%] Built target log_internal_format 2025-06-05T23:25:39.0443397Z [ 62%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/stdcpp_waiter.cc.o 2025-06-05T23:25:39.0447584Z [ 62%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/waiter_base.cc.o 2025-06-05T23:25:39.0451525Z [ 62%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/win32_waiter.cc.o 2025-06-05T23:25:39.0455368Z [ 62%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/notification.cc.o 2025-06-05T23:25:39.0457514Z [ 63%] Linking CXX static library libabsl_crc_cord_state.a 2025-06-05T23:25:39.0458183Z [ 63%] Built target crc_cord_state 2025-06-05T23:25:39.0460168Z [ 63%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_internal.cc.o 2025-06-05T23:25:39.0463316Z [ 64%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/mutex.cc.o 2025-06-05T23:25:39.0466429Z [ 64%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree.cc.o 2025-06-05T23:25:39.0469201Z [ 64%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree_navigator.cc.o 2025-06-05T23:25:39.0472230Z [ 65%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree_reader.cc.o 2025-06-05T23:25:39.0474957Z [ 65%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_crc.cc.o 2025-06-05T23:25:39.0477634Z [ 65%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_consume.cc.o 2025-06-05T23:25:39.0479281Z [ 65%] Linking CXX static library libabsl_synchronization.a 2025-06-05T23:25:39.0479959Z [ 65%] Built target synchronization 2025-06-05T23:25:39.0481567Z [ 65%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_handle.dir/internal/cordz_handle.cc.o 2025-06-05T23:25:39.0484325Z [ 65%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/container/CMakeFiles/hashtablez_sampler.dir/internal/hashtablez_sampler.cc.o 2025-06-05T23:25:39.0487202Z [ 65%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_program_name.dir/internal/program_name.cc.o 2025-06-05T23:25:39.0490254Z [ 66%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/container/CMakeFiles/hashtablez_sampler.dir/internal/hashtablez_sampler_force_weak_definition.cc.o 2025-06-05T23:25:39.0493165Z [ 66%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/vlog_config_internal.dir/internal/vlog_config.cc.o 2025-06-05T23:25:39.0494836Z [ 66%] Linking CXX static library libabsl_cord_internal.a 2025-06-05T23:25:39.0495347Z [ 66%] Built target cord_internal 2025-06-05T23:25:39.0495912Z [ 66%] Linking CXX static library libabsl_cordz_handle.a 2025-06-05T23:25:39.0496414Z [ 66%] Built target cordz_handle 2025-06-05T23:25:39.0498025Z [ 66%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_info.dir/internal/cordz_info.cc.o 2025-06-05T23:25:39.0499631Z [ 66%] Linking CXX static library libabsl_flags_program_name.a 2025-06-05T23:25:39.0500171Z [ 66%] Built target flags_program_name 2025-06-05T23:25:39.0500789Z [ 66%] Linking CXX static library libabsl_hashtablez_sampler.a 2025-06-05T23:25:39.0502467Z [ 67%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_config.dir/usage_config.cc.o 2025-06-05T23:25:39.0503834Z [ 67%] Built target hashtablez_sampler 2025-06-05T23:25:39.0504397Z [ 68%] Linking CXX static library libabsl_cordz_info.a 2025-06-05T23:25:39.0504913Z [ 68%] Built target cordz_info 2025-06-05T23:25:39.0506424Z [ 68%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord.dir/cord.cc.o 2025-06-05T23:25:39.0509093Z [ 68%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_sample_token.dir/internal/cordz_sample_token.cc.o 2025-06-05T23:25:39.0511720Z [ 69%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord.dir/cord_buffer.cc.o 2025-06-05T23:25:39.0514402Z [ 69%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord.dir/cord_analysis.cc.o 2025-06-05T23:25:39.0516264Z [ 70%] Linking CXX static library libabsl_vlog_config_internal.a 2025-06-05T23:25:39.0516951Z [ 70%] Built target vlog_config_internal 2025-06-05T23:25:39.0518484Z [ 70%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_globals.dir/globals.cc.o 2025-06-05T23:25:39.0520290Z [ 70%] Linking CXX static library libabsl_flags_config.a 2025-06-05T23:25:39.0520924Z [ 70%] Built target flags_config 2025-06-05T23:25:39.0521736Z [ 70%] Linking CXX static library libabsl_cordz_sample_token.a 2025-06-05T23:25:39.0523811Z [ 70%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_internal.dir/internal/flag.cc.o 2025-06-05T23:25:39.0525441Z [ 70%] Built target cordz_sample_token 2025-06-05T23:25:39.0526100Z [ 70%] Linking CXX static library libabsl_cord.a 2025-06-05T23:25:39.0526973Z [ 70%] Linking CXX static library libabsl_log_globals.a 2025-06-05T23:25:39.0527616Z [ 70%] Built target cord 2025-06-05T23:25:39.0528005Z [ 70%] Built target log_globals 2025-06-05T23:25:39.0530086Z [ 70%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/status/CMakeFiles/status.dir/internal/status_internal.cc.o 2025-06-05T23:25:39.0533122Z [ 70%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/status/CMakeFiles/status.dir/status.cc.o 2025-06-05T23:25:39.0535845Z [ 70%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_log_sink_set.dir/internal/log_sink_set.cc.o 2025-06-05T23:25:40.3786314Z [ 70%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/status/CMakeFiles/status.dir/status_payload_printer.cc.o 2025-06-05T23:25:40.3790125Z [ 71%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_initialize.dir/initialize.cc.o 2025-06-05T23:25:40.3794012Z [ 71%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/container/CMakeFiles/raw_hash_set.dir/internal/raw_hash_set.cc.o 2025-06-05T23:25:40.3796439Z [ 71%] Linking CXX static library libabsl_flags_internal.a 2025-06-05T23:25:40.3797201Z [ 71%] Built target flags_internal 2025-06-05T23:25:40.3798030Z [ 71%] Linking CXX static library libabsl_log_initialize.a 2025-06-05T23:25:40.3798761Z [ 71%] Built target log_initialize 2025-06-05T23:25:40.3799573Z [ 71%] Linking CXX static library libabsl_raw_hash_set.a 2025-06-05T23:25:40.3800645Z [ 71%] Linking CXX static library libabsl_log_internal_log_sink_set.a 2025-06-05T23:25:40.3801459Z [ 71%] Built target raw_hash_set 2025-06-05T23:25:40.3801981Z [ 71%] Built target log_internal_log_sink_set 2025-06-05T23:25:40.3804324Z [ 71%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_reflection.dir/reflection.cc.o 2025-06-05T23:25:40.3808115Z [ 71%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_message.dir/internal/log_message.cc.o 2025-06-05T23:25:40.3810609Z [ 72%] Linking CXX static library libabsl_status.a 2025-06-05T23:25:40.3811286Z [ 72%] Built target status 2025-06-05T23:25:40.3813385Z [ 72%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/status/CMakeFiles/statusor.dir/statusor.cc.o 2025-06-05T23:25:40.3815536Z [ 72%] Linking CXX static library libabsl_statusor.a 2025-06-05T23:25:40.3816240Z [ 72%] Built target statusor 2025-06-05T23:25:40.3817057Z [ 72%] Linking CXX static library libabsl_log_internal_message.a 2025-06-05T23:25:40.3817844Z [ 72%] Built target log_internal_message 2025-06-05T23:25:40.3820181Z [ 73%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_check_op.dir/internal/check_op.cc.o 2025-06-05T23:25:40.3824048Z [ 73%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/die_if_null.dir/die_if_null.cc.o 2025-06-05T23:25:40.3828816Z [ 74%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/arena.cc.o 2025-06-05T23:25:40.3834777Z [ 74%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/arenastring.cc.o 2025-06-05T23:25:40.3840299Z [ 74%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/bytestream.cc.o 2025-06-05T23:25:40.3845959Z [ 74%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/coded_stream.cc.o 2025-06-05T23:25:40.3849254Z [ 75%] Linking CXX static library libabsl_flags_reflection.a 2025-06-05T23:25:40.3850017Z [ 75%] Built target flags_reflection 2025-06-05T23:25:40.3853234Z [ 75%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/common.cc.o 2025-06-05T23:25:40.3856460Z [ 75%] Linking CXX static library libabsl_die_if_null.a 2025-06-05T23:25:40.3857544Z [ 75%] Linking CXX static library libabsl_log_internal_check_op.a 2025-06-05T23:25:40.3858329Z [ 75%] Built target die_if_null 2025-06-05T23:25:40.3861585Z [ 76%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/extension_set.cc.o 2025-06-05T23:25:40.3864570Z [ 76%] Built target log_internal_check_op 2025-06-05T23:25:40.3869501Z [ 76%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_enum_util.cc.o 2025-06-05T23:25:40.3874091Z [ 76%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_usage_internal.dir/internal/usage.cc.o 2025-06-05T23:25:40.3879273Z [ 76%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_message_table_driven_lite.cc.o 2025-06-05T23:25:40.3883970Z [ 76%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_flags.dir/flags.cc.o 2025-06-05T23:25:40.3888638Z [ 76%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_message_util.cc.o 2025-06-05T23:25:40.3894661Z [ 77%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/implicit_weak_message.cc.o 2025-06-05T23:25:40.3900393Z [ 77%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/int128.cc.o 2025-06-05T23:25:40.3903691Z [ 78%] Linking CXX static library libabsl_log_flags.a 2025-06-05T23:25:40.3907235Z [ 78%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/io_win32.cc.o 2025-06-05T23:25:40.3912741Z [ 78%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/message_lite.cc.o 2025-06-05T23:25:40.3915723Z [ 78%] Built target log_flags 2025-06-05T23:25:40.3919084Z [ 78%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/parse_context.cc.o 2025-06-05T23:25:40.3922394Z [ 78%] Linking CXX static library libabsl_flags_usage_internal.a 2025-06-05T23:25:40.3923214Z [ 78%] Built target flags_usage_internal 2025-06-05T23:25:40.3926372Z [ 79%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/repeated_field.cc.o 2025-06-05T23:25:40.3930700Z [ 79%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/bitmap256.cc.o 2025-06-05T23:25:40.3933824Z [ 80%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/bitstate.cc.o 2025-06-05T23:25:42.0577605Z [ 80%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/status.cc.o 2025-06-05T23:25:42.0583479Z [ 80%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/statusor.cc.o 2025-06-05T23:25:42.0589489Z [ 80%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/stringpiece.cc.o 2025-06-05T23:25:42.0595253Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/stringprintf.cc.o 2025-06-05T23:25:42.0599573Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/compile.cc.o 2025-06-05T23:25:42.0602650Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/dfa.cc.o 2025-06-05T23:25:42.0607334Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/structurally_valid.cc.o 2025-06-05T23:25:42.0611791Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/filtered_re2.cc.o 2025-06-05T23:25:42.0615343Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/strutil.cc.o 2025-06-05T23:25:42.0617692Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_usage.dir/usage.cc.o 2025-06-05T23:25:42.0620056Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/time.cc.o 2025-06-05T23:25:42.0622264Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/mimics_pcre.cc.o 2025-06-05T23:25:42.0624599Z [ 81%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/wire_format_lite.cc.o 2025-06-05T23:25:42.0626887Z [ 82%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/nfa.cc.o 2025-06-05T23:25:42.0628439Z [ 82%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/onepass.cc.o 2025-06-05T23:25:42.0629999Z [ 82%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/parse.cc.o 2025-06-05T23:25:42.0630993Z [ 82%] Linking CXX static library libabsl_flags_usage.a 2025-06-05T23:25:42.0632833Z [ 83%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream.cc.o 2025-06-05T23:25:42.0634423Z [ 83%] Built target flags_usage 2025-06-05T23:25:42.0636173Z [ 83%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream_impl.cc.o 2025-06-05T23:25:42.0638451Z [ 83%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/perl_groups.cc.o 2025-06-05T23:25:42.0640063Z [ 84%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/prefilter.cc.o 2025-06-05T23:25:42.0641787Z [ 84%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_parse.dir/parse.cc.o 2025-06-05T23:25:42.0643557Z [ 84%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/prefilter_tree.cc.o 2025-06-05T23:25:42.0648681Z [ 84%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream_impl_lite.cc.o 2025-06-05T23:25:42.0652962Z [ 84%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/prog.cc.o 2025-06-05T23:25:42.0655937Z [ 84%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/re2.cc.o 2025-06-05T23:25:42.0658875Z [ 84%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/regexp.cc.o 2025-06-05T23:25:42.0662161Z [ 85%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/set.cc.o 2025-06-05T23:25:42.0665960Z [ 85%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/builtin_pb/sentencepiece.pb.cc.o 2025-06-05T23:25:42.0669294Z [ 85%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/simplify.cc.o 2025-06-05T23:25:42.0672937Z [ 85%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/builtin_pb/sentencepiece_model.pb.cc.o 2025-06-05T23:25:42.0675436Z [ 85%] Linking CXX static library libabsl_flags_parse.a 2025-06-05T23:25:42.0676145Z [ 85%] Built target flags_parse 2025-06-05T23:25:42.0678346Z [ 86%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/bpe_model.cc.o 2025-06-05T23:25:42.0681740Z [ 86%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/tostring.cc.o 2025-06-05T23:25:42.0684947Z [ 86%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/unicode_casefold.cc.o 2025-06-05T23:25:42.0688189Z [ 86%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/unicode_groups.cc.o 2025-06-05T23:25:42.0691765Z [ 86%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/char_model.cc.o 2025-06-05T23:25:42.0695389Z [ 86%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/error.cc.o 2025-06-05T23:25:42.0698698Z [ 87%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/util/rune.cc.o 2025-06-05T23:25:43.3385587Z [ 87%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/filesystem.cc.o 2025-06-05T23:25:43.3389223Z [ 87%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/util/strutil.cc.o 2025-06-05T23:25:43.3392661Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/model_factory.cc.o 2025-06-05T23:25:43.3396492Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/model_interface.cc.o 2025-06-05T23:25:43.3400295Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/normalizer.cc.o 2025-06-05T23:25:43.3404079Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/sentencepiece_processor.cc.o 2025-06-05T23:25:43.3407729Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/unigram_model.cc.o 2025-06-05T23:25:43.3409812Z [ 88%] Linking CXX static library libre2.a 2025-06-05T23:25:43.3410373Z [ 88%] Built target re2 2025-06-05T23:25:43.3412138Z [ 88%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/bpe_tokenizer_base.cpp.o 2025-06-05T23:25:43.3415409Z [ 89%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/util.cc.o 2025-06-05T23:25:43.3419005Z [ 89%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/word_model.cc.o 2025-06-05T23:25:43.3422364Z [ 89%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/hf_tokenizer.cpp.o 2025-06-05T23:25:43.3426891Z [ 89%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/absl/flags/flag.cc.o 2025-06-05T23:25:43.3431398Z [ 89%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/llama2c_tokenizer.cpp.o 2025-06-05T23:25:43.3434561Z [ 89%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/pre_tokenizer.cpp.o 2025-06-05T23:25:43.3437645Z [ 90%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/re2_regex.cpp.o 2025-06-05T23:25:43.3440710Z [ 90%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/regex.cpp.o 2025-06-05T23:25:43.3443539Z [ 90%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/sentencepiece.cpp.o 2025-06-05T23:25:43.3445365Z [ 90%] Linking CXX shared library libsentencepiece.so 2025-06-05T23:25:43.3447300Z [ 90%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/tiktoken.cpp.o 2025-06-05T23:25:43.3450098Z [ 91%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/src/token_decoder.cpp.o 2025-06-05T23:25:43.3453478Z [ 91%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/third-party/llama.cpp-unicode/src/unicode-data.cpp.o 2025-06-05T23:25:43.3457105Z [ 91%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/CMakeFiles/tokenizers.dir/third-party/llama.cpp-unicode/src/unicode.cpp.o 2025-06-05T23:25:43.3459070Z [ 91%] Built target sentencepiece 2025-06-05T23:25:43.3461376Z [ 91%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/builder.cc.o 2025-06-05T23:25:43.3465294Z [ 91%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/unicode_script.cc.o 2025-06-05T23:25:43.3468855Z [ 92%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/trainer_factory.cc.o 2025-06-05T23:25:43.3472778Z [ 92%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/trainer_interface.cc.o 2025-06-05T23:25:43.3476750Z [ 92%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/unigram_model_trainer.cc.o 2025-06-05T23:25:43.3480074Z /pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode.cpp:245:29: warning: 'codecvt_utf8' is deprecated [-Wdeprecated-declarations] 2025-06-05T23:25:43.3481956Z 245 | std::wstring_convert> conv; 2025-06-05T23:25:43.3482642Z | ^ 2025-06-05T23:25:43.3484195Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/codecvt:194:28: note: 'codecvt_utf8' has been explicitly marked deprecated here 2025-06-05T23:25:43.3486240Z 194 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 codecvt_utf8 : public __codecvt_utf8<_Elem> { 2025-06-05T23:25:43.3487253Z | ^ 2025-06-05T23:25:43.3488666Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:942:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17' 2025-06-05T23:25:43.3490199Z 942 | # define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED 2025-06-05T23:25:43.3490867Z | ^ 2025-06-05T23:25:43.3492122Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:915:49: note: expanded from macro '_LIBCPP_DEPRECATED' 2025-06-05T23:25:43.3493639Z 915 | # define _LIBCPP_DEPRECATED __attribute__((__deprecated__)) 2025-06-05T23:25:43.3494349Z | ^ 2025-06-05T23:25:43.3496374Z /pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode.cpp:245:8: warning: 'wstring_convert>' is deprecated [-Wdeprecated-declarations] 2025-06-05T23:25:43.3498344Z 245 | std::wstring_convert> conv; 2025-06-05T23:25:43.3498950Z | ^ 2025-06-05T23:25:43.3500538Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/locale:3114:28: note: 'wstring_convert>' has been explicitly marked deprecated here 2025-06-05T23:25:43.3502492Z 3114 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 wstring_convert { 2025-06-05T23:25:43.3503285Z | ^ 2025-06-05T23:25:43.3504598Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:942:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17' 2025-06-05T23:25:43.3506398Z 942 | # define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED 2025-06-05T23:25:43.3507088Z | ^ 2025-06-05T23:25:43.3508440Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:915:49: note: expanded from macro '_LIBCPP_DEPRECATED' 2025-06-05T23:25:43.3510096Z 915 | # define _LIBCPP_DEPRECATED __attribute__((__deprecated__)) 2025-06-05T23:25:43.3510828Z | ^ 2025-06-05T23:25:43.3511401Z 2 warnings generated. 2025-06-05T23:25:43.3512150Z [ 92%] Linking CXX static library libtokenizers.a 2025-06-05T23:25:43.3514574Z [ 92%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_encode.dir/spm_encode_main.cc.o 2025-06-05T23:25:43.3516505Z [ 92%] Built target tokenizers 2025-06-05T23:25:43.3518843Z [ 92%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/word_model_trainer.cc.o 2025-06-05T23:25:43.3522647Z [ 92%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_decode.dir/spm_decode_main.cc.o 2025-06-05T23:25:44.7025717Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/builder.cc:47:15: warning: unused variable 'kMaxUnicode' [-Wunused-const-variable] 2025-06-05T23:25:44.7026641Z 47 | constexpr int kMaxUnicode = 0x10FFFF; 2025-06-05T23:25:44.7026965Z | ^~~~~~~~~~~ 2025-06-05T23:25:44.7027826Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/builder.cc:49:36: warning: unused variable 'kDefaultNormalizerName' [-Wunused-const-variable] 2025-06-05T23:25:44.7028896Z 49 | static constexpr absl::string_view kDefaultNormalizerName = "nfkc"; 2025-06-05T23:25:44.7029329Z | ^~~~~~~~~~~~~~~~~~~~~~ 2025-06-05T23:25:44.7029656Z 2 warnings generated. 2025-06-05T23:25:44.7031039Z [ 93%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/char_model_trainer.cc.o 2025-06-05T23:25:44.7033058Z [ 93%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/bpe_model_trainer.cc.o 2025-06-05T23:25:44.7035107Z [ 93%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/sentencepiece_trainer.cc.o 2025-06-05T23:25:44.7037122Z [ 93%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_export_vocab.dir/spm_export_vocab_main.cc.o 2025-06-05T23:25:44.7038482Z [ 94%] Linking CXX executable spm_decode 2025-06-05T23:25:44.7038886Z [ 94%] Built target spm_decode 2025-06-05T23:25:44.7040153Z [ 94%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/pretokenizer_for_training.cc.o 2025-06-05T23:25:44.7041357Z [ 94%] Linking CXX executable spm_encode 2025-06-05T23:25:44.7042293Z [ 94%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/runner.cpp.o 2025-06-05T23:25:44.7043060Z [ 94%] Built target spm_encode 2025-06-05T23:25:44.7044265Z [ 95%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/examples/models/llama/tokenizer/llama_tiktoken.cpp.o 2025-06-05T23:25:44.7046269Z [ 95%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:25:44.7048208Z [ 95%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/runner/text_decoder_runner.cpp.o 2025-06-05T23:25:44.7049365Z [ 96%] Linking CXX executable spm_export_vocab 2025-06-05T23:25:44.7050541Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_trainer.cc:207:16: warning: 'done' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] 2025-06-05T23:25:44.7051665Z 207 | virtual bool done() const { return iter_ == end_; } 2025-06-05T23:25:44.7052028Z | ^ 2025-06-05T23:25:44.7052791Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_trainer.h:52:16: note: overridden virtual function is here 2025-06-05T23:25:44.7053628Z 52 | virtual bool done() const = 0; 2025-06-05T23:25:44.7053917Z | ^ 2025-06-05T23:25:44.7054171Z 1 warning generated. 2025-06-05T23:25:44.7054585Z [ 96%] Linking CXX shared library libsentencepiece_train.so 2025-06-05T23:25:44.7056144Z [ 96%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/runner/text_prefiller.cpp.o 2025-06-05T23:25:44.7057179Z [ 96%] Built target spm_export_vocab 2025-06-05T23:25:44.7058312Z [ 96%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/sampler/sampler.cpp.o 2025-06-05T23:25:44.7059310Z [ 96%] Built target sentencepiece_train 2025-06-05T23:25:44.7060540Z [ 97%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/bpe_tokenizer_base.cpp.o 2025-06-05T23:25:44.7062520Z [ 97%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/hf_tokenizer.cpp.o 2025-06-05T23:25:44.7064486Z [ 97%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/llama2c_tokenizer.cpp.o 2025-06-05T23:25:44.7066758Z [ 97%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/pre_tokenizer.cpp.o 2025-06-05T23:25:44.7068678Z [ 98%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/re2_regex.cpp.o 2025-06-05T23:25:44.7070673Z [ 98%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/regex.cpp.o 2025-06-05T23:25:44.7072550Z [ 98%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/tiktoken.cpp.o 2025-06-05T23:25:44.7074458Z [ 98%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/token_decoder.cpp.o 2025-06-05T23:25:44.7076580Z [ 98%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode-data.cpp.o 2025-06-05T23:25:44.7078752Z [ 98%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_normalize.dir/spm_normalize_main.cc.o 2025-06-05T23:25:44.7080662Z [ 98%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_train.dir/spm_train_main.cc.o 2025-06-05T23:25:44.7082762Z [ 99%] Building CXX object /pytorch/executorch/cmake-out-android-x86_64/examples/models/llama/runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode.cpp.o 2025-06-05T23:25:44.7084050Z [ 99%] Linking CXX executable spm_normalize 2025-06-05T23:25:44.7084396Z [ 99%] Built target spm_normalize 2025-06-05T23:25:44.7084779Z [ 99%] Linking CXX executable spm_train 2025-06-05T23:25:44.7085698Z /pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode.cpp:245:29: warning: 'codecvt_utf8' is deprecated [-Wdeprecated-declarations] 2025-06-05T23:25:44.7086704Z 245 | std::wstring_convert> conv; 2025-06-05T23:25:44.7087066Z | ^ 2025-06-05T23:25:44.7087883Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/codecvt:194:28: note: 'codecvt_utf8' has been explicitly marked deprecated here 2025-06-05T23:25:44.7088947Z 194 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 codecvt_utf8 : public __codecvt_utf8<_Elem> { 2025-06-05T23:25:44.7089478Z | ^ 2025-06-05T23:25:44.7090218Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:942:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17' 2025-06-05T23:25:44.7091041Z 942 | # define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED 2025-06-05T23:25:44.7091425Z | ^ 2025-06-05T23:25:44.7092144Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:915:49: note: expanded from macro '_LIBCPP_DEPRECATED' 2025-06-05T23:25:44.7092938Z 915 | # define _LIBCPP_DEPRECATED __attribute__((__deprecated__)) 2025-06-05T23:25:44.7093338Z | ^ 2025-06-05T23:25:44.7094316Z /pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode.cpp:245:8: warning: 'wstring_convert>' is deprecated [-Wdeprecated-declarations] 2025-06-05T23:25:44.7095358Z 245 | std::wstring_convert> conv; 2025-06-05T23:25:44.7095722Z | ^ 2025-06-05T23:25:44.7096548Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/locale:3114:28: note: 'wstring_convert>' has been explicitly marked deprecated here 2025-06-05T23:25:44.7097596Z 3114 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 wstring_convert { 2025-06-05T23:25:44.7098084Z | ^ 2025-06-05T23:26:30.1504762Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:942:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17' 2025-06-05T23:26:30.1505830Z 942 | # define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED 2025-06-05T23:26:30.1506446Z | ^ 2025-06-05T23:26:30.1507646Z /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1/__config:915:49: note: expanded from macro '_LIBCPP_DEPRECATED' 2025-06-05T23:26:30.1508675Z 915 | # define _LIBCPP_DEPRECATED __attribute__((__deprecated__)) 2025-06-05T23:26:30.1509081Z | ^ 2025-06-05T23:26:30.1509377Z 2 warnings generated. 2025-06-05T23:26:30.1510156Z [ 99%] Linking CXX static library libllama_runner.a 2025-06-05T23:26:30.1510521Z [ 99%] Built target spm_train 2025-06-05T23:26:30.1510802Z [ 99%] Built target llama_runner 2025-06-05T23:26:30.1511317Z [ 99%] Building CXX object CMakeFiles/executorch_jni.dir/jni/jni_layer.cpp.o 2025-06-05T23:26:30.1511991Z [ 99%] Building CXX object CMakeFiles/executorch_jni.dir/jni/log.cpp.o 2025-06-05T23:26:30.1512704Z [ 99%] Building CXX object CMakeFiles/executorch_jni.dir/jni/jni_layer_runtime.cpp.o 2025-06-05T23:26:30.1513520Z [ 99%] Building CXX object CMakeFiles/executorch_jni.dir/jni/jni_layer_llama.cpp.o 2025-06-05T23:26:30.1514168Z [100%] Linking CXX shared library libexecutorch_jni.so 2025-06-05T23:26:30.1514606Z [100%] Built target executorch_jni 2025-06-05T23:26:30.1514938Z + local SO_STAGE_DIR=cmake-out-android-so/x86_64 2025-06-05T23:26:30.1515292Z + mkdir -p cmake-out-android-so/x86_64 2025-06-05T23:26:30.1515912Z + cp cmake-out-android-x86_64/extension/android/libexecutorch_jni.so cmake-out-android-so/x86_64/libexecutorch.so 2025-06-05T23:26:30.1516523Z + '[' -n '' ']' 2025-06-05T23:26:30.1516725Z + '[' -n '' ']' 2025-06-05T23:26:30.1516939Z + build_aar 2025-06-05T23:26:30.1517144Z + '[' Release == Release ']' 2025-06-05T23:26:30.1517744Z + find cmake-out-android-so -type f -name '*.so' -exec /opt/ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip '{}' ';' 2025-06-05T23:26:30.1518362Z + pushd extension/android/ 2025-06-05T23:26:30.1518711Z /pytorch/executorch/extension/android /pytorch/executorch 2025-06-05T23:26:30.1519090Z + ANDROID_HOME=/opt/android/sdk 2025-06-05T23:26:30.1519357Z + ./gradlew build 2025-06-05T23:26:30.1519780Z Downloading https://services.gradle.org/distributions/gradle-8.11.1-bin.zip 2025-06-05T23:26:30.1520384Z .............10%.............20%.............30%.............40%.............50%.............60%.............70%.............80%.............90%.............100% 2025-06-05T23:26:30.1520763Z 2025-06-05T23:26:30.1520859Z Welcome to Gradle 8.11.1! 2025-06-05T23:26:30.1521020Z 2025-06-05T23:26:30.1521149Z Here are the highlights of this release: 2025-06-05T23:26:30.1521498Z - Parallel load and store for Configuration Cache 2025-06-05T23:26:30.1521918Z - Java compilation errors at the end of the build output 2025-06-05T23:26:30.1522329Z - Consolidated report for warnings and deprecations 2025-06-05T23:26:30.1522597Z 2025-06-05T23:26:30.1522811Z For more details see https://docs.gradle.org/8.11.1/release-notes.html 2025-06-05T23:26:30.1523135Z 2025-06-05T23:26:30.1523324Z Starting a Gradle Daemon (subsequent builds will be faster) 2025-06-05T23:26:30.1523605Z 2025-06-05T23:26:30.1523609Z 2025-06-05T23:26:30.1530012Z > Starting Daemon> IDLE<-------------> 0% INITIALIZING [29ms]<-------------> 0% INITIALIZING [129ms]<-------------> 0% INITIALIZING [229ms]<-------------> 0% INITIALIZING [329ms]<-------------> 0% INITIALIZING [433ms]<-------------> 0% INITIALIZING [529ms]> Evaluating settings<-------------> 0% INITIALIZING [629ms]<-------------> 0% INITIALIZING [729ms]<-------------> 0% INITIALIZING [829ms]<-------------> 0% INITIALIZING [929ms]<-------------> 0% INITIALIZING [1s]<-------------> 0% INITIALIZING [2s]> Evaluating settings > Resolve dependencies of detachedConfiguration1> Evaluating settings > Resolve dependencies of detachedConfiguration1 > org.gr> Evaluating settings > Resolve dependencies of detachedConfiguration1> Evaluating settings<-------------> 0% INITIALIZING [3s]> Evaluating settings > Resolve dependencies of classpath > foojay-resolver-0.7> Evaluating settings > Resolve dependencies of classpath > gson-2.9.1.pom> Evaluating settings > Resolve dependencies of classpath > gson-parent-2.9.1.p<-------------> 0% INITIALIZING [4s]> Evaluating settings > Resolve dependencies of classpath> Evaluating settings > Resolve dependencies of classpath > oss-parent-9.pom 2025-06-05T23:26:30.1541199Z > Evaluating settings > Resolve files of configuration 'classpath' > gson-2.9.1> Evaluating settings > Resolve files of configuration 'classpath' > foojay-res> Evaluating settings > Resolve files of configuration 'classpath' > Resolve fi> Evaluating settings > Resolve files of configuration 'classpath' > Resolve fi> Evaluating settings > Resolve files of configuration 'classpath' > ExternalDe> Evaluating settings > Resolve files of configuration 'classpath' > ExternalDe> IDLE> Evaluating settings<-------------> 0% CONFIGURING [4s]> IDLE<-------------> 0% CONFIGURING [5s]> root project<======-------> 50% CONFIGURING [5s]> :executorch_android<======-------> 50% CONFIGURING [6s]> :executorch_android > Resolve dependencies of detachedConfiguration1 > com.an> :executorch_android > Resolve dependencies of detachedConfiguration2 > com.va> :executorch_android > Resolve dependencies of detachedConfiguration3 > org.je> :executorch_android> :executorch_android > Resolve dependencies of classpath > gradle-maven-publis> :executorch_android > Resolve dependencies of classpath > gradle-8.9.0.module 2025-06-05T23:26:30.1546252Z 2025-06-05T23:26:30.1634598Z > :executorch_android > Resolve dependencies of classpath > gradle-settings-api> :executorch_android > Resolve dependencies of classpath > sdk-common-31.9.0.p> :executorch_android > Resolve dependencies of classpath > aapt2-proto-8.9.0-1> :executorch_android > Resolve dependencies of classpath > ddmlib-31.9.0.pom> :executorch_android > Resolve dependencies of classpath > databinding-compile> :executorch_android > Resolve dependencies of classpath > lint-model-31.9.0.p> :executorch_android > Resolve dependencies of classpath > gradle-settings-api> :executorch_android > Resolve dependencies of classpath > databinding-common-> :executorch_android > Resolve dependencies of classpath > builder-test-api-8.> :executorch_android > Resolve dependencies of classpath > android-device-prov> :executorch_android > Resolve dependencies of classpath > android-test-plugin<======-------> 50% CONFIGURING [7s]> :executorch_android > Resolve dependencies of classpath > android-test-plugin> :executorch_android > Resolve dependencies of classpath > kotlin-stdlib-jdk8-> :executorch_android > Resolve dependencies of classpath > httpcomponents-clie> :executorch_android > Resolve dependencies of classpath > ow2-1.5.1.pom> :executorch_android > Resolve dependencies of classpath > asm-9.7.pom> :executorch_android > Resolve dependencies of classpath > bcpkix-jdk18on-1.79> :executorch_android > Resolve dependencies of classpath > jopt-simple-4.9.pom> :executorch_android > Resolve dependencies of classpath > jaxb-runtime-2.3.2.> :executorch_android > Resolve dependencies of classpath > bundletool-1.17.2.p> :executorch_android > Resolve dependencies of classpath > apache-31.pom> :executorch_android > Resolve dependencies of classpath > javapoet-1.10.0.pom> :executorch_android > Resolve dependencies of classpath > protobuf-java-3.22.> :executorch_android > Resolve dependencies of classpath > jaxb-runtime-parent> :executorch_android > Resolve dependencies of classpath > apache-18.pom> :executorch_android > Resolve dependencies of classpath > grpc-netty-1.57.0.p> :executorch_android > Resolve dependencies of classpath > jaxb-parent-2.3.2.p> :executorch_android > Resolve dependencies of classpath > grpc-protobuf-1.57.> :executorch_android > Resolve dependencies of classpath > flatbuffers-java-1.> :executorch_android > Resolve dependencies of classpath > builder-model-8.9.0> :executorch_android > Resolve dependencies of classpath > tink-1.7.0.pom> :executorch_android > Resolve dependencies of classpath > jaxb-bom-ext-2.3.2.> IDLE> :executorch_android > Resolve dependencies of classpath > gradle-api-8.9.0.mo> :executorch_android > Resolve dependencies of classpath > jaxb-bom-2.3.2.pom> IDLE> IDLE> :executorch_android > Resolve dependencies of classpath > central-portal-0.31> :executorch_android > Resolve dependencies of classpath > nexus-0.31.0.pom> IDLE> :executorch_android > Resolve dependencies of classpath > kotlin-gradle-plugi<======-------> 50% CONFIGURING [8s]> :executorch_android > Resolve dependencies of classpath> :executorch_android > Resolve dependencies of classpath > protobuf-parent-3.2> :executorch_android > Resolve dependencies of classpath > kxml2-2.3.0.pom> :executorch_android > Resolve dependencies of classpath > javax.inject-1.pom> :executorch_android > Resolve dependencies of classpath> IDLE> :executorch_android > Resolve dependencies of classpath > httpcomponents-core> :executorch_android > Resolve dependencies of classpath > apache-23.pom> :executorch_android > Resolve dependencies of classpath > httpcomponents-pare> IDLE> :executorch_android > Resolve dependencies of classpath > apache-21.pom> :executorch_android > Resolve dependencies of classpath > jimfs-1.1.pom> :executorch_android > Resolve dependencies of classpath> :executorch_android > Resolve dependencies of classpath > httpclient-4.5.14.p<======-------> 50% CONFIGURING [9s]> :executorch_android > Resolve dependencies of classpath > httpcomponents-clie> :executorch_android > Resolve dependencies of classpath > juniversalchardet-1> :executorch_android > Resolve dependencies of classpath> :executorch_android > Resolve dependencies of classpath > grpc-netty-1.57.2.p> :executorch_android > Resolve dependencies of classpath > grpc-stub-1.57.2.po> :executorch_android > Resolve dependencies of classpath > javax.annotation-ap> :executorch_android > Resolve dependencies of classpath > jvnet-parent-3.pom> :executorch_android > Resolve dependencies of classpath > kotlin-stdlib-jdk7-> :executorch_android > Resolve dependencies of classpath > bcutil-jdk18on-1.79<======-------> 50% CONFIGURING [10s]> :executorch_android > Resolve dependencies of classpath > jaxb-txw-parent-2.3> :executorch_android > Resolve dependencies of classpath > FastInfoset-1.2.16.> :executorch_android > Resolve dependencies of classpath > jakarta.xml.bind-ap> :executorch_android > Resolve dependencies of classpath > all-1.2.1.pom> IDLE> :executorch_android > Resolve dependencies of classpath > istack-commons-3.0.> IDLE> :executorch_android > Resolve dependencies of classpath > project-1.0.2.pom> :executorch_android > Resolve dependencies of classpath > auto-value-annotati> :executorch_android > Resolve dependencies of classpath > jose4j-0.9.5.pom> :executorch_android > Resolve dependencies of classpath > error_prone_annotat> :executorch_android > Resolve dependencies of classpath > slf4j-api-1.7.30.po> :executorch_android > Resolve dependencies of classpath > auto-value-parent-1> IDLE> IDLE> IDLE> :executorch_android > Resolve dependencies of classpath > jdom2-2.0.6.pom> :executorch_android > Resolve dependencies of classpath > error_prone_annotat> :executorch_android > Resolve dependencies of classpath> :executorch_android > Resolve dependencies of classpath > jsr305-3.0.2.pom> :executorch_android > Resolve dependencies of classpath > checker-qual-2.5.8.> :executorch_android > Resolve dependencies of classpath > signflinger-8.9.0.p> :executorch_android > Resolve dependencies of classpath > zipflinger-8.9.0.po> :executorch_android > Resolve dependencies of classpath > tracker-31.9.0.pom> :executorch_android > Resolve dependencies of classpath > manifest-merger-31.<======-------> 50% CONFIGURING [11s]> IDLE> :executorch_android > Resolve dependencies of classpath > converter-scalars-2> :executorch_android > Resolve dependencies of classpath > retrofit-2.11.0.pom> IDLE> :executorch_android > Resolve dependencies of classpath > kotlin-gradle-plugi> :executorch_android > Resolve dependencies of classpath > kotlin-gradle-plugi> :executorch_android > Resolve dependencies of classpath > kotlin-compiler-emb> :executorch_android > Resolve dependencies of classpath > kotlin-util-klib-1.> IDLE> IDLE> IDLE> :executorch_android > Resolve dependencies of classpath > kotlin-scripting-co> :executorch_android > Resolve dependencies of classpath> :executorch_android > Resolve dependencies of classpath > error_prone_parent-> :executorch_android > Resolve dependencies of classpath> :executorch_android > Resolve dependencies of classpath > failureaccess-1.0.1> :executorch_android > Resolve dependencies of classpath > commons-parent-42.p> :executorch_android > Resolve dependencies of classpath > commons-parent-34.p> :executorch_android > Resolve dependencies of classpath> IDLE<======-------> 50% CONFIGURING [12s]> :executorch_android > Resolve dependencies of classpath > perfmark-api-0.26.0> :executorch_android > Resolve dependencies of classpath > animal-sniffer-pare> :executorch_android > Resolve dependencies of classpath > mojo-parent-74.pom> IDLE> :executorch_android > Resolve dependencies of classpath > junit-bom-5.9.2.pom> :executorch_android > Resolve dependencies of classpath > netty-codec-http2-4> :executorch_android > Resolve dependencies of classpath > netty-parent-4.1.93> :executorch_android > Resolve dependencies of classpath > okio-3.6.0.pom> IDLE> :executorch_android > Resolve dependencies of classpath > kotlin-project-mode> :executorch_android > Resolve dependencies of classpath > kotlin-util-io-1.9.> :executorch_android > Resolve dependencies of classpath > kotlin-daemon-embed> :executorch_android > Resolve dependencies of classpath > kotlinx-coroutines-> :executorch_android > Resolve dependencies of classpath > kotlin-scripting-jv<======-------> 50% CONFIGURING [13s]> :executorch_android > Resolve dependencies of classpath> :executorch_android > Resolve dependencies of classpath > okio-jvm-3.7.0.pom> :executorch_android> :executorch_android > Resolve files of configuration 'classpath' > builder-8.> :executorch_android > Resolve files of configuration 'classpath' > sdklib-31.> :executorch_android > Resolve files of configuration 'classpath' > manifest-m> :executorch_android > Resolve files of configuration 'classpath' > gradle-8.9> :executorch_android > Resolve files of configuration 'classpath' > aaptcompil> :executorch_android > Resolve files of configuration 'classpath' > ddmlib-31.> :executorch_android > Resolve files of configuration 'classpath' > databindin> :executorch_android > Resolve files of configuration 'classpath' > baseLibrar> :executorch_android > Resolve files of configuration 'classpath' > android-te> :executorch_android > Resolve files of configuration 'classpath' > android-te> IDLE> IDLE> IDLE> IDLE> :executorch_android > Resolve files of configuration 'classpath' > kotlin-std> :executorch_android > Resolve files of configuration 'classpath' > dvlib-31.9> :executorch_android > Resolve files of configuration 'classpath' > android-te<======-------> 50% CONFIGURING [14s]> :executorch_android > Resolve files of configuration 'classpath' > common-31.> :executorch_android > Resolve files of configuration 'classpath' > tink-1.7.0> :executorch_android > Resolve files of configuration 'classpath' > transform-> :executorch_android > Resolve files of configuration 'classpath' > protos-31.> :executorch_android > Resolve files of configuration 'classpath' > kotlin-gra> IDLE> :executorch_android > Resolve files of configuration 'classpath' > guava-32.0> :executorch_android > Resolve files of configuration 'classpath' > bcprov-jdk> IDLE> IDLE> :executorch_android > Resolve files of configuration 'classpath'> IDLE> :executorch_android > Resolve files of configuration 'classpath' > kotlin-gra> :executorch_android > Resolve files of configuration 'classpath' > kotlin-and> :executorch_android > Resolve files of configuration 'classpath' > kotlin-com> :executorch_android > Resolve files of configuration 'classpath' > kotlin-dae> IDLE> IDLE> :executorch_android > Resolve files of configuration 'classpath'<======-------> 50% CONFIGURING [15s]> :executorch_android > Resolve files of configuration 'classpath' > Resolve fi> :executorch_android > Resolve files of configuration 'classpath' > Resolve fi> :executorch_android > Resolve files of configuration 'classpath' > Resolve fi> :executorch_android > Resolve files of configuration 'classpath' > Resolve fi> IDLE> IDLE> :executorch_android > Resolve files of configuration 'classpath' > Resolve fi> :executorch_android > Resolve files of configuration 'classpath' > Resolve fi> IDLE> IDLE> IDLE> :executorch_android > Resolve files of configuration 'classpath' > Resolve fi<======-------> 50% CONFIGURING [16s]> :executorch_android > Resolve files of configuration 'classpath' > Resolve fi> :executorch_android > Resolve files of configuration 'classpath' > Resolve fi> IDLE> IDLE> IDLE> IDLE> :executorch_android > Resolve files of configuration 'classpath' > Resolve fi> :executorch_android > Resolve files of configuration 'classpath' > Resolve fi> :executorch_android > Resolve files of configuration 'classpath' > Resolve fi> IDLE> IDLE<======-------> 50% CONFIGURING [17s]> :executorch_android > Resolve files of configuration 'classpath' > MergeInstr> :executorch_android > Resolve files of configuration 'classpath' > MergeInstr> :executorch_android > Resolve files of configuration 'classpath' > MergeInstr> :executorch_android > Resolve files of configuration 'classpath' > MergeInstr<======-------> 50% CONFIGURING [18s]> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE<======-------> 50% CONFIGURING [19s]> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> IDLE<======-------> 50% CONFIGURING [20s]> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> :executorch_android > Resolve files of configuration 'classpath' > MergeInstr> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe<======-------> 50% CONFIGURING [21s]> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> IDLE> :executorch_android > Resolve files of configuration 'classpath' > MergeInstr> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe<======-------> 50% CONFIGURING [22s]> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> IDLE<======-------> 50% CONFIGURING [23s]> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > MergeInstr> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE<======-------> 50% CONFIGURING [24s]> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> IDLE> IDLE> IDLE> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe> :executorch_android > Resolve files of configuration 'classpath' > ExternalDe<======-------> 50% CONFIGURING [25s]> IDLE> IDLE> IDLE<======-------> 50% CONFIGURING [26s]<======-------> 50% CONFIGURING [27s]<======-------> 50% CONFIGURING [28s]<======-------> 50% CONFIGURING [29s]> :executorch_android > Resolve files of configuration 'classpath'> :executorch_android<======-------> 50% CONFIGURING [30s]<======-------> 50% CONFIGURING [31s]<======-------> 50% CONFIGURING [32s]<======-------> 50% CONFIGURING [33s]<======-------> 50% CONFIGURING [34s]<======-------> 50% CONFIGURING [35s]<======-------> 50% CONFIGURING [36s]<=============> 100% CONFIGURING [36s]> IDLE<=============> 100% CONFIGURING [37s]<-------------> 0% EXECUTING [38s]<-------------> 1% EXECUTING [38s]> :executorch_android:mergeDebugJniLibFolders<-------------> 2% EXECUTING [38s]> :executorch_android:mergeDebugNativeLibs<-------------> 6% EXECUTING [38s]> :executorch_android:parseDebugLocalResources > Resolve files of configuration<=------------> 7% EXECUTING [38s]> IDLE> :executorch_android:stripDebugDebugSymbols> :executorch_android:parseDebugLocalResources<==-----------> 16% EXECUTING [38s]> :executorch_android:writeDebugAarMetadata> :executorch_android:processDebugManifest> :executorch_android:generateDebugRFile 2025-06-05T23:27:10.8499142Z > Task :executorch_android:stripDebugDebugSymbols 2025-06-05T23:27:10.8500433Z Unable to strip the following libraries, packaging them as they are: libexecutorch.so. 2025-06-05T23:27:10.8501365Z  2025-06-05T23:27:10.8501745Z  2025-06-05T23:27:10.8502336Z  2025-06-05T23:27:10.8531771Z <==-----------> 21% EXECUTING [39s]> IDLE> :executorch_android:mergeReleaseJniLibFolders> IDLE> IDLE<===----------> 23% EXECUTING [39s]> :executorch_android:extractDebugAnnotations > Resolve dependencies of :execut> :executorch_android:copyDebugJniLibsProjectAndLocalJars> :executorch_android:extractDebugAnnotations > Resolve dependencies of :execut> :executorch_android:extractDebugAnnotations > Resolve dependencies of :execut<===----------> 24% EXECUTING [39s]> IDLE> :executorch_android:extractDebugAnnotations > Resolve dependencies of :execut> IDLE> IDLE> :executorch_android:extractDebugAnnotations > Resolve dependencies of :execut> :executorch_android:extractDebugAnnotations > Resolve dependencies of :execut> IDLE> IDLE<===----------> 24% EXECUTING [40s]> :executorch_android:extractDebugAnnotations > Resolve files of configuration > :executorch_android:extractDebugAnnotations > Resolve files of configuration > :executorch_android:extractDebugAnnotations > Resolve files of configuration > :executorch_android:extractDebugAnnotations > Resolve files of configuration <===----------> 24% EXECUTING [41s]> IDLE> IDLE> IDLE> :executorch_android:extractDebugAnnotations> :executorch_android:extractDebugAnnotations > Resolve dependencies of :execut<===----------> 24% EXECUTING [42s]> :executorch_android:extractDebugAnnotations > Resolve dependencies of :execut> :executorch_android:extractDebugAnnotations > Resolve dependencies of :execut> :executorch_android:extractDebugAnnotations > Resolve dependencies of :execut> IDLE> IDLE> IDLE<===----------> 24% EXECUTING [43s]> :executorch_android:extractDebugAnnotations > Resolve files of configuration > :executorch_android:extractDebugAnnotations > Resolve files of configuration > :executorch_android:extractDebugAnnotations > Resolve files of configuration > :executorch_android:extractDebugAnnotations > Resolve files of configuration > IDLE> IDLE> IDLE> :executorch_android:extractDebugAnnotations<===----------> 24% EXECUTING [44s]<===----------> 24% EXECUTING [45s]<===----------> 24% EXECUTING [46s]<===----------> 25% EXECUTING [46s]> :executorch_android:compileDebugJavaWithJavac<===----------> 25% EXECUTING [47s]<===----------> 25% EXECUTING [48s]<===----------> 25% EXECUTING [49s]<===----------> 25% EXECUTING [50s]<===----------> 25% EXECUTING [51s]<===----------> 25% EXECUTING [52s]<===----------> 26% EXECUTING [52s]> :executorch_android:mergeDebugGeneratedProguardFiles<====---------> 34% EXECUTING [52s]> :executorch_android:mergeDebugJavaResource> :executorch_android:compileReleaseShaders> :executorch_android:mergeReleaseNativeLibs<=====--------> 42% EXECUTING [52s]> IDLE> IDLE> :executorch_android:bundleDebugAar<=====--------> 42% EXECUTING [53s]<=====--------> 42% EXECUTING [54s] 2025-06-05T23:27:10.8555416Z > Task :executorch_android:stripReleaseDebugSymbols 2025-06-05T23:27:10.8556744Z Unable to strip the following libraries, packaging them as they are: libexecutorch.so. 2025-06-05T23:27:10.8557756Z  2025-06-05T23:27:10.8558109Z  2025-06-05T23:27:10.8558451Z  2025-06-05T23:27:10.8614207Z <======-------> 47% EXECUTING [54s]> IDLE> IDLE> IDLE> :executorch_android:compileReleaseJavaWithJavac<======-------> 48% EXECUTING [54s]> IDLE<=======------> 55% EXECUTING [54s]> :executorch_android:mapReleaseSourceSetPaths > Resolve files of configuration> :executorch_android:copyReleaseJniLibsProjectAndLocalJars<=======------> 56% EXECUTING [54s]> IDLE<=======------> 57% EXECUTING [55s]> :executorch_android:syncReleaseLibJars<=======------> 58% EXECUTING [55s]> :executorch_android:bundleReleaseAar<=======------> 58% EXECUTING [56s]<=======------> 59% EXECUTING [56s]> :executorch_android:mergeReleaseResources<=======------> 59% EXECUTING [57s]<=======------> 60% EXECUTING [57s]> :executorch_android:verifyReleaseResources > Resolve files of configuration '<=======------> 60% EXECUTING [58s]> :executorch_android:verifyReleaseResources> :executorch_android:bundleDebugLocalLintAar<========-----> 66% EXECUTING [58s]> :executorch_android:extractProguardFiles> Transforming out.aar (project :executorch_android) with ExtractAarTransform> Transforming out.aar (project :executorch_android) with ExtractAarTransform> :executorch_android:generateDebugLintReportModel<========-----> 68% EXECUTING [58s]> IDLE> IDLE<========-----> 68% EXECUTING [59s]<=========----> 69% EXECUTING [59s]> IDLE> :executorch_android:generateDebugLintReportModel > Resolve files of configura> :executorch_android:generateDebugLintReportModel<=========----> 72% EXECUTING [59s]> :executorch_android:generateDebugAndroidTestLintModel > Resolve dependencies > :executorch_android:generateDebugAndroidTestLintModel > Resolve dependencies > :executorch_android:generateDebugAndroidTestLintModel > Resolve dependencies > :executorch_android:generateDebugAndroidTestLintModel > Resolve dependencies > IDLE> IDLE> IDLE<=========----> 72% EXECUTING [1m]> :executorch_android:generateDebugAndroidTestLintModel > Resolve dependencies > IDLE> :executorch_android:generateDebugAndroidTestLintModel > Resolve files of conf> :executorch_android:generateDebugAndroidTestLintModel > Resolve files of conf> :executorch_android:generateDebugAndroidTestLintModel > Resolve files of conf> :executorch_android:generateDebugAndroidTestLintModel > Resolve files of conf> :executorch_android:generateDebugAndroidTestLintModel> IDLE> IDLE> IDLE> :executorch_android:generateDebugAndroidTestLintModel > Resolve files of conf<=========----> 74% EXECUTING [1m 1s]> :executorch_android:generateDebugUnitTestLintModel > Resolve dependencies of > :executorch_android:generateDebugUnitTestLintModel > Resolve dependencies of > IDLE> :executorch_android:generateDebugUnitTestLintModel > Resolve files of configu> :executorch_android:generateDebugUnitTestLintModel<=========----> 76% EXECUTING [1m 1s]> :executorch_android:generateDebugUnitTestStubRFile > Resolve files of configu> :executorch_android:lintAnalyzeDebug> :executorch_android:generateDebugUnitTestStubRFile > Resolve files of configu> :executorch_android:generateDebugUnitTestStubRFile > Resolve files of configu<==========---> 82% EXECUTING [1m 1s]> IDLE> IDLE> :executorch_android:compileDebugUnitTestKotlin > Resolve files of configurati> :executorch_android:compileDebugUnitTestKotlin > Resolve files of configurati> :executorch_android:compileDebugUnitTestKotlin > Resolve files of configurati<==========---> 82% EXECUTING [1m 2s]> IDLE> IDLE> :executorch_android:compileDebugUnitTestKotlin > Resolve files of configurati> :executorch_android:compileDebugUnitTestKotlin > Resolve files of configurati> IDLE> IDLE> :executorch_android:compileDebugUnitTestKotlin > Resolve dependencies of :exe<==========---> 82% EXECUTING [1m 3s]> :executorch_android:compileDebugUnitTestKotlin > Resolve files of configurati> :executorch_android:compileDebugUnitTestKotlin<==========---> 82% EXECUTING [1m 4s]<==========---> 82% EXECUTING [1m 5s]> :executorch_android:compileReleaseUnitTestKotlin<==========---> 83% EXECUTING [1m 5s]<==========---> 83% EXECUTING [1m 6s]<==========---> 83% EXECUTING [1m 7s]<==========---> 83% EXECUTING [1m 8s]<==========---> 83% EXECUTING [1m 9s]<==========---> 83% EXECUTING [1m 10s]<==========---> 84% EXECUTING [1m 10s]> :executorch_android:lintAnalyzeDebugAndroidTest<==========---> 84% EXECUTING [1m 11s]<==========---> 84% EXECUTING [1m 12s]<===========--> 88% EXECUTING [1m 12s]> IDLE> :executorch_android:processDebugUnitTestJavaRes<===========--> 89% EXECUTING [1m 12s]> :executorch_android:testDebugUnitTest > Resolve files of configuration ':exec<===========--> 89% EXECUTING [1m 13s]<===========--> 89% EXECUTING [1m 14s]> :executorch_android:testDebugUnitTest> :executorch_android:testDebugUnitTest > 0 tests completed> :executorch_android:testDebugUnitTest > Executing test org.pytorch.executorch> IDLE> :executorch_android:testDebugUnitTest > 25 tests completed<===========--> 89% EXECUTING [1m 15s]> :executorch_android:testDebugUnitTest<===========--> 91% EXECUTING [1m 15s]> :executorch_android:testReleaseUnitTest > 0 tests completed> :executorch_android:testReleaseUnitTest > Executing test org.pytorch.executor> IDLE> :executorch_android:testReleaseUnitTest > 25 tests completed<============-> 93% EXECUTING [1m 15s]> IDLE<============-> 93% EXECUTING [1m 16s]<============-> 94% EXECUTING [1m 16s]> :executorch_android:lintAnalyzeDebugUnitTest<============-> 94% EXECUTING [1m 17s]<============-> 94% EXECUTING [1m 18s]<============-> 94% EXECUTING [1m 19s]<============-> 95% EXECUTING [1m 19s]> :executorch_android:lintReportDebug 2025-06-05T23:27:36.0284876Z > Task :executorch_android:lintReportDebug 2025-06-05T23:27:36.0286494Z Wrote HTML report to file:///pytorch/executorch/extension/android/executorch_android/build/reports/lint-results-debug.html 2025-06-05T23:27:36.0287816Z  2025-06-05T23:27:36.0288180Z  2025-06-05T23:27:36.0288541Z  2025-06-05T23:27:36.0290637Z <=============> 100% EXECUTING [1m 19s]> IDLE> IDLE> IDLE> IDLE[Incubating] Problems report is available at: file:///pytorch/executorch/extension/android/build/reports/problems/problems-report.html 2025-06-05T23:27:36.0292357Z  2025-06-05T23:27:36.0293194Z Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. 2025-06-05T23:27:36.0294085Z  2025-06-05T23:27:36.0295199Z You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. 2025-06-05T23:27:36.0296249Z 2025-06-05T23:27:36.0297225Z For more on this, please refer to https://docs.gradle.org/8.11.1/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. 2025-06-05T23:27:36.0298354Z 2025-06-05T23:27:36.0298623Z BUILD SUCCESSFUL in 1m 23s 2025-06-05T23:27:36.0299129Z 78 actionable tasks: 78 executed 2025-06-05T23:27:36.0299607Z  2025-06-05T23:27:36.0299949Z  2025-06-05T23:27:36.0300282Z  2025-06-05T23:27:36.0300601Z  2025-06-05T23:27:36.0300885Z  2025-06-05T23:27:36.0301938Z <-------------> 0% WAITING> IDLE> IDLE> IDLE> IDLE[?12l[?25h+ ANDROID_HOME=/opt/android/sdk 2025-06-05T23:27:36.0303217Z + ./gradlew :executorch_android:testDebugUnitTest 2025-06-05T23:27:36.0303620Z 2025-06-05T23:27:36.0303628Z 2025-06-05T23:27:36.0314770Z <-------------> 0% INITIALIZING [33ms]> Evaluating settings > Resolve dependencies of detachedConfiguration1<======-------> 50% CONFIGURING [133ms]> :executorch_android > Resolve dependencies of detachedConfiguration1<======-------> 50% CONFIGURING [238ms]> :executorch_android > Resolve files of configuration 'classpath'<======-------> 50% CONFIGURING [333ms]<======-------> 50% CONFIGURING [433ms]<======-------> 50% CONFIGURING [533ms]<======-------> 50% CONFIGURING [633ms]<======-------> 50% CONFIGURING [733ms]<======-------> 50% CONFIGURING [833ms]<======-------> 50% CONFIGURING [933ms]<======-------> 50% CONFIGURING [1s]> :executorch_android<=------------> 14% EXECUTING [1s]> :executorch_android:generateDebugResValues<========-----> 66% EXECUTING [1s]> :executorch_android:generateDebugUnitTestStubRFile > Resolve files of configu<========-----> 66% EXECUTING [2s]<============-> 95% EXECUTING [2s]> :executorch_android:testDebugUnitTest > Resolve files of configuration ':exec[Incubating] Problems report is available at: file:///pytorch/executorch/extension/android/build/reports/problems/problems-report.html 2025-06-05T23:27:36.0322022Z  2025-06-05T23:27:36.0322444Z Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. 2025-06-05T23:27:36.0322855Z 2025-06-05T23:27:36.0323318Z You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. 2025-06-05T23:27:36.0323890Z 2025-06-05T23:27:36.0324443Z For more on this, please refer to https://docs.gradle.org/8.11.1/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. 2025-06-05T23:27:36.0325091Z 2025-06-05T23:27:36.0325257Z BUILD SUCCESSFUL in 3s 2025-06-05T23:27:36.0325573Z 15 actionable tasks: 1 executed, 14 up-to-date 2025-06-05T23:27:36.0325906Z  2025-06-05T23:27:36.0326099Z  2025-06-05T23:27:36.0326902Z <-------------> 0% WAITING> :executorch_android:testDebugUnitTest > Resolve files of configuration ':exec[?12l[?25h+ popd 2025-06-05T23:27:36.0327656Z /pytorch/executorch 2025-06-05T23:27:36.0327887Z + '[' '!' -z aar-out ']' 2025-06-05T23:27:36.0328675Z + cp extension/android/executorch_android/build/outputs/aar/executorch_android-debug.aar aar-out/executorch.aar 2025-06-05T23:27:36.0329715Z + cp aar-out/executorch.aar artifacts-to-be-uploaded 2025-06-05T23:27:36.0330359Z + mkdir -p artifacts-to-be-uploaded/library_test_dir 2025-06-05T23:27:36.0331087Z + bash extension/android/executorch_android/android_test_setup.sh 2025-06-05T23:27:36.0331757Z + [[ -z '' ]] 2025-06-05T23:27:36.0332141Z + PYTHON_EXECUTABLE=python3 2025-06-05T23:27:36.0332522Z + which python3 2025-06-05T23:27:36.0332878Z /opt/conda/envs/py_3.10/bin/python3 2025-06-05T23:27:36.0333576Z +++ realpath extension/android/executorch_android/android_test_setup.sh 2025-06-05T23:27:36.0334807Z ++ dirname /pytorch/executorch/extension/android/executorch_android/android_test_setup.sh 2025-06-05T23:27:36.0336003Z + BASEDIR=/pytorch/executorch/extension/android/executorch_android 2025-06-05T23:27:36.0336690Z + prepare_add 2025-06-05T23:27:36.0337759Z + python3 -m test.models.export_program --modules ModuleAdd --outdir /pytorch/executorch/extension/android/executorch_android/src/androidTest/resources/ 2025-06-05T23:27:36.0338938Z Enter debug_pass 2025-06-05T23:27:36.0339283Z Code is: 2025-06-05T23:27:36.0339448Z 2025-06-05T23:27:36.0339454Z 2025-06-05T23:27:36.0339459Z 2025-06-05T23:27:36.0339591Z def forward(self, x, y, alpha): 2025-06-05T23:27:36.0340355Z aten_add_tensor = executorch_exir_dialects_edge__ops_aten_add_Tensor(x, y, alpha = 1.0); x = y = None 2025-06-05T23:27:36.0341159Z return (aten_add_tensor,) 2025-06-05T23:27:36.0341514Z 2025-06-05T23:27:36.0341896Z Nodes: 2025-06-05T23:27:36.0342235Z 0: %x : [num_users=1] = placeholder[target=x] 2025-06-05T23:27:36.0342784Z 1: %y : [num_users=1] = placeholder[target=y] 2025-06-05T23:27:36.0343335Z 2: %alpha : [num_users=0] = placeholder[target=alpha] 2025-06-05T23:27:36.0344184Z 3: %aten_add_tensor : [num_users=1] = call_function[target=executorch.exir.dialects.edge._ops.aten.add.Tensor](args = (%x, %y), kwargs = {alpha: 1.0}) 2025-06-05T23:27:36.0345045Z File "/pytorch/executorch/test/models/export_program.py", line 86, in forward 2025-06-05T23:27:36.0345716Z return torch.add(x, y, alpha=alpha) 2025-06-05T23:27:36.0345927Z 2025-06-05T23:27:36.0346041Z 4: return (aten_add_tensor,) 2025-06-05T23:27:36.0346310Z -- node op type stat -- 2025-06-05T23:27:36.0346566Z op placeholder, cnt 3 2025-06-05T23:27:36.0346837Z op call_function, cnt 1 2025-06-05T23:27:36.0347086Z op output, cnt 1 2025-06-05T23:27:36.0347305Z -- call_function stat -- 2025-06-05T23:27:36.0347910Z fn : schema = aten::add.Tensor(Tensor self, Tensor other, *, Scalar alpha=1) -> Tensor, cnt 1 2025-06-05T23:27:36.0349041Z Exported ModuleAdd and wrote program data to /pytorch/executorch/extension/android/executorch_android/src/androidTest/resources/ModuleAdd.pte 2025-06-05T23:27:36.0350238Z + prepare_tinyllama 2025-06-05T23:27:36.0350897Z + pushd /pytorch/executorch/extension/android/executorch_android/../../../ 2025-06-05T23:27:36.0351715Z /pytorch/executorch /pytorch/executorch 2025-06-05T23:27:36.0352816Z + curl -C - -Ls https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.pt --output stories15M.pt 2025-06-05T23:27:36.0354274Z + curl -C - -Ls https://raw.githubusercontent.com/karpathy/llama2.c/master/tokenizer.model --output tokenizer.model 2025-06-05T23:27:36.0355209Z + touch params.json 2025-06-05T23:27:36.0355970Z + echo '{"dim": 288, "multiple_of": 32, "n_heads": 6, "n_layers": 6, "norm_eps": 1e-05, "vocab_size": 32000}' 2025-06-05T23:27:36.0357401Z + python -m examples.models.llama.export_llama -c stories15M.pt -p params.json -d fp16 -n stories15m_h.pte -kv 2025-06-05T23:27:36.0358703Z [INFO 2025-06-05 23:27:31,834 export_llama_lib.py:750] Applying quantizers: [] 2025-06-05T23:27:36.0360177Z [WARNING 2025-06-05 23:27:31,882 export_llama_lib.py:679] Checkpoint dtype torch.float32 precision is higher than dtype override torch.float16. 2025-06-05T23:27:36.0361715Z [INFO 2025-06-05 23:27:31,904 export_llama_lib.py:687] Checkpoint dtype: torch.float32 2025-06-05T23:27:36.0362830Z [INFO 2025-06-05 23:27:31,905 builder.py:183] Model after source transforms: Transformer( 2025-06-05T23:27:36.0363693Z (tok_embeddings): Embedding(32000, 288) 2025-06-05T23:27:36.0364265Z (layers): ModuleList( 2025-06-05T23:27:36.0364711Z (0-5): 6 x TransformerBlock( 2025-06-05T23:27:36.0365522Z (attention): AttentionMHA( 2025-06-05T23:27:36.0366138Z (wq): Linear(in_features=288, out_features=288, bias=False) 2025-06-05T23:27:36.0366929Z (wk): Linear(in_features=288, out_features=288, bias=False) 2025-06-05T23:27:36.0367702Z (wv): Linear(in_features=288, out_features=288, bias=False) 2025-06-05T23:27:36.0368483Z (wo): Linear(in_features=288, out_features=288, bias=False) 2025-06-05T23:27:36.0369294Z (rope): Rope( 2025-06-05T23:27:36.0369761Z (apply_rotary_emb): RotaryEmbedding() 2025-06-05T23:27:36.0370327Z ) 2025-06-05T23:27:36.0370682Z (kv_cache): KVCache() 2025-06-05T23:27:36.0371155Z (SDPA): SDPA() 2025-06-05T23:27:36.0371558Z ) 2025-06-05T23:27:36.0371946Z (feed_forward): FeedForward( 2025-06-05T23:27:36.0372568Z (w1): Linear(in_features=288, out_features=768, bias=False) 2025-06-05T23:27:36.0373343Z (w2): Linear(in_features=768, out_features=288, bias=False) 2025-06-05T23:27:36.0374117Z (w3): Linear(in_features=288, out_features=768, bias=False) 2025-06-05T23:27:36.0374735Z ) 2025-06-05T23:27:36.0375104Z (attention_norm): RMSNorm() 2025-06-05T23:27:36.0375602Z (ffn_norm): RMSNorm() 2025-06-05T23:27:36.0376107Z ) 2025-06-05T23:27:36.0376424Z ) 2025-06-05T23:27:36.0376762Z (rope): Rope( 2025-06-05T23:27:36.0377188Z (apply_rotary_emb): RotaryEmbedding() 2025-06-05T23:27:36.0377740Z ) 2025-06-05T23:27:36.0378068Z (norm): RMSNorm() 2025-06-05T23:27:36.0378650Z (output): Linear(in_features=288, out_features=32000, bias=False) 2025-06-05T23:27:36.0379350Z ) 2025-06-05T23:27:36.0379819Z [INFO 2025-06-05 23:27:31,906 builder.py:243] Exporting with: 2025-06-05T23:27:36.0380911Z [INFO 2025-06-05 23:27:31,907 builder.py:244] inputs: (tensor([[2, 3, 4]]), {'input_pos': tensor([0])}) 2025-06-05T23:27:36.0381921Z [INFO 2025-06-05 23:27:31,907 builder.py:245] kwargs: None 2025-06-05T23:27:36.0383104Z [INFO 2025-06-05 23:27:31,908 builder.py:246] dynamic shapes: ({1: Dim('token_dim', min=0, max=127)}, {'input_pos': {0: 1}}) 2025-06-05T23:27:36.0384469Z [INFO 2025-06-05 23:27:36,005 builder.py:282] Running canonical pass: RemoveRedundantTransposes 2025-06-05T23:27:36.0385725Z [INFO 2025-06-05 23:27:36,027 builder.py:370] Using pt2e [] to quantizing the model... 2025-06-05T23:28:51.8508183Z [INFO 2025-06-05 23:27:36,028 builder.py:430] No quantizer provided, passing... 2025-06-05T23:28:51.8509498Z [INFO 2025-06-05 23:27:51,339 export_llama_lib.py:971] Lowering model using following partitioner(s): 2025-06-05T23:28:51.8513242Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/executorch/exir/emit/_emitter.py:1593: UserWarning: Mutation on a buffer in the model is detected. ExecuTorch assumes buffers that are mutated in the graph have a meaningless initial state, only the shape and dtype will be serialized, unless a pass which sets meta["et_init_buffer"] to True such as InitializedMutableBufferPass is run. 2025-06-05T23:28:51.8516968Z warnings.warn( 2025-06-05T23:28:51.8517726Z [INFO 2025-06-05 23:27:57,338 builder.py:553] Required memory for activation in bytes: [0, 3172704] 2025-06-05T23:28:51.8518609Z modelname: stories15m_h 2025-06-05T23:28:51.8519074Z output_file: stories15m_h.pte 2025-06-05T23:28:51.8521989Z [INFO 2025-06-05 23:27:57,350 utils.py:141] Saved exported program to stories15m_h.pte 2025-06-05T23:28:51.8523262Z + python -m pytorch_tokenizers.tools.llama2c.convert -t tokenizer.model -o tokenizer.bin 2025-06-05T23:28:51.8524912Z + cp stories15m_h.pte /pytorch/executorch/extension/android/executorch_android/src/androidTest/resources/stories.pte 2025-06-05T23:28:51.8526823Z + cp tokenizer.bin /pytorch/executorch/extension/android/executorch_android/src/androidTest/resources/tokenizer.bin 2025-06-05T23:28:51.8528024Z + popd 2025-06-05T23:28:51.8528396Z /pytorch/executorch 2025-06-05T23:28:51.8528800Z + prepare_vision 2025-06-05T23:28:51.8529519Z + pushd /pytorch/executorch/extension/android/executorch_android/../../../ 2025-06-05T23:28:51.8530463Z /pytorch/executorch /pytorch/executorch 2025-06-05T23:28:51.8531269Z + python3 -m examples.xnnpack.aot_compiler --model_name mv2 --delegate 2025-06-05T23:28:51.8533031Z Downloading: "https://download.pytorch.org/models/mobilenet_v2-7ebf99e0.pth" to /var/lib/ci-user/.cache/torch/hub/checkpoints/mobilenet_v2-7ebf99e0.pth 2025-06-05T23:28:51.8534508Z 2025-06-05T23:28:51.8534687Z 0% 0.00/13.6M [00:00 0% CONFIGURING [48ms]> root project<======-------> 50% CONFIGURING [148ms]> :executorch_android > Resolve files of configuration 'classpath'<======-------> 50% CONFIGURING [248ms]> :executorch_android<=============> 100% CONFIGURING [348ms]> IDLE<-------------> 6% EXECUTING [448ms]> :executorch_android:generateDebugResources<===----------> 23% EXECUTING [548ms]> :executorch_android:checkDebugAndroidTestAarMetadata > Resolve files of confi<===----------> 28% EXECUTING [648ms]> :executorch_android:mapDebugAndroidTestSourceSetPaths > Resolve files of conf<====---------> 32% EXECUTING [748ms]> :executorch_android:mergeDebugAndroidTestResources 2025-06-05T23:29:36.0128811Z <====---------> 35% EXECUTING [848ms]> :executorch_android:processDebugAndroidTestManifest > Resolve files of config<====---------> 35% EXECUTING [948ms]<====---------> 35% EXECUTING [1s]> :executorch_android:processDebugAndroidTestManifest<======-------> 52% EXECUTING [1s]> IDLE> :executorch_android:mergeDebugAndroidTestAssets > Resolve files of configurat<=======------> 54% EXECUTING [1s]> :executorch_android:processDebugAndroidTestResources> :executorch_android:processDebugAndroidTestResources > Resolve files of confi<=======------> 57% EXECUTING [1s]> :executorch_android:checkDebugAndroidTestDuplicateClasses > Resolve files of > :executorch_android:processDebugAndroidTestResources<=======------> 59% EXECUTING [1s]> IDLE<=======------> 61% EXECUTING [1s]> :executorch_android:compileDebugAndroidTestKotlin > Resolve files of configur> :executorch_android:compileDebugAndroidTestKotlin > Resolve files of configur<=======------> 61% EXECUTING [2s]> :executorch_android:compileDebugAndroidTestKotlin> IDLE> :executorch_android:desugarDebugAndroidTestFileDependencies > Resolve files o> :executorch_android:desugarDebugAndroidTestFileDependencies 2025-06-05T23:29:36.0140005Z 2025-06-05T23:29:36.0145854Z <========-----> 62% EXECUTING [2s]> :executorch_android:mergeExtDexDebugAndroidTest > Resolve files of configurat> :executorch_android:mergeExtDexDebugAndroidTest > Resolve files of configurat> :executorch_android:mergeExtDexDebugAndroidTest > Resolve files of configurat<========-----> 62% EXECUTING [3s]<========-----> 62% EXECUTING [4s]<========-----> 62% EXECUTING [5s]> IDLE> :executorch_android:mergeExtDexDebugAndroidTest > Resolve files of configurat<========-----> 62% EXECUTING [6s]<========-----> 62% EXECUTING [7s] 2025-06-05T23:29:36.0151054Z > Task :executorch_android:compileDebugAndroidTestKotlin 2025-06-05T23:29:36.0153877Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/LlmModuleInstrumentationTest.kt:11:22 'InstrumentationRegistry' is deprecated. Deprecated in Java 2025-06-05T23:29:36.0158076Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/LlmModuleInstrumentationTest.kt:46:9 Unsafe use of a nullable receiver of type InputStream? 2025-06-05T23:29:36.0161926Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/LlmModuleInstrumentationTest.kt:51:9 Unsafe use of a nullable receiver of type InputStream? 2025-06-05T23:29:36.0165946Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/LlmModuleInstrumentationTest.kt:100:19 Variable 'tps' initializer is redundant 2025-06-05T23:29:36.0169399Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/ModuleE2ETest.kt:13:22 'InstrumentationRegistry' is deprecated. Deprecated in Java 2025-06-05T23:29:36.0172743Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/ModuleE2ETest.kt:39:9 Unsafe use of a nullable receiver of type InputStream? 2025-06-05T23:29:36.0175927Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/ModuleE2ETest.kt:44:9 Unsafe use of a nullable receiver of type InputStream? 2025-06-05T23:29:36.0179298Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/ModuleE2ETest.kt:69:9 Unsafe use of a nullable receiver of type InputStream? 2025-06-05T23:29:36.0182551Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/ModuleE2ETest.kt:71:13 Variable 'module' is never used 2025-06-05T23:29:36.0185132Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/ModuleE2ETest.kt:72:13 Variable 'expectedBackends' is never used 2025-06-05T23:29:36.0188634Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/ModuleInstrumentationTest.kt:11:22 'InstrumentationRegistry' is deprecated. Deprecated in Java 2025-06-05T23:29:36.0192076Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/ModuleInstrumentationTest.kt:38:9 Unsafe use of a nullable receiver of type InputStream? 2025-06-05T23:29:36.0195601Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/ModuleInstrumentationTest.kt:43:9 Unsafe use of a nullable receiver of type InputStream? 2025-06-05T23:29:36.0198975Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/ModuleInstrumentationTest.kt:62:13 Variable 'module' is never used 2025-06-05T23:29:36.0202149Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/ModuleInstrumentationTest.kt:89:13 Variable 'module' is never used 2025-06-05T23:29:36.0205494Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/TestFileUtils.kt:3:22 'InstrumentationRegistry' is deprecated. Deprecated in Java 2025-06-05T23:29:36.0208929Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/TestFileUtils.kt:11:16 'InstrumentationRegistry' is deprecated. Deprecated in Java 2025-06-05T23:29:36.0212452Z w: file:///pytorch/executorch/extension/android/executorch_android/src/androidTest/java/org/pytorch/executorch/TestFileUtils.kt:11:40 'getInstrumentation(): Instrumentation!' is deprecated. Deprecated in Java 2025-06-05T23:29:36.0214321Z  2025-06-05T23:29:36.0214648Z  2025-06-05T23:29:36.0214956Z  2025-06-05T23:29:36.0215269Z  2025-06-05T23:29:36.0215567Z  2025-06-05T23:29:42.3388372Z <========-----> 62% EXECUTING [7s]> :executorch_android:compileDebugAndroidTestKotlin> :executorch_android:mergeExtDexDebugAndroidTest > Resolve files of configurat> :executorch_android:mergeExtDexDebugAndroidTest > Resolve files of configurat> :executorch_android:mergeExtDexDebugAndroidTest > Resolve files of configurat<========-----> 64% EXECUTING [7s]> :executorch_android:mergeExtDexDebugAndroidTest > Resolve files of configurat> IDLE> :executorch_android:mergeExtDexDebugAndroidTest > Resolve files of configurat<========-----> 64% EXECUTING [8s]> IDLE> IDLE> IDLE<========-----> 64% EXECUTING [9s]<========-----> 64% EXECUTING [10s]<========-----> 64% EXECUTING [11s]<========-----> 64% EXECUTING [12s]<========-----> 64% EXECUTING [13s]> IDLE<========-----> 64% EXECUTING [14s]<========-----> 64% EXECUTING [15s]<========-----> 64% EXECUTING [16s]<========-----> 64% EXECUTING [17s]> :executorch_android:compileDebugAndroidTestJavaWithJavac> :executorch_android:mergeExtDexDebugAndroidTest<========-----> 64% EXECUTING [18s]<========-----> 66% EXECUTING [19s]> IDLE<========-----> 67% EXECUTING [19s]> :executorch_android:processDebugAndroidTestJavaRes<=========----> 69% EXECUTING [19s]> :executorch_android:mergeDebugAndroidTestJavaResource<=========----> 71% EXECUTING [19s]> :executorch_android:dexBuilderDebugAndroidTest> Transforming classes.jar (project :executorch_android) with DexingWithClasspa<==========---> 79% EXECUTING [19s]> :executorch_android:mergeDebugAndroidTestJniLibFolders> :executorch_android:mergeProjectDexDebugAndroidTest> :executorch_android:copyDebugJniLibsProjectOnly<===========--> 84% EXECUTING [20s]> :executorch_android:validateSigningDebugAndroidTest> IDLE> IDLE<===========--> 86% EXECUTING [21s]> :executorch_android:mergeDebugAndroidTestNativeLibs> :executorch_android:mergeDebugAndroidTestNativeLibs > Resolve files of config<===========--> 88% EXECUTING [21s]> :executorch_android:mergeDebugAndroidTestNativeLibs<===========--> 89% EXECUTING [21s]> :executorch_android:stripDebugAndroidTestDebugSymbols 2025-06-05T23:29:42.3398226Z > Task :executorch_android:stripDebugAndroidTestDebugSymbols 2025-06-05T23:29:42.3399078Z Unable to strip the following libraries, packaging them as they are: libc++_shared.so, libexecutorch.so, libfbjni.so. 2025-06-05T23:29:42.3399709Z  2025-06-05T23:29:42.3399947Z  2025-06-05T23:29:42.3400151Z  2025-06-05T23:29:42.3402859Z <===========--> 91% EXECUTING [21s]> IDLE> :executorch_android:mergeDebugAndroidTestJavaResource> IDLE> IDLE<===========--> 91% EXECUTING [22s]<===========--> 91% EXECUTING [23s]<===========--> 91% EXECUTING [24s]<============-> 93% EXECUTING [24s]> :executorch_android:packageDebugAndroidTest<============-> 93% EXECUTING [25s]<============-> 93% EXECUTING [26s][Incubating] Problems report is available at: file:///pytorch/executorch/extension/android/build/reports/problems/problems-report.html 2025-06-05T23:29:42.3405020Z  2025-06-05T23:29:42.3405568Z Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. 2025-06-05T23:29:42.3406085Z  2025-06-05T23:29:42.3406788Z You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. 2025-06-05T23:29:42.3407371Z 2025-06-05T23:29:42.3407930Z For more on this, please refer to https://docs.gradle.org/8.11.1/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. 2025-06-05T23:29:42.3408585Z 2025-06-05T23:29:42.3408743Z BUILD SUCCESSFUL in 26s 2025-06-05T23:29:42.3409063Z 47 actionable tasks: 31 executed, 16 up-to-date 2025-06-05T23:29:42.3409400Z  2025-06-05T23:29:42.3409592Z  2025-06-05T23:29:42.3409793Z  2025-06-05T23:29:42.3410032Z  2025-06-05T23:29:42.3410217Z  2025-06-05T23:29:42.3411542Z <-------------> 0% WAITING> IDLE> IDLE> IDLE> IDLE[?12l[?25h+ cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk artifacts-to-be-uploaded/library_test_dir 2025-06-05T23:29:42.3412784Z + mkdir -p artifacts-to-be-uploaded/fp32-xnnpack-custom 2025-06-05T23:29:42.3413246Z + bash examples/models/llama/install_requirements.sh 2025-06-05T23:29:42.3413893Z Requirement already satisfied: huggingface_hub in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (0.32.4) 2025-06-05T23:29:42.3414756Z Requirement already satisfied: tiktoken in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (0.9.0) 2025-06-05T23:29:42.3415566Z Requirement already satisfied: torchtune in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (0.6.1) 2025-06-05T23:29:42.3416391Z Requirement already satisfied: sentencepiece in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (0.2.0) 2025-06-05T23:29:42.3417234Z Requirement already satisfied: tokenizers in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (0.21.1) 2025-06-05T23:29:42.3417800Z Collecting snakeviz 2025-06-05T23:29:42.3418137Z Downloading snakeviz-2.2.2-py3-none-any.whl.metadata (3.6 kB) 2025-06-05T23:29:42.3418553Z Collecting lm_eval==0.4.5 2025-06-05T23:29:42.3418894Z Downloading lm_eval-0.4.5-py3-none-any.whl.metadata (44 kB) 2025-06-05T23:29:42.3419541Z Requirement already satisfied: blobfile in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (3.0.0) 2025-06-05T23:29:42.3420135Z Collecting accelerate>=0.26.0 (from lm_eval==0.4.5) 2025-06-05T23:29:42.3420599Z Downloading accelerate-1.7.0-py3-none-any.whl.metadata (19 kB) 2025-06-05T23:29:42.3421040Z Collecting evaluate (from lm_eval==0.4.5) 2025-06-05T23:29:42.3421449Z Downloading evaluate-0.4.3-py3-none-any.whl.metadata (9.2 kB) 2025-06-05T23:29:42.3422214Z Requirement already satisfied: datasets>=2.16.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from lm_eval==0.4.5) (3.6.0) 2025-06-05T23:29:42.3422880Z Collecting jsonlines (from lm_eval==0.4.5) 2025-06-05T23:29:42.3423311Z Downloading jsonlines-4.0.0-py3-none-any.whl.metadata (1.6 kB) 2025-06-05T23:29:42.3423731Z Collecting numexpr (from lm_eval==0.4.5) 2025-06-05T23:29:42.3424295Z Downloading numexpr-2.10.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (8.1 kB) 2025-06-05T23:29:42.3424879Z Collecting peft>=0.2.0 (from lm_eval==0.4.5) 2025-06-05T23:29:42.3425277Z Downloading peft-0.15.2-py3-none-any.whl.metadata (13 kB) 2025-06-05T23:29:42.3425819Z Collecting pybind11>=2.6.2 (from lm_eval==0.4.5) 2025-06-05T23:29:42.3426258Z Downloading pybind11-2.13.6-py3-none-any.whl.metadata (9.5 kB) 2025-06-05T23:29:42.3426706Z Collecting pytablewriter (from lm_eval==0.4.5) 2025-06-05T23:29:42.3427161Z Downloading pytablewriter-1.2.1-py3-none-any.whl.metadata (38 kB) 2025-06-05T23:29:42.3427647Z Collecting rouge-score>=0.0.4 (from lm_eval==0.4.5) 2025-06-05T23:29:42.3428024Z Downloading rouge_score-0.1.2.tar.gz (17 kB) 2025-06-05T23:29:42.3428468Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:29:42.3428995Z [?25hCollecting sacrebleu>=1.5.0 (from lm_eval==0.4.5) 2025-06-05T23:29:42.3429446Z Downloading sacrebleu-2.5.1-py3-none-any.whl.metadata (51 kB) 2025-06-05T23:29:42.3429916Z Collecting scikit-learn>=0.24.1 (from lm_eval==0.4.5) 2025-06-05T23:29:42.3430524Z Downloading scikit_learn-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (17 kB) 2025-06-05T23:29:42.3431122Z Collecting sqlitedict (from lm_eval==0.4.5) 2025-06-05T23:29:42.3431464Z Downloading sqlitedict-2.1.0.tar.gz (21 kB) 2025-06-05T23:29:42.3431885Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:29:42.3432769Z [?25hRequirement already satisfied: torch>=1.8 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from lm_eval==0.4.5) (2.8.0a0+git5616fa4) 2025-06-05T23:29:42.3433543Z Collecting tqdm-multiprocess (from lm_eval==0.4.5) 2025-06-05T23:29:42.3434044Z Downloading tqdm_multiprocess-0.0.11-py3-none-any.whl.metadata (5.7 kB) 2025-06-05T23:29:42.3434856Z Requirement already satisfied: transformers>=4.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from lm_eval==0.4.5) (4.47.1) 2025-06-05T23:29:42.3435551Z Collecting zstandard (from lm_eval==0.4.5) 2025-06-05T23:29:43.3249006Z Downloading zstandard-0.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB) 2025-06-05T23:29:43.3250418Z Requirement already satisfied: dill in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from lm_eval==0.4.5) (0.3.8) 2025-06-05T23:29:43.3251498Z Collecting word2number (from lm_eval==0.4.5) 2025-06-05T23:29:43.3251973Z Downloading word2number-1.1.zip (9.7 kB) 2025-06-05T23:29:43.3252584Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:29:43.3253033Z [?25hCollecting more-itertools (from lm_eval==0.4.5) 2025-06-05T23:29:43.3253531Z Downloading more_itertools-10.7.0-py3-none-any.whl.metadata (37 kB) 2025-06-05T23:29:43.3254381Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub) (3.18.0) 2025-06-05T23:29:43.3255444Z Requirement already satisfied: fsspec>=2023.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub) (2025.3.0) 2025-06-05T23:29:43.3256468Z Requirement already satisfied: packaging>=20.9 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub) (25.0) 2025-06-05T23:29:43.3257488Z Requirement already satisfied: pyyaml>=5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub) (6.0.1) 2025-06-05T23:29:43.3258519Z Requirement already satisfied: requests in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub) (2.32.3) 2025-06-05T23:29:43.3259511Z Requirement already satisfied: tqdm>=4.42.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub) (4.67.1) 2025-06-05T23:29:43.3260548Z Requirement already satisfied: typing-extensions>=3.7.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub) (4.14.0) 2025-06-05T23:29:43.3261606Z Requirement already satisfied: hf-xet<2.0.0,>=1.1.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub) (1.1.3) 2025-06-05T23:29:43.3262576Z Requirement already satisfied: regex>=2022.1.18 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tiktoken) (2024.11.6) 2025-06-05T23:29:43.3263552Z Requirement already satisfied: torchdata==0.11.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchtune) (0.11.0) 2025-06-05T23:29:43.3264587Z Requirement already satisfied: safetensors in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchtune) (0.5.3) 2025-06-05T23:29:43.3265824Z Requirement already satisfied: kagglehub in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchtune) (0.3.12) 2025-06-05T23:29:43.3266760Z Requirement already satisfied: numpy in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchtune) (2.2.6) 2025-06-05T23:29:43.3267675Z Requirement already satisfied: omegaconf in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchtune) (2.3.0) 2025-06-05T23:29:43.3268707Z Requirement already satisfied: psutil in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchtune) (7.0.0) 2025-06-05T23:29:43.3269651Z Requirement already satisfied: Pillow>=9.4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchtune) (11.2.1) 2025-06-05T23:29:43.3270675Z Requirement already satisfied: urllib3>=1.25 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchdata==0.11.0->torchtune) (2.4.0) 2025-06-05T23:29:43.3271380Z Collecting tornado>=2.0 (from snakeviz) 2025-06-05T23:29:43.3272070Z Downloading tornado-6.5.1-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.8 kB) 2025-06-05T23:29:43.3273149Z Requirement already satisfied: pycryptodomex>=3.8 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from blobfile) (3.23.0) 2025-06-05T23:29:43.3274136Z Requirement already satisfied: lxml>=4.9 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from blobfile) (5.4.0) 2025-06-05T23:29:43.3275163Z Requirement already satisfied: pyarrow>=15.0.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets>=2.16.0->lm_eval==0.4.5) (20.0.0) 2025-06-05T23:29:43.3276306Z Requirement already satisfied: pandas in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets>=2.16.0->lm_eval==0.4.5) (2.2.3) 2025-06-05T23:29:43.3277392Z Requirement already satisfied: xxhash in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets>=2.16.0->lm_eval==0.4.5) (3.5.0) 2025-06-05T23:29:43.3278651Z Requirement already satisfied: multiprocess<0.70.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets>=2.16.0->lm_eval==0.4.5) (0.70.16) 2025-06-05T23:29:43.3279959Z Requirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from fsspec[http]<=2025.3.0,>=2023.1.0->datasets>=2.16.0->lm_eval==0.4.5) (3.12.9) 2025-06-05T23:29:43.3281450Z Requirement already satisfied: aiohappyeyeballs>=2.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets>=2.16.0->lm_eval==0.4.5) (2.6.1) 2025-06-05T23:29:43.3282982Z Requirement already satisfied: aiosignal>=1.1.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets>=2.16.0->lm_eval==0.4.5) (1.3.2) 2025-06-05T23:29:43.3284502Z Requirement already satisfied: async-timeout<6.0,>=4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets>=2.16.0->lm_eval==0.4.5) (5.0.1) 2025-06-05T23:29:43.3286001Z Requirement already satisfied: attrs>=17.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets>=2.16.0->lm_eval==0.4.5) (25.3.0) 2025-06-05T23:29:43.3287484Z Requirement already satisfied: frozenlist>=1.1.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets>=2.16.0->lm_eval==0.4.5) (1.6.2) 2025-06-05T23:29:43.3288989Z Requirement already satisfied: multidict<7.0,>=4.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets>=2.16.0->lm_eval==0.4.5) (6.4.4) 2025-06-05T23:29:43.3290497Z Requirement already satisfied: propcache>=0.2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets>=2.16.0->lm_eval==0.4.5) (0.3.1) 2025-06-05T23:29:43.3291975Z Requirement already satisfied: yarl<2.0,>=1.17.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets>=2.16.0->lm_eval==0.4.5) (1.20.0) 2025-06-05T23:29:43.3293454Z Requirement already satisfied: idna>=2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from yarl<2.0,>=1.17.0->aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets>=2.16.0->lm_eval==0.4.5) (3.10) 2025-06-05T23:29:43.3294868Z Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->huggingface_hub) (3.4.2) 2025-06-05T23:29:43.3296030Z Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->huggingface_hub) (2025.4.26) 2025-06-05T23:29:43.3296821Z Collecting absl-py (from rouge-score>=0.0.4->lm_eval==0.4.5) 2025-06-05T23:29:43.3297307Z Downloading absl_py-2.3.0-py3-none-any.whl.metadata (2.4 kB) 2025-06-05T23:29:43.3297756Z Collecting nltk (from rouge-score>=0.0.4->lm_eval==0.4.5) 2025-06-05T23:29:43.3298249Z Downloading nltk-3.9.1-py3-none-any.whl.metadata (2.9 kB) 2025-06-05T23:29:43.3299029Z Requirement already satisfied: six>=1.14.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from rouge-score>=0.0.4->lm_eval==0.4.5) (1.17.0) 2025-06-05T23:29:43.3299828Z Collecting portalocker (from sacrebleu>=1.5.0->lm_eval==0.4.5) 2025-06-05T23:29:43.3300345Z Downloading portalocker-3.1.1-py3-none-any.whl.metadata (8.6 kB) 2025-06-05T23:29:43.3301206Z Requirement already satisfied: tabulate>=0.8.9 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from sacrebleu>=1.5.0->lm_eval==0.4.5) (0.9.0) 2025-06-05T23:29:43.3302003Z Collecting colorama (from sacrebleu>=1.5.0->lm_eval==0.4.5) 2025-06-05T23:29:43.3302492Z Downloading colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB) 2025-06-05T23:29:43.3303044Z Collecting scipy>=1.8.0 (from scikit-learn>=0.24.1->lm_eval==0.4.5) 2025-06-05T23:29:43.3303680Z Downloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) 2025-06-05T23:29:43.3304396Z Collecting joblib>=1.2.0 (from scikit-learn>=0.24.1->lm_eval==0.4.5) 2025-06-05T23:29:43.3304900Z Downloading joblib-1.5.1-py3-none-any.whl.metadata (5.6 kB) 2025-06-05T23:29:43.3305523Z Collecting threadpoolctl>=3.1.0 (from scikit-learn>=0.24.1->lm_eval==0.4.5) 2025-06-05T23:29:43.3306098Z Downloading threadpoolctl-3.6.0-py3-none-any.whl.metadata (13 kB) 2025-06-05T23:29:43.3306908Z Requirement already satisfied: sympy>=1.13.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch>=1.8->lm_eval==0.4.5) (1.14.0) 2025-06-05T23:29:43.3307977Z Requirement already satisfied: networkx in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch>=1.8->lm_eval==0.4.5) (3.4.2) 2025-06-05T23:29:43.3309027Z Requirement already satisfied: jinja2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch>=1.8->lm_eval==0.4.5) (3.1.6) 2025-06-05T23:29:43.3310126Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from sympy>=1.13.3->torch>=1.8->lm_eval==0.4.5) (1.3.0) 2025-06-05T23:29:43.3311331Z Requirement already satisfied: hf-transfer>=0.1.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[hf_transfer]->torchtune) (0.1.9) 2025-06-05T23:29:45.1693828Z Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from jinja2->torch>=1.8->lm_eval==0.4.5) (3.0.2) 2025-06-05T23:29:45.1694784Z Collecting click (from nltk->rouge-score>=0.0.4->lm_eval==0.4.5) 2025-06-05T23:29:45.1695378Z Downloading click-8.2.1-py3-none-any.whl.metadata (2.5 kB) 2025-06-05T23:29:45.1696311Z Requirement already satisfied: antlr4-python3-runtime==4.9.* in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from omegaconf->torchtune) (4.9.3) 2025-06-05T23:29:45.1697692Z Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas->datasets>=2.16.0->lm_eval==0.4.5) (2.9.0.post0) 2025-06-05T23:29:45.1699075Z Requirement already satisfied: pytz>=2020.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas->datasets>=2.16.0->lm_eval==0.4.5) (2025.2) 2025-06-05T23:29:45.1700623Z Requirement already satisfied: tzdata>=2022.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas->datasets>=2.16.0->lm_eval==0.4.5) (2025.2) 2025-06-05T23:29:45.1701902Z Requirement already satisfied: setuptools>=38.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytablewriter->lm_eval==0.4.5) (78.1.1) 2025-06-05T23:29:45.1702819Z Collecting DataProperty<2,>=1.1.0 (from pytablewriter->lm_eval==0.4.5) 2025-06-05T23:29:45.1703444Z Downloading DataProperty-1.1.0-py3-none-any.whl.metadata (11 kB) 2025-06-05T23:29:45.1703993Z Collecting mbstrdecoder<2,>=1.0.0 (from pytablewriter->lm_eval==0.4.5) 2025-06-05T23:29:45.1704613Z Downloading mbstrdecoder-1.1.4-py3-none-any.whl.metadata (4.3 kB) 2025-06-05T23:29:45.1705219Z Collecting pathvalidate<4,>=2.3.0 (from pytablewriter->lm_eval==0.4.5) 2025-06-05T23:29:45.1705992Z Downloading pathvalidate-3.2.3-py3-none-any.whl.metadata (12 kB) 2025-06-05T23:29:45.1706579Z Collecting tabledata<2,>=1.3.1 (from pytablewriter->lm_eval==0.4.5) 2025-06-05T23:29:45.1707130Z Downloading tabledata-1.3.4-py3-none-any.whl.metadata (3.7 kB) 2025-06-05T23:29:45.1707686Z Collecting tcolorpy<1,>=0.0.5 (from pytablewriter->lm_eval==0.4.5) 2025-06-05T23:29:45.1708253Z Downloading tcolorpy-0.1.7-py3-none-any.whl.metadata (6.3 kB) 2025-06-05T23:29:45.1708998Z Collecting typepy<2,>=1.3.2 (from typepy[datetime]<2,>=1.3.2->pytablewriter->lm_eval==0.4.5) 2025-06-05T23:29:45.1709719Z Downloading typepy-1.3.4-py3-none-any.whl.metadata (9.2 kB) 2025-06-05T23:29:45.1710529Z Collecting chardet<6,>=3.0.4 (from mbstrdecoder<2,>=1.0.0->pytablewriter->lm_eval==0.4.5) 2025-06-05T23:29:45.1711253Z Downloading chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB) 2025-06-05T23:29:45.1711722Z Downloading lm_eval-0.4.5-py3-none-any.whl (2.4 MB) 2025-06-05T23:29:45.1721591Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.4 MB ? eta -:--:-- 2025-06-05T23:29:45.1722330Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/2.4 MB 124.4 MB/s eta 0:00:00 2025-06-05T23:29:45.1722973Z [?25hDownloading snakeviz-2.2.2-py3-none-any.whl (183 kB) 2025-06-05T23:29:45.1723475Z Downloading accelerate-1.7.0-py3-none-any.whl (362 kB) 2025-06-05T23:29:45.1723942Z Downloading evaluate-0.4.3-py3-none-any.whl (84 kB) 2025-06-05T23:29:45.1724373Z Downloading peft-0.15.2-py3-none-any.whl (411 kB) 2025-06-05T23:29:45.1724832Z Downloading pybind11-2.13.6-py3-none-any.whl (243 kB) 2025-06-05T23:29:45.1725260Z Downloading sacrebleu-2.5.1-py3-none-any.whl (104 kB) 2025-06-05T23:29:45.1725921Z Downloading scikit_learn-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.9 MB) 2025-06-05T23:29:45.1726782Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/12.9 MB ? eta -:--:-- 2025-06-05T23:29:45.1727540Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.9/12.9 MB 128.2 MB/s eta 0:00:00 2025-06-05T23:29:45.1728183Z [?25hDownloading joblib-1.5.1-py3-none-any.whl (307 kB) 2025-06-05T23:29:45.1728899Z Downloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (37.7 MB) 2025-06-05T23:29:45.1729718Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/37.7 MB ? eta -:--:-- 2025-06-05T23:29:45.1730414Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 37.7/37.7 MB 269.3 MB/s eta 0:00:00 2025-06-05T23:29:45.1731069Z [?25hDownloading threadpoolctl-3.6.0-py3-none-any.whl (18 kB) 2025-06-05T23:29:45.1731827Z Downloading tornado-6.5.1-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (443 kB) 2025-06-05T23:29:45.1732525Z Downloading absl_py-2.3.0-py3-none-any.whl (135 kB) 2025-06-05T23:29:45.1732948Z Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB) 2025-06-05T23:29:45.1733451Z Downloading jsonlines-4.0.0-py3-none-any.whl (8.7 kB) 2025-06-05T23:29:45.1733882Z Downloading more_itertools-10.7.0-py3-none-any.whl (65 kB) 2025-06-05T23:29:45.1734312Z Downloading nltk-3.9.1-py3-none-any.whl (1.5 MB) 2025-06-05T23:29:45.1734889Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.5 MB ? eta -:--:-- 2025-06-05T23:29:45.1735603Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 153.7 MB/s eta 0:00:00 2025-06-05T23:29:45.1736151Z [?25hDownloading click-8.2.1-py3-none-any.whl (102 kB) 2025-06-05T23:29:45.1736729Z Downloading numexpr-2.10.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (397 kB) 2025-06-05T23:29:45.1737389Z Downloading portalocker-3.1.1-py3-none-any.whl (19 kB) 2025-06-05T23:29:45.1737829Z Downloading pytablewriter-1.2.1-py3-none-any.whl (91 kB) 2025-06-05T23:29:45.1738282Z Downloading DataProperty-1.1.0-py3-none-any.whl (27 kB) 2025-06-05T23:29:45.1738763Z Downloading mbstrdecoder-1.1.4-py3-none-any.whl (7.9 kB) 2025-06-05T23:29:45.1739190Z Downloading chardet-5.2.0-py3-none-any.whl (199 kB) 2025-06-05T23:29:45.1739620Z Downloading pathvalidate-3.2.3-py3-none-any.whl (24 kB) 2025-06-05T23:29:45.1740036Z Downloading tabledata-1.3.4-py3-none-any.whl (11 kB) 2025-06-05T23:29:45.1740454Z Downloading tcolorpy-0.1.7-py3-none-any.whl (8.1 kB) 2025-06-05T23:29:45.1740843Z Downloading typepy-1.3.4-py3-none-any.whl (31 kB) 2025-06-05T23:29:45.1741290Z Downloading tqdm_multiprocess-0.0.11-py3-none-any.whl (9.8 kB) 2025-06-05T23:29:45.1741904Z Downloading zstandard-0.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB) 2025-06-05T23:29:45.1742723Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/5.4 MB ? eta -:--:-- 2025-06-05T23:29:45.1743397Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.4/5.4 MB 215.6 MB/s eta 0:00:00 2025-06-05T23:29:45.1744130Z [?25hBuilding wheels for collected packages: rouge-score, sqlitedict, word2number 2025-06-05T23:29:45.1746686Z  DEPRECATION: Building 'rouge-score' using the legacy setup.py bdist_wheel mechanism, which will be removed in a future version. pip 25.3 will enforce this behaviour change. A possible replacement is to use the standardized build interface by setting the `--use-pep517` option, (possibly combined with `--no-build-isolation`), or adding a `pyproject.toml` file to the source tree of 'rouge-score'. Discussion can be found at https://github.com/pypa/pip/issues/6334 2025-06-05T23:29:45.1748789Z  Building wheel for rouge-score (setup.py) ... [?25l- done 2025-06-05T23:29:45.1749805Z [?25h Created wheel for rouge-score: filename=rouge_score-0.1.2-py3-none-any.whl size=24988 sha256=3a8c39a69b454d4d4e476152182e49dd60ab9af7060e5a13a7d12430a224219a 2025-06-05T23:29:45.1750913Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/5f/dd/89/461065a73be61a532ff8599a28e9beef17985c9e9c31e541b4 2025-06-05T23:29:45.1753522Z  DEPRECATION: Building 'sqlitedict' using the legacy setup.py bdist_wheel mechanism, which will be removed in a future version. pip 25.3 will enforce this behaviour change. A possible replacement is to use the standardized build interface by setting the `--use-pep517` option, (possibly combined with `--no-build-isolation`), or adding a `pyproject.toml` file to the source tree of 'sqlitedict'. Discussion can be found at https://github.com/pypa/pip/issues/6334 2025-06-05T23:29:45.1755607Z  Building wheel for sqlitedict (setup.py) ... [?25l- done 2025-06-05T23:29:45.1756633Z [?25h Created wheel for sqlitedict: filename=sqlitedict-2.1.0-py3-none-any.whl size=16958 sha256=bef5d6d4b319973222634bcb48ef4090018246786caacee8a5f8269516f59109 2025-06-05T23:29:45.1757814Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/79/d6/e7/304e0e6cb2221022c26d8161f7c23cd4f259a9e41e8bbcfabd 2025-06-05T23:29:45.1760404Z  DEPRECATION: Building 'word2number' using the legacy setup.py bdist_wheel mechanism, which will be removed in a future version. pip 25.3 will enforce this behaviour change. A possible replacement is to use the standardized build interface by setting the `--use-pep517` option, (possibly combined with `--no-build-isolation`), or adding a `pyproject.toml` file to the source tree of 'word2number'. Discussion can be found at https://github.com/pypa/pip/issues/6334 2025-06-05T23:29:45.1762463Z  Building wheel for word2number (setup.py) ... [?25l- done 2025-06-05T23:29:52.7738721Z [?25h Created wheel for word2number: filename=word2number-1.1-py3-none-any.whl size=5658 sha256=de28392c90bc490d365e2be3b96587d7bf2369dab919614cdba72e1be416ba8d 2025-06-05T23:29:52.7739946Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/84/ff/26/d3cfbd971e96c5aa3737ecfced81628830d7359b55fbb8ca3b 2025-06-05T23:29:52.7740645Z Successfully built rouge-score sqlitedict word2number 2025-06-05T23:29:52.7742430Z Installing collected packages: word2number, sqlitedict, zstandard, tornado, threadpoolctl, tcolorpy, scipy, pybind11, portalocker, pathvalidate, numexpr, more-itertools, jsonlines, joblib, colorama, click, chardet, absl-py, tqdm-multiprocess, snakeviz, scikit-learn, sacrebleu, nltk, mbstrdecoder, typepy, rouge-score, accelerate, peft, DataProperty, tabledata, evaluate, pytablewriter, lm_eval 2025-06-05T23:29:52.7744287Z [?25l 2025-06-05T23:29:52.7744750Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/33 [tornado] 2025-06-05T23:29:52.7745483Z  ━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/33 [threadpoolctl] 2025-06-05T23:29:52.7746092Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7746762Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7747354Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7747940Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7748588Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7749162Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7749749Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7750350Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7750922Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7751523Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7752097Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7752691Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7753274Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7753857Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7754443Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7755056Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7755660Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7756278Z  ━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/33 [scipy] 2025-06-05T23:29:52.7756861Z  ━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━ 13/33 [joblib] 2025-06-05T23:29:52.7757485Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━ 15/33 [click] 2025-06-05T23:29:52.7758066Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 17/33 [absl-py] 2025-06-05T23:29:52.7758694Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 20/33 [scikit-learn] 2025-06-05T23:29:52.7759317Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 20/33 [scikit-learn] 2025-06-05T23:29:52.7759937Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 20/33 [scikit-learn] 2025-06-05T23:29:52.7760557Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 20/33 [scikit-learn] 2025-06-05T23:29:52.7761174Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 20/33 [scikit-learn] 2025-06-05T23:29:52.7761790Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 20/33 [scikit-learn] 2025-06-05T23:29:52.7762413Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 20/33 [scikit-learn] 2025-06-05T23:29:52.7763055Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 20/33 [scikit-learn] 2025-06-05T23:29:52.7763668Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 20/33 [scikit-learn] 2025-06-05T23:29:52.7764322Z  ━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━ 20/33 [scikit-learn] 2025-06-05T23:29:52.7764919Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 22/33 [nltk] 2025-06-05T23:29:52.7765776Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 22/33 [nltk] 2025-06-05T23:29:52.7766344Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 22/33 [nltk] 2025-06-05T23:29:52.7766921Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 22/33 [nltk] 2025-06-05T23:29:52.7767593Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━ 26/33 [accelerate] 2025-06-05T23:29:52.7768196Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 27/33 [peft] 2025-06-05T23:29:52.7768787Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 30/33 [evaluate] 2025-06-05T23:29:52.7769394Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 32/33 [lm_eval] 2025-06-05T23:30:51.8574758Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 32/33 [lm_eval] 2025-06-05T23:30:51.8575926Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 32/33 [lm_eval] 2025-06-05T23:30:51.8576971Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 32/33 [lm_eval] 2025-06-05T23:30:51.8578019Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 32/33 [lm_eval] 2025-06-05T23:30:51.8578686Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 33/33 [lm_eval] 2025-06-05T23:30:51.8579163Z [?25h 2025-06-05T23:30:51.8581745Z Successfully installed DataProperty-1.1.0 absl-py-2.3.0 accelerate-1.7.0 chardet-5.2.0 click-8.2.1 colorama-0.4.6 evaluate-0.4.3 joblib-1.5.1 jsonlines-4.0.0 lm_eval-0.4.5 mbstrdecoder-1.1.4 more-itertools-10.7.0 nltk-3.9.1 numexpr-2.10.2 pathvalidate-3.2.3 peft-0.15.2 portalocker-3.1.1 pybind11-2.13.6 pytablewriter-1.2.1 rouge-score-0.1.2 sacrebleu-2.5.1 scikit-learn-1.7.0 scipy-1.15.3 snakeviz-2.2.2 sqlitedict-2.1.0 tabledata-1.3.4 tcolorpy-0.1.7 threadpoolctl-3.6.0 tornado-6.5.1 tqdm-multiprocess-0.0.11 typepy-1.3.4 word2number-1.1 zstandard-0.23.0 2025-06-05T23:30:51.8584117Z Failed to import examples.models due to lm_eval conflict. Removing lm_eval examples module 2025-06-05T23:30:51.8585052Z + bash .ci/scripts/test_llama.sh -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload artifacts-to-be-uploaded/fp32-xnnpack-custom 2025-06-05T23:30:51.8585912Z ++ dirname .ci/scripts/test_llama.sh 2025-06-05T23:30:51.8586244Z + source .ci/scripts/utils.sh 2025-06-05T23:30:51.8586506Z + [[ 10 -gt 0 ]] 2025-06-05T23:30:51.8586710Z + case "$1" in 2025-06-05T23:30:51.8586934Z + MODEL_NAME=stories110M 2025-06-05T23:30:51.8587176Z + shift 2 2025-06-05T23:30:51.8587361Z + [[ 8 -gt 0 ]] 2025-06-05T23:30:51.8587572Z + case "$1" in 2025-06-05T23:30:51.8587773Z + BUILD_TOOL=cmake 2025-06-05T23:30:51.8588078Z + shift 2 2025-06-05T23:30:51.8588262Z + [[ 6 -gt 0 ]] 2025-06-05T23:30:51.8588472Z + case "$1" in 2025-06-05T23:30:51.8588666Z + DTYPE=fp16 2025-06-05T23:30:51.8588871Z + shift 2 2025-06-05T23:30:51.8589049Z + [[ 4 -gt 0 ]] 2025-06-05T23:30:51.8589261Z + case "$1" in 2025-06-05T23:30:51.8589455Z + MODE=portable 2025-06-05T23:30:51.8589662Z + shift 2 2025-06-05T23:30:51.8589841Z + [[ 2 -gt 0 ]] 2025-06-05T23:30:51.8590047Z + case "$1" in 2025-06-05T23:30:51.8590405Z + UPLOAD_DIR=artifacts-to-be-uploaded/fp32-xnnpack-custom 2025-06-05T23:30:51.8590754Z + shift 2 2025-06-05T23:30:51.8590948Z + [[ 0 -gt 0 ]] 2025-06-05T23:30:51.8591149Z + MODE=portable 2025-06-05T23:30:51.8591455Z + UPLOAD_DIR=artifacts-to-be-uploaded/fp32-xnnpack-custom 2025-06-05T23:30:51.8591809Z + PT2E_QUANTIZE= 2025-06-05T23:30:51.8592041Z + CMAKE_BUILD_TYPE=Release 2025-06-05T23:30:51.8592274Z + [[ 0 -lt 4 ]] 2025-06-05T23:30:51.8592533Z + echo 'Expecting atleast 4 positional arguments' 2025-06-05T23:30:51.8592884Z Expecting atleast 4 positional arguments 2025-06-05T23:30:51.8593192Z + echo 'Usage: [...]' 2025-06-05T23:30:51.8593421Z Usage: [...] 2025-06-05T23:30:51.8593621Z + [[ -z stories110M ]] 2025-06-05T23:30:51.8593854Z + [[ -z cmake ]] 2025-06-05T23:30:51.8594053Z + [[ -z fp16 ]] 2025-06-05T23:30:51.8594303Z + [[ -z portable ]] 2025-06-05T23:30:51.8594528Z + [[ portable =~ .*xnnpack.* ]] 2025-06-05T23:30:51.8594793Z + XNNPACK=OFF 2025-06-05T23:30:51.8595004Z + [[ portable =~ .*custom.* ]] 2025-06-05T23:30:51.8595265Z + CUSTOM=OFF 2025-06-05T23:30:51.8595468Z + [[ portable =~ .*qe.* ]] 2025-06-05T23:30:51.8595710Z + QE=OFF 2025-06-05T23:30:51.8595900Z + [[ portable =~ .*mps.* ]] 2025-06-05T23:30:51.8596147Z + MPS=OFF 2025-06-05T23:30:51.8596352Z + echo 'MPS option OFF' 2025-06-05T23:30:51.8596577Z MPS option OFF 2025-06-05T23:30:51.8596796Z + [[ portable =~ .*coreml.* ]] 2025-06-05T23:30:51.8597037Z + COREML=OFF 2025-06-05T23:30:51.8597258Z + [[ portable =~ .*quantize_kv.* ]] 2025-06-05T23:30:51.8597528Z + QUANTIZE_KV_CACHE=OFF 2025-06-05T23:30:51.8597778Z + echo 'COREML option OFF' 2025-06-05T23:30:51.8598016Z COREML option OFF 2025-06-05T23:30:51.8598240Z + [[ portable =~ .*qnn.* ]] 2025-06-05T23:30:51.8598470Z + QNN=OFF 2025-06-05T23:30:51.8598664Z + QNN_SDK_ROOT= 2025-06-05T23:30:51.8598871Z + echo 'QNN option OFF' 2025-06-05T23:30:51.8599107Z QNN option OFF 2025-06-05T23:30:51.8599313Z + echo 'QNN_SDK_ROOT: ' 2025-06-05T23:30:51.8599552Z QNN_SDK_ROOT: 2025-06-05T23:30:51.8599766Z + [[ -z '' ]] 2025-06-05T23:30:51.8599960Z + BUCK=buck2 2025-06-05T23:30:51.8600163Z + [[ -z '' ]] 2025-06-05T23:30:51.8600369Z + PYTHON_EXECUTABLE=python3 2025-06-05T23:30:51.8600667Z + which python3 2025-06-05T23:30:51.8600888Z /opt/conda/envs/py_3.10/bin/python3 2025-06-05T23:30:51.8601179Z + PARAMS=params.json 2025-06-05T23:30:51.8601408Z + CHECKPOINT_FILE_NAME= 2025-06-05T23:30:51.8601649Z + touch params.json 2025-06-05T23:30:51.8601874Z + [[ stories110M == \l\l\a\m\a ]] 2025-06-05T23:30:51.8602165Z + [[ stories110M == \s\t\o\r\i\e\s* ]] 2025-06-05T23:30:51.8602485Z + CHECKPOINT_FILE_NAME=stories110M.pt 2025-06-05T23:30:51.8602783Z + download_stories_model_artifacts 2025-06-05T23:30:51.8603385Z + curl -Ls https://huggingface.co/karpathy/tinyllamas/resolve/main/stories110M.pt --output stories110M.pt 2025-06-05T23:30:51.8604263Z + curl -Ls https://raw.githubusercontent.com/karpathy/llama2.c/master/tokenizer.model --output tokenizer.model 2025-06-05T23:30:51.8604864Z + touch params.json 2025-06-05T23:30:51.8605266Z + echo '{"dim": 768, "multiple_of": 32, "n_heads": 12, "n_layers": 12, "norm_eps": 1e-05, "vocab_size": 32000}' 2025-06-05T23:30:51.8605773Z + EXPORTED_MODEL_NAME=tinyllama_portable_fp16 2025-06-05T23:30:51.8606101Z + [[ fp16 == \f\p\1\6 ]] 2025-06-05T23:30:51.8606380Z + EXPORTED_MODEL_NAME=tinyllama_portable_fp16_h 2025-06-05T23:30:51.8606762Z + EXPORTED_MODEL_NAME=tinyllama_portable_fp16_h.pte 2025-06-05T23:30:51.8607134Z + echo 'Exporting tinyllama_portable_fp16_h.pte' 2025-06-05T23:30:51.8607486Z Exporting tinyllama_portable_fp16_h.pte 2025-06-05T23:30:51.8608015Z + EXPORT_ARGS='-c stories110M.pt -p params.json -d fp16 -n tinyllama_portable_fp16_h.pte -kv' 2025-06-05T23:30:51.8608509Z + [[ OFF == \O\N ]] 2025-06-05T23:30:51.8608715Z + [[ OFF == \O\N ]] 2025-06-05T23:30:51.8608932Z + [[ OFF == \O\N ]] 2025-06-05T23:30:51.8609135Z + [[ OFF == \O\N ]] 2025-06-05T23:30:51.8609354Z + [[ OFF == \O\N ]] 2025-06-05T23:30:51.8609569Z + [[ OFF == \O\N ]] 2025-06-05T23:30:51.8609768Z + [[ OFF == \O\N ]] 2025-06-05T23:30:51.8610366Z + python3 -m examples.models.llama.export_llama -c stories110M.pt -p params.json -d fp16 -n tinyllama_portable_fp16_h.pte -kv 2025-06-05T23:30:51.8611103Z [INFO 2025-06-05 23:29:59,077 utils.py:162] NumExpr defaulting to 8 threads. 2025-06-05T23:30:51.8611623Z [INFO 2025-06-05 23:29:59,518 export_llama_lib.py:750] Applying quantizers: [] 2025-06-05T23:30:51.8612382Z [WARNING 2025-06-05 23:29:59,562 export_llama_lib.py:679] Checkpoint dtype torch.float32 precision is higher than dtype override torch.float16. 2025-06-05T23:30:51.8613177Z [INFO 2025-06-05 23:29:59,665 export_llama_lib.py:687] Checkpoint dtype: torch.float32 2025-06-05T23:30:51.8613764Z [INFO 2025-06-05 23:29:59,666 builder.py:183] Model after source transforms: Transformer( 2025-06-05T23:30:51.8614246Z (tok_embeddings): Embedding(32000, 768) 2025-06-05T23:30:51.8614552Z (layers): ModuleList( 2025-06-05T23:30:51.8614795Z (0-11): 12 x TransformerBlock( 2025-06-05T23:30:51.8615083Z (attention): AttentionMHA( 2025-06-05T23:30:51.8615414Z (wq): Linear(in_features=768, out_features=768, bias=False) 2025-06-05T23:30:51.8615837Z (wk): Linear(in_features=768, out_features=768, bias=False) 2025-06-05T23:30:51.8616258Z (wv): Linear(in_features=768, out_features=768, bias=False) 2025-06-05T23:30:51.8616661Z (wo): Linear(in_features=768, out_features=768, bias=False) 2025-06-05T23:30:51.8617015Z (rope): Rope( 2025-06-05T23:30:51.8617271Z (apply_rotary_emb): RotaryEmbedding() 2025-06-05T23:30:51.8617579Z ) 2025-06-05T23:30:51.8617778Z (kv_cache): KVCache() 2025-06-05T23:30:51.8618038Z (SDPA): SDPA() 2025-06-05T23:30:51.8618249Z ) 2025-06-05T23:30:51.8618462Z (feed_forward): FeedForward( 2025-06-05T23:30:51.8618803Z (w1): Linear(in_features=768, out_features=2048, bias=False) 2025-06-05T23:30:51.8619228Z (w2): Linear(in_features=2048, out_features=768, bias=False) 2025-06-05T23:30:51.8619647Z (w3): Linear(in_features=768, out_features=2048, bias=False) 2025-06-05T23:30:51.8619982Z ) 2025-06-05T23:30:51.8620190Z (attention_norm): RMSNorm() 2025-06-05T23:30:51.8620457Z (ffn_norm): RMSNorm() 2025-06-05T23:30:51.8620779Z ) 2025-06-05T23:30:51.8620953Z ) 2025-06-05T23:30:51.8621141Z (rope): Rope( 2025-06-05T23:30:51.8621373Z (apply_rotary_emb): RotaryEmbedding() 2025-06-05T23:30:51.8621668Z ) 2025-06-05T23:30:51.8621850Z (norm): RMSNorm() 2025-06-05T23:30:51.8622171Z (output): Linear(in_features=768, out_features=32000, bias=False) 2025-06-05T23:30:51.8622551Z ) 2025-06-05T23:30:51.8622804Z [INFO 2025-06-05 23:29:59,666 builder.py:243] Exporting with: 2025-06-05T23:30:51.8623350Z [INFO 2025-06-05 23:29:59,668 builder.py:244] inputs: (tensor([[2, 3, 4]]), {'input_pos': tensor([0])}) 2025-06-05T23:30:51.8623875Z [INFO 2025-06-05 23:29:59,668 builder.py:245] kwargs: None 2025-06-05T23:30:51.8624472Z [INFO 2025-06-05 23:29:59,668 builder.py:246] dynamic shapes: ({1: Dim('token_dim', min=0, max=127)}, {'input_pos': {0: 1}}) 2025-06-05T23:30:51.8625183Z [INFO 2025-06-05 23:30:07,379 builder.py:282] Running canonical pass: RemoveRedundantTransposes 2025-06-05T23:30:51.8625910Z [INFO 2025-06-05 23:30:07,423 builder.py:370] Using pt2e [] to quantizing the model... 2025-06-05T23:30:51.8626465Z [INFO 2025-06-05 23:30:07,423 builder.py:430] No quantizer provided, passing... 2025-06-05T23:30:51.8627063Z [INFO 2025-06-05 23:30:37,117 export_llama_lib.py:971] Lowering model using following partitioner(s): 2025-06-05T23:30:51.8628936Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/executorch/exir/emit/_emitter.py:1593: UserWarning: Mutation on a buffer in the model is detected. ExecuTorch assumes buffers that are mutated in the graph have a meaningless initial state, only the shape and dtype will be serialized, unless a pass which sets meta["et_init_buffer"] to True such as InitializedMutableBufferPass is run. 2025-06-05T23:30:51.8630569Z warnings.warn( 2025-06-05T23:30:51.8630971Z [INFO 2025-06-05 23:30:49,287 builder.py:553] Required memory for activation in bytes: [0, 13015552] 2025-06-05T23:30:51.8631516Z modelname: tinyllama_portable_fp16_h 2025-06-05T23:30:51.8631831Z output_file: tinyllama_portable_fp16_h.pte 2025-06-05T23:30:51.8632336Z [INFO 2025-06-05 23:30:49,366 utils.py:141] Saved exported program to tinyllama_portable_fp16_h.pte 2025-06-05T23:30:51.8632816Z + echo 'Creating tokenizer.bin' 2025-06-05T23:30:51.8633096Z Creating tokenizer.bin 2025-06-05T23:30:51.8633556Z + python3 -m pytorch_tokenizers.tools.llama2c.convert -t tokenizer.model -o tokenizer.bin 2025-06-05T23:30:51.8634443Z + RUNTIME_ARGS='--model_path=tinyllama_portable_fp16_h.pte --tokenizer_path=tokenizer.bin --prompt=Once --temperature=0 --seq_len=10 --warmup=1' 2025-06-05T23:30:51.8635274Z + echo 'Running tinyllama_portable_fp16_h.pte in portable mode' 2025-06-05T23:30:51.8635716Z Running tinyllama_portable_fp16_h.pte in portable mode 2025-06-05T23:30:51.8636075Z + [[ cmake == \b\u\c\k\2 ]] 2025-06-05T23:30:51.8636317Z + [[ cmake == \c\m\a\k\e ]] 2025-06-05T23:30:51.8636589Z + cmake_install_executorch_libraries 2025-06-05T23:30:51.8637041Z + echo 'Installing libexecutorch.a, libextension_module.so, libportable_ops_lib.a' 2025-06-05T23:30:51.8637667Z Installing libexecutorch.a, libextension_module.so, libportable_ops_lib.a 2025-06-05T23:30:51.8638111Z + rm -rf cmake-out 2025-06-05T23:30:51.8638750Z + retry cmake --preset llm -DCMAKE_INSTALL_PREFIX=cmake-out -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_BUILD_QNN=OFF -DQNN_SDK_ROOT= -Bcmake-out . 2025-06-05T23:30:51.8639811Z + cmake --preset llm -DCMAKE_INSTALL_PREFIX=cmake-out -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_BUILD_QNN=OFF -DQNN_SDK_ROOT= -Bcmake-out . 2025-06-05T23:30:51.8640470Z Preset CMake variables: 2025-06-05T23:30:51.8640636Z 2025-06-05T23:30:51.8640744Z CMAKE_OSX_DEPLOYMENT_TARGET="12.0" 2025-06-05T23:30:55.5646036Z EXECUTORCH_BUILD_PRESET_FILE="/pytorch/executorch/tools/cmake/preset/llm.cmake" 2025-06-05T23:30:55.5646524Z 2025-06-05T23:30:55.5646662Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:30:55.5647229Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:30:55.5647711Z -- Detecting C compiler ABI info 2025-06-05T23:30:55.5648533Z -- Detecting C compiler ABI info - done 2025-06-05T23:30:55.5649044Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:30:55.5649435Z -- Detecting C compile features 2025-06-05T23:30:55.5649784Z -- Detecting C compile features - done 2025-06-05T23:30:55.5650088Z -- Detecting CXX compiler ABI info 2025-06-05T23:30:55.5650410Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:30:55.5650806Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:30:55.5651187Z -- Detecting CXX compile features 2025-06-05T23:30:55.5651498Z -- Detecting CXX compile features - done 2025-06-05T23:30:55.5651930Z -- Loading build preset: /pytorch/executorch/tools/cmake/preset/llm.cmake 2025-06-05T23:30:55.5652376Z -- --- Configured Options --- 2025-06-05T23:30:55.5652558Z 2025-06-05T23:30:55.5652680Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:30:55.5653035Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:30:55.5653389Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:30:55.5653757Z -- PYTHON_EXECUTABLE : python 2025-06-05T23:30:55.5654122Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:30:55.5654472Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:30:55.5654822Z -- BUCK2 x (unset) 2025-06-05T23:30:55.5655388Z -- EXECUTORCH_BUILD_PRESET_FILE : /pytorch/executorch/tools/cmake/preset/llm.cmake 2025-06-05T23:30:55.5655903Z -- EXECUTORCH_ENABLE_LOGGING : OFF 2025-06-05T23:30:55.5656247Z -- EXECUTORCH_BUILD_COREML : OFF 2025-06-05T23:30:55.5656614Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:30:55.5656982Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:30:55.5657572Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:30:55.5658113Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:30:55.5658465Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:30:55.5658826Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:30:55.5659160Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:30:55.5659508Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:30:55.5659860Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : ON 2025-06-05T23:30:55.5660199Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : OFF 2025-06-05T23:30:55.5660554Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : OFF 2025-06-05T23:30:55.5660898Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : ON 2025-06-05T23:30:55.5661307Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : ON 2025-06-05T23:30:55.5661650Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:30:55.5662002Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : ON 2025-06-05T23:30:55.5662350Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : OFF 2025-06-05T23:30:55.5662708Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-06-05T23:30:55.5663065Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:30:55.5663413Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:30:55.5663762Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:30:55.5664090Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:30:55.5664435Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:30:55.5664773Z -- EXECUTORCH_BUILD_PYBIND : OFF 2025-06-05T23:30:55.5665306Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:30:55.5665750Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : ON 2025-06-05T23:30:55.5666111Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-06-05T23:30:55.5666465Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-06-05T23:30:55.5666800Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:30:55.5667145Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:30:55.5667479Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:30:55.5667828Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:30:55.5668224Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-06-05T23:30:55.5668570Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:30:55.5668909Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:30:55.5669256Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:30:55.5669604Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:30:55.5669941Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:30:55.5670288Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:30:55.5670626Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:30:55.5670981Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:30:55.5671317Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:30:55.5671667Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:30:55.5672014Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:30:55.5672370Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:30:55.5672731Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:30:55.5673045Z -- -------------------------- 2025-06-05T23:30:55.5673467Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:30:55.5674442Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:30:55.5675098Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:30:55.5675502Z CMake. 2025-06-05T23:30:55.5675626Z 2025-06-05T23:30:55.5675848Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:30:55.5676397Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:30:55.5676859Z to work with policies introduced by or earlier. 2025-06-05T23:30:55.5677151Z 2025-06-05T23:30:55.5677265Z  2025-06-05T23:30:55.5677523Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:30:55.5677970Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:30:55.5678343Z -- Setting Clang compiler options 2025-06-05T23:30:55.5679039Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:30:55.5680140Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:30:55.5680854Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:30:55.5681266Z CMake. 2025-06-05T23:30:55.5681373Z 2025-06-05T23:30:55.5681630Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:30:55.5682181Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:30:55.5682647Z to work with policies introduced by or earlier. 2025-06-05T23:30:55.5682905Z 2025-06-05T23:30:55.5683003Z  2025-06-05T23:30:55.5683608Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:30:55.5684330Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:30:55.5684741Z CMake. 2025-06-05T23:30:55.5684850Z 2025-06-05T23:30:55.5685069Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:30:55.5685623Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:30:55.5686102Z to work with policies introduced by or earlier. 2025-06-05T23:30:55.5686350Z 2025-06-05T23:30:55.5686449Z  2025-06-05T23:30:55.5686669Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:30:55.5687023Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-06-05T23:30:55.5687365Z -- Found Threads: TRUE 2025-06-05T23:30:55.5688021Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:30:55.5688807Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:30:55.5689204Z CMake. 2025-06-05T23:30:55.5689326Z 2025-06-05T23:30:55.5689541Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:30:55.5690086Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:30:55.5690549Z to work with policies introduced by or earlier. 2025-06-05T23:30:55.5690811Z 2025-06-05T23:30:55.5690908Z  2025-06-05T23:30:55.5691104Z -- Resolved buck2 as buck2. 2025-06-05T23:30:55.5691375Z -- Killing buck2 daemon 2025-06-05T23:30:55.5691607Z 'buck2 killall' 2025-06-05T23:30:55.5691852Z -- executorch: Generating source lists 2025-06-05T23:30:55.5692371Z -- executorch: Generating source file list /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:30:55.5693050Z -- executorch: Using sources file /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:30:55.5693789Z 'python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-06-05T23:30:55.5694350Z -- Generating operator lib: 2025-06-05T23:30:55.5694629Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:30:55.5695018Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:30:55.5695439Z -- ROOT_OPS: 2025-06-05T23:30:55.5695682Z -- INCLUDE_ALL_OPS: 2025-06-05T23:30:55.5696937Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out/kernels/portable/portable_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/portable/functions.yaml" 2025-06-05T23:30:55.5698077Z -- Generating kernel bindings: 2025-06-05T23:30:55.5698350Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:30:55.5698750Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:30:55.5699187Z -- CUSTOM_OPS_YAML: 2025-06-05T23:30:55.5699449Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:30:55.5701151Z Generated files /pytorch/executorch/cmake-out/kernels/portable/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out/kernels/portable/portable_ops_lib/Functions.h;/pytorch/executorch/cmake-out/kernels/portable/portable_ops_lib/NativeFunctions.h 2025-06-05T23:30:55.5702607Z -- Generating operator lib: 2025-06-05T23:30:55.5702887Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:30:55.5703161Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:30:55.5703453Z -- DEPS: executorch_core 2025-06-05T23:30:55.5703700Z -- Generating operator lib: 2025-06-05T23:30:55.5703997Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:30:55.5704391Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:30:55.5704809Z -- ROOT_OPS: 2025-06-05T23:30:55.5705030Z -- INCLUDE_ALL_OPS: 2025-06-05T23:30:55.5706360Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out/kernels/optimized/optimized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/optimized/optimized.yaml" 2025-06-05T23:30:55.5707485Z -- Generating kernel bindings: 2025-06-05T23:30:55.5707754Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:30:55.5708162Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:30:55.5708574Z -- CUSTOM_OPS_YAML: 2025-06-05T23:30:55.5708835Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:30:55.5710568Z Generated files /pytorch/executorch/cmake-out/kernels/optimized/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out/kernels/optimized/optimized_ops_lib/Functions.h;/pytorch/executorch/cmake-out/kernels/optimized/optimized_ops_lib/NativeFunctions.h 2025-06-05T23:30:55.5712051Z -- Generating operator lib: 2025-06-05T23:30:55.5712335Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:30:55.5712616Z -- KERNEL_LIBS: optimized_kernels 2025-06-05T23:30:55.5712912Z -- DEPS: executorch_core 2025-06-05T23:30:55.5713205Z -- Merging kernel yaml files: 2025-06-05T23:31:01.1834942Z -- FUNCTIONS_YAML: /pytorch/executorch/configurations/../kernels/optimized/optimized.yaml 2025-06-05T23:31:01.1836379Z -- FALLBACK_YAML: /pytorch/executorch/configurations/../kernels/portable/functions.yaml 2025-06-05T23:31:01.1837433Z -- OUTPUT_DIR: /pytorch/executorch/cmake-out/configurations 2025-06-05T23:31:01.1838233Z -- Generating operator lib: 2025-06-05T23:31:01.1838770Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:31:01.1839582Z -- OPS_SCHEMA_YAML: /pytorch/executorch/cmake-out/configurations/merged.yaml 2025-06-05T23:31:01.1840392Z -- ROOT_OPS: 2025-06-05T23:31:01.1840795Z -- INCLUDE_ALL_OPS: 2025-06-05T23:31:01.1843429Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out/configurations/optimized_native_cpu_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/cmake-out/configurations/merged.yaml" 2025-06-05T23:31:01.1845613Z -- Generating kernel bindings: 2025-06-05T23:31:01.1846175Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:31:01.1846977Z -- FUNCTIONS_YAML: /pytorch/executorch/cmake-out/configurations/merged.yaml 2025-06-05T23:31:01.1847691Z -- CUSTOM_OPS_YAML: 2025-06-05T23:31:01.1848118Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:31:01.1852253Z Generated files /pytorch/executorch/cmake-out/configurations/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out/configurations/optimized_native_cpu_ops_lib/Functions.h;/pytorch/executorch/cmake-out/configurations/optimized_native_cpu_ops_lib/NativeFunctions.h 2025-06-05T23:31:01.1855210Z -- Generating operator lib: 2025-06-05T23:31:01.1855700Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:31:01.1856371Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-06-05T23:31:01.1857160Z -- DEPS: executorch_core 2025-06-05T23:31:01.1858188Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:31:01.1859350Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:31:01.1860047Z CMake. 2025-06-05T23:31:01.1860249Z 2025-06-05T23:31:01.1860625Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:31:01.1861600Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:31:01.1862420Z to work with policies introduced by or earlier. 2025-06-05T23:31:01.1862870Z 2025-06-05T23:31:01.1863051Z  2025-06-05T23:31:01.1863382Z -- Looking for C++ include unistd.h 2025-06-05T23:31:01.1864050Z -- Looking for C++ include unistd.h - found 2025-06-05T23:31:01.1864592Z -- Looking for C++ include stdint.h 2025-06-05T23:31:01.1865309Z -- Looking for C++ include stdint.h - found 2025-06-05T23:31:01.1865910Z -- Looking for C++ include inttypes.h 2025-06-05T23:31:01.1866444Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:31:01.1867008Z -- Looking for C++ include sys/types.h 2025-06-05T23:31:01.1867540Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:31:01.1868092Z -- Looking for C++ include sys/stat.h 2025-06-05T23:31:01.1868612Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:31:01.1869160Z -- Looking for C++ include fnmatch.h 2025-06-05T23:31:01.1869680Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:31:01.1870218Z -- Looking for C++ include stddef.h 2025-06-05T23:31:01.1870721Z -- Looking for C++ include stddef.h - found 2025-06-05T23:31:01.1871267Z -- Check size of uint32_t 2025-06-05T23:31:01.1871747Z -- Check size of uint32_t - done 2025-06-05T23:31:01.1872230Z -- Looking for strtoll 2025-06-05T23:31:01.1872676Z -- Looking for strtoll - found 2025-06-05T23:31:01.1873347Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-06-05T23:31:01.1874101Z -- Found assembler: /opt/cache/bin/cc 2025-06-05T23:31:01.1874678Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-05T23:31:01.1875927Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.16") found components: Interpreter 2025-06-05T23:31:01.1876939Z -- Generating microkernels.cmake 2025-06-05T23:31:01.1877620Z No microkernel found in src/reference/binary-elementwise.cc 2025-06-05T23:31:01.1878390Z No microkernel found in src/reference/packing.cc 2025-06-05T23:31:01.1879113Z No microkernel found in src/reference/unary-elementwise.cc 2025-06-05T23:31:01.1880393Z -- executorch: Using source file list /pytorch/executorch/cmake-out/extension/llm/custom_ops/../../../executorch_srcs.cmake 2025-06-05T23:31:01.1881542Z -- Generating operator lib: 2025-06-05T23:31:01.1882039Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:31:01.1882742Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:31:01.1883508Z -- ROOT_OPS: 2025-06-05T23:31:01.1883892Z -- INCLUDE_ALL_OPS: 2025-06-05T23:31:01.1886207Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/quantized/quantized.yaml" 2025-06-05T23:31:01.1888280Z -- Generating kernel bindings: 2025-06-05T23:31:01.1888789Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:31:01.1889294Z -- FUNCTIONS_YAML: 2025-06-05T23:31:01.1890078Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:31:01.1890879Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:31:01.1896694Z Generated files /pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/Functions.h;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/NativeFunctions.h;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/RegisterCPUCustomOps.cpp;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/RegisterSchema.cpp;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/CustomOpsNativeFunctions.h 2025-06-05T23:31:01.1901982Z -- Generating operator lib: 2025-06-05T23:31:01.1902437Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:31:01.1902921Z -- KERNEL_LIBS: quantized_kernels 2025-06-05T23:31:01.1903399Z -- DEPS: executorch_core 2025-06-05T23:31:01.1903841Z -- Configuring done (8.6s) 2025-06-05T23:31:01.1904268Z -- Generating done (0.4s) 2025-06-05T23:31:01.1904781Z CMake Warning: 2025-06-05T23:31:01.1905323Z Manually-specified variables were not used by the project: 2025-06-05T23:31:01.1905933Z 2025-06-05T23:31:01.1906066Z QNN_SDK_ROOT 2025-06-05T23:31:01.1906429Z 2025-06-05T23:31:01.1906621Z  2025-06-05T23:31:01.1907101Z -- Build files have been written to: /pytorch/executorch/cmake-out 2025-06-05T23:31:01.1907921Z + cmake --build cmake-out -j9 --target install --config Release 2025-06-05T23:31:01.1908900Z [ 0%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:31:01.1909872Z [ 0%] Creating directories for 'flatcc_external_project' 2025-06-05T23:31:01.1911290Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:31:01.1913083Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.o 2025-06-05T23:31:01.1914847Z [ 1%] Building C object extension/llm/custom_ops/spinquant/third-party/FFHT/CMakeFiles/dumb_fht.dir/dumb_fht.c.o 2025-06-05T23:31:01.1916576Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:31:01.1918376Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:31:01.1920285Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-06-05T23:31:01.1922088Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-06-05T23:31:01.1923553Z [ 1%] No download step for 'flatbuffers_external_project' 2025-06-05T23:31:01.1924487Z [ 1%] No download step for 'flatcc_external_project' 2025-06-05T23:31:01.1925408Z [ 1%] No update step for 'flatbuffers_external_project' 2025-06-05T23:31:01.1926331Z [ 1%] No update step for 'flatcc_external_project' 2025-06-05T23:31:01.1927231Z [ 1%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:31:01.1928092Z [ 1%] No patch step for 'flatcc_external_project' 2025-06-05T23:31:01.1929062Z [ 1%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:31:01.1929877Z CMake Warning: 2025-06-05T23:31:01.1930400Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:31:01.1930944Z 2025-06-05T23:31:01.1931118Z  2025-06-05T23:31:01.1931540Z fatal: No names found, cannot describe anything. 2025-06-05T23:31:01.1932556Z [ 1%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:31:01.1933548Z CMake Warning at CMake/Version.cmake:32 (message): 2025-06-05T23:31:01.1934240Z git describe failed with exit code: 128 2025-06-05T23:31:01.1934634Z 2025-06-05T23:31:01.1934937Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-06-05T23:31:01.1935708Z Call Stack (most recent call first): 2025-06-05T23:31:01.1936236Z CMakeLists.txt:5 (include) 2025-06-05T23:31:01.1936548Z 2025-06-05T23:31:01.1936750Z  2025-06-05T23:31:01.1937134Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:31:01.1937706Z CMake Warning: 2025-06-05T23:31:01.1938246Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:31:01.1938674Z 2025-06-05T23:31:01.1938827Z  2025-06-05T23:31:01.1939488Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:31:01.1940533Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:31:01.1941229Z CMake. 2025-06-05T23:31:01.1941416Z 2025-06-05T23:31:01.1941794Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:31:01.1942768Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:31:01.1943608Z to work with policies introduced by or earlier. 2025-06-05T23:31:01.1944056Z 2025-06-05T23:31:01.1944290Z  2025-06-05T23:31:01.1944815Z [ 1%] Linking C static library libdumb_fht.a 2025-06-05T23:31:01.1945539Z [ 1%] Built target dumb_fht 2025-06-05T23:31:01.1946874Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:31:01.1948877Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.o 2025-06-05T23:31:01.1950157Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:31:01.1951628Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-06-05T23:31:01.1953696Z [ 3%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:31:01.1954861Z -- Detecting C compiler ABI info 2025-06-05T23:31:01.1956115Z [ 3%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:31:01.1957901Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-06-05T23:31:01.1959492Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:31:01.1961112Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-06-05T23:31:02.0893437Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/init.c.o 2025-06-05T23:31:02.0894510Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:31:02.0895446Z [ 3%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.o 2025-06-05T23:31:02.0896078Z -- Detecting CXX compiler ABI info 2025-06-05T23:31:02.0896534Z [ 3%] Linking C static library libpthreadpool.a 2025-06-05T23:31:02.0897237Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:31:02.0898226Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/info.c.o 2025-06-05T23:31:02.0899188Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:31:02.0899742Z [ 3%] Built target pthreadpool 2025-06-05T23:31:02.0900416Z [ 4%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-06-05T23:31:02.0901023Z -- Detecting C compiler ABI info - done 2025-06-05T23:31:02.0901774Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/vendor.c.o 2025-06-05T23:31:02.0902470Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:31:02.0902854Z -- Detecting C compile features 2025-06-05T23:31:02.0903259Z -- Detecting C compile features - done 2025-06-05T23:31:02.0903630Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:31:02.0904077Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:31:02.0915394Z -- Setting Clang compiler options 2025-06-05T23:31:02.0916351Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:31:02.0917294Z -- Configuring done (0.3s) 2025-06-05T23:31:02.0918390Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-f16c-c8.c.o 2025-06-05T23:31:02.0920055Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-f16c-c8.c.o 2025-06-05T23:31:02.0921319Z -- Generating done (0.0s) 2025-06-05T23:31:02.0922357Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/src/flatcc_external_project-build 2025-06-05T23:31:02.0923545Z [ 4%] Performing build step for 'flatcc_external_project' 2025-06-05T23:31:02.0924477Z [ 4%] Linking CXX static library libgflags_nothreads.a 2025-06-05T23:31:02.0925392Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/uarch.c.o 2025-06-05T23:31:02.0926494Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:31:02.0927509Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:31:02.0928163Z [ 4%] Built target gflags_nothreads_static 2025-06-05T23:31:02.0928753Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:31:02.0929713Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-06-05T23:31:02.0930370Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:31:02.0931185Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/name.c.o 2025-06-05T23:31:02.0932188Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:31:02.0932913Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:31:02.0933320Z -- Detecting CXX compile features 2025-06-05T23:31:02.0933619Z -- Detecting CXX compile features - done 2025-06-05T23:31:02.0934411Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-06-05T23:31:02.0935080Z -- Looking for strtof_l 2025-06-05T23:31:02.0935777Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/topology.c.o 2025-06-05T23:31:02.0936930Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-06-05T23:31:02.0937800Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:31:02.0938907Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3-acc2.c.o 2025-06-05T23:31:02.0940091Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:31:02.0940680Z [ 5%] Built target indirection 2025-06-05T23:31:02.0941309Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:31:02.0942272Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:31:02.0943328Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/isa.c.o 2025-06-05T23:31:02.0944460Z [ 5%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-06-05T23:31:02.0945322Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:31:02.0946276Z [ 5%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-06-05T23:31:02.0947388Z [ 5%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-06-05T23:31:02.0948480Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/init.c.o 2025-06-05T23:31:02.0949524Z [ 5%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-06-05T23:31:02.0950757Z [ 5%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:31:02.0951768Z [ 12%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:31:02.0952622Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:31:02.0953208Z -- Looking for strtof_l - found 2025-06-05T23:31:02.0953487Z -- Looking for strtoull_l 2025-06-05T23:31:02.0954182Z [ 5%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-06-05T23:31:02.0955291Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:31:02.0956223Z [ 15%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:31:02.0957144Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:31:02.0958088Z [ 5%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-06-05T23:31:02.0959266Z [ 5%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3.c.o 2025-06-05T23:31:02.0960560Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:31:02.0961500Z [ 18%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:31:02.0962404Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:31:02.0963521Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/init.c.o 2025-06-05T23:31:02.0964166Z [ 5%] Built target logging 2025-06-05T23:31:02.0964889Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:31:02.0966390Z [ 21%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:31:02.0966929Z -- Looking for strtoull_l - found 2025-06-05T23:31:02.0967213Z -- Looking for realpath 2025-06-05T23:31:02.0968106Z [ 5%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3.c.o 2025-06-05T23:31:02.0969295Z [ 5%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-06-05T23:31:02.0970350Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:31:02.0971005Z [ 21%] Built target flatccrt 2025-06-05T23:31:02.0971759Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:31:02.0973653Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:31:02.0975304Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o 2025-06-05T23:31:02.0977290Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-u16.c.o 2025-06-05T23:31:02.0979335Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o 2025-06-05T23:31:02.0981236Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o 2025-06-05T23:31:02.0982779Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:31:02.9584345Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:31:02.9586542Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:31:02.9588724Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:31:02.9590705Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-06-05T23:31:02.9592874Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o 2025-06-05T23:31:02.9595440Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-u16.c.o 2025-06-05T23:31:02.9597602Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:31:02.9599206Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:31:02.9601161Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-06-05T23:31:02.9603238Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-06-05T23:31:02.9605447Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-u16.c.o 2025-06-05T23:31:02.9606956Z -- Looking for realpath - found 2025-06-05T23:31:02.9607587Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:31:02.9608740Z [ 6%] Linking C static library libcpuinfo_internals.a 2025-06-05T23:31:02.9609455Z -- Configuring done (1.3s) 2025-06-05T23:31:02.9610752Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:31:02.9611926Z -- Generating done (0.0s) 2025-06-05T23:31:02.9613301Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/src/flatbuffers_external_project-build 2025-06-05T23:31:02.9614773Z [ 6%] Built target cpuinfo_internals 2025-06-05T23:31:02.9615725Z [ 6%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:31:02.9617123Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:31:02.9618977Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-06-05T23:31:02.9621090Z [ 6%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-06-05T23:31:02.9622637Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:31:02.9623422Z [ 6%] Built target microparams-init 2025-06-05T23:31:02.9624825Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-06-05T23:31:02.9626827Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-06-05T23:31:02.9629151Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-06-05T23:31:02.9631441Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:31:02.9633414Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:31:02.9634441Z [ 6%] Built target normalization 2025-06-05T23:31:02.9635514Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:31:02.9637234Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-06-05T23:31:02.9638392Z [ 6%] Built target allocator 2025-06-05T23:31:02.9639675Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-06-05T23:31:02.9642033Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-06-05T23:31:02.9643969Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:31:02.9645212Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:31:02.9646240Z [ 6%] Linking C static library libcpuinfo.a 2025-06-05T23:31:02.9646910Z [ 6%] Built target cpuinfo 2025-06-05T23:31:02.9647800Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:31:02.9648643Z [ 6%] Built target packing 2025-06-05T23:31:02.9649544Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:31:02.9650727Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:31:02.9651961Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:31:02.9654101Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-u32.c.o 2025-06-05T23:31:02.9656457Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-06-05T23:31:02.9657999Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:31:02.9659253Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:31:02.9660604Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:31:02.9662224Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-06-05T23:31:02.9663913Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:31:02.9666094Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-u16.c.o 2025-06-05T23:31:02.9669054Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-gemm/gen/f16-f32acc-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:31:02.9672308Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-gemm/gen/f16-f32acc-gemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:31:02.9674551Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:31:02.9676914Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:31:02.9680268Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:31:02.9682475Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:31:02.9684100Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-06-05T23:31:02.9686630Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-avx512skx-c64.c.o 2025-06-05T23:31:02.9688955Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:31:02.9691058Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-f16c-c32.c.o 2025-06-05T23:31:02.9693474Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-06-05T23:31:02.9695350Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-06-05T23:31:02.9697325Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-06-05T23:31:02.9699014Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:31:02.9700485Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:31:02.9702767Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-avx512skx-u64-acc4.c.o 2025-06-05T23:31:02.9705199Z [ 8%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-06-05T23:31:02.9706808Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:31:02.9708915Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-f16c-u32-acc4.c.o 2025-06-05T23:31:02.9711763Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-fma3-c8.c.o 2025-06-05T23:31:02.9714524Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-f16c-c8.c.o 2025-06-05T23:31:02.9716852Z [ 8%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-06-05T23:31:02.9718704Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:31:02.9720419Z [ 8%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-06-05T23:31:03.5798354Z [ 8%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-06-05T23:31:03.5800877Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-avx2-c8.c.o 2025-06-05T23:31:03.5803165Z [ 8%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-06-05T23:31:03.5805056Z [ 8%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-06-05T23:31:03.5806649Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:31:03.5808203Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-06-05T23:31:03.5809906Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-06-05T23:31:03.5811690Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:31:03.5813249Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-06-05T23:31:03.5815124Z [ 9%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-06-05T23:31:03.5816662Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:31:03.5818046Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:31:03.5818810Z [ 9%] Built target cache 2025-06-05T23:31:03.5820554Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-avx2-c8.c.o 2025-06-05T23:31:03.5822970Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:31:03.5824797Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:31:03.5825674Z [ 9%] Built target datatype 2025-06-05T23:31:03.5826994Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-06-05T23:31:03.5829093Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.o 2025-06-05T23:31:03.5830355Z [ 9%] Built target memory 2025-06-05T23:31:03.5830752Z [ 9%] Linking CXX static library libeigen_blas.a 2025-06-05T23:31:03.5831700Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:31:03.5832771Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-06-05T23:31:03.5834472Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/f16-rmax-f16c-u32.c.o 2025-06-05T23:31:03.5835751Z [ 9%] Built target microkernel-utils 2025-06-05T23:31:03.5836263Z [ 9%] Built target eigen_blas 2025-06-05T23:31:03.5837765Z [ 9%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-06-05T23:31:03.5839903Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-06-05T23:31:03.5841642Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:31:03.5843133Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:31:03.5843977Z [ 93%] Built target flatcc 2025-06-05T23:31:03.5844883Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:31:03.5846723Z [ 9%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-06-05T23:31:03.5849273Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-avx512skx-u64-acc4.c.o 2025-06-05T23:31:03.5851119Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:31:03.5851928Z [ 9%] Built target operator-utils 2025-06-05T23:31:03.5853203Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-06-05T23:31:03.5854321Z [ 9%] Built target mutex 2025-06-05T23:31:03.5855136Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:31:03.5856963Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-06-05T23:31:03.5858922Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:31:03.5860803Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-avx512skx-u64-acc4.c.o 2025-06-05T23:31:03.5862214Z [ 10%] Built target reference-ukernels 2025-06-05T23:31:03.5863628Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-06-05T23:31:03.5864810Z [100%] Built target flatcc_cli 2025-06-05T23:31:03.5868043Z [ 10%] Built target operator-run 2025-06-05T23:31:03.5868912Z [ 10%] Performing install step for 'flatcc_external_project' 2025-06-05T23:31:03.5870854Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-06-05T23:31:03.5872559Z [ 21%] Built target flatccrt 2025-06-05T23:31:03.5873515Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-06-05T23:31:03.5874321Z [ 93%] Built target flatcc 2025-06-05T23:31:03.5875281Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-f16c-u16.c.o 2025-06-05T23:31:03.5876027Z [100%] Built target flatcc_cli 2025-06-05T23:31:03.5876365Z Install the project... 2025-06-05T23:31:03.5876644Z -- Install configuration: "" 2025-06-05T23:31:03.5877168Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:31:03.5877973Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc.h 2025-06-05T23:31:03.5878867Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_accessors.h 2025-06-05T23:31:03.5879778Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_alloc.h 2025-06-05T23:31:03.5880660Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_assert.h 2025-06-05T23:31:03.5881839Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_builder.h 2025-06-05T23:31:03.5882739Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_emitter.h 2025-06-05T23:31:03.5883645Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_endian.h 2025-06-05T23:31:03.5884562Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_epilogue.h 2025-06-05T23:31:03.5885571Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_flatbuffers.h 2025-06-05T23:31:03.5886511Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_identifier.h 2025-06-05T23:31:03.5887403Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_iov.h 2025-06-05T23:31:03.5888303Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_parser.h 2025-06-05T23:31:03.5889250Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_printer.h 2025-06-05T23:31:03.5889877Z [ 10%] Built target hardware-config 2025-06-05T23:31:03.5890483Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_portable.h 2025-06-05T23:31:03.5891389Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_prologue.h 2025-06-05T23:31:03.5892301Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_refmap.h 2025-06-05T23:31:03.5893202Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_rtconfig.h 2025-06-05T23:31:03.5894128Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_types.h 2025-06-05T23:31:03.5895041Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_unaligned.h 2025-06-05T23:31:03.5895944Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_verifier.h 2025-06-05T23:31:03.5896897Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_version.h 2025-06-05T23:31:03.5897762Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable 2025-06-05T23:31:03.5898619Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/LICENSE 2025-06-05T23:31:03.5899533Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/README.md 2025-06-05T23:31:03.5900465Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_math.h 2025-06-05T23:31:03.5901635Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_parse.h 2025-06-05T23:31:03.8435191Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_print.h 2025-06-05T23:31:03.8437109Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include 2025-06-05T23:31:03.8438583Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/README 2025-06-05T23:31:03.8440267Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux 2025-06-05T23:31:03.8442069Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux/endian.h 2025-06-05T23:31:03.8444023Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std 2025-06-05T23:31:03.8445984Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/inttypes.h 2025-06-05T23:31:03.8448052Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdalign.h 2025-06-05T23:31:03.8450092Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdbool.h 2025-06-05T23:31:03.8452156Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdint.h 2025-06-05T23:31:03.8454269Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/paligned_alloc.h 2025-06-05T23:31:03.8456119Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pattributes.h 2025-06-05T23:31:03.8457895Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pbase64.h 2025-06-05T23:31:03.8459687Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pcrt.h 2025-06-05T23:31:03.8461504Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic.h 2025-06-05T23:31:03.8463418Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_pop.h 2025-06-05T23:31:03.8465666Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_push.h 2025-06-05T23:31:03.8467618Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian.h 2025-06-05T23:31:03.8470359Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-f16c-u16.c.o 2025-06-05T23:31:03.8472566Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian_detect.h 2025-06-05T23:31:03.8474616Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinline.h 2025-06-05T23:31:03.8476498Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinttypes.h 2025-06-05T23:31:03.8478479Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pmemaccess.h 2025-06-05T23:31:03.8480261Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable.h 2025-06-05T23:31:03.8482146Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable_basic.h 2025-06-05T23:31:03.8484066Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparsefp.h 2025-06-05T23:31:03.8485922Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparseint.h 2025-06-05T23:31:03.8487905Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintfp.h 2025-06-05T23:31:03.8489765Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintint.h 2025-06-05T23:31:03.8491557Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/prestrict.h 2025-06-05T23:31:03.8493476Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert.h 2025-06-05T23:31:03.8495497Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert_scope.h 2025-06-05T23:31:03.8497478Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdalign.h 2025-06-05T23:31:03.8499313Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdbool.h 2025-06-05T23:31:03.8501157Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdint.h 2025-06-05T23:31:03.8503037Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/punaligned.h 2025-06-05T23:31:03.8504751Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pversion.h 2025-06-05T23:31:03.8506767Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pwarnings.h 2025-06-05T23:31:03.8508481Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection 2025-06-05T23:31:03.8510211Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/README 2025-06-05T23:31:03.8512197Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_builder.h 2025-06-05T23:31:03.8514336Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_reader.h 2025-06-05T23:31:03.8516399Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_builder.h 2025-06-05T23:31:03.8518424Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_reader.h 2025-06-05T23:31:03.8520446Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_verifier.h 2025-06-05T23:31:03.8522306Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support 2025-06-05T23:31:03.8524072Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/README 2025-06-05T23:31:03.8525826Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/cdump.h 2025-06-05T23:31:03.8527615Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/elapsed.h 2025-06-05T23:31:03.8529419Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/hexdump.h 2025-06-05T23:31:03.8531318Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/readfile.h 2025-06-05T23:31:03.8533012Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/lib/libflatccrt.a 2025-06-05T23:31:03.8534415Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/lib/libflatcc.a 2025-06-05T23:31:03.8535825Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:31:03.8537302Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:31:03.8539297Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-f16c-u8.c.o 2025-06-05T23:31:03.8540916Z [ 11%] Completed 'flatcc_external_project' 2025-06-05T23:31:03.8541937Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:31:03.8543103Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:31:03.8543971Z [ 11%] Built target flatcc_external_project 2025-06-05T23:31:03.8544973Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:31:03.8546974Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-06-05T23:31:03.8549360Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-f16c-u8.c.o 2025-06-05T23:31:03.8551800Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-06-05T23:31:03.8554192Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-06-05T23:31:03.8556590Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-f16c-u16.c.o 2025-06-05T23:31:03.8559195Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-f16c-u16.c.o 2025-06-05T23:31:03.8561045Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:31:03.8562915Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-06-05T23:31:03.8564533Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:31:05.1456038Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-06-05T23:31:05.1458356Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-f16c-u16.c.o 2025-06-05T23:31:05.1460508Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-06-05T23:31:05.1462176Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:31:05.1463273Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:31:05.1465641Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-f16c-u16.c.o 2025-06-05T23:31:05.1467550Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:31:05.1469261Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-06-05T23:31:05.1471637Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-f16c-u16.c.o 2025-06-05T23:31:05.1473667Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:31:05.1475418Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-06-05T23:31:05.1477321Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:31:05.1478742Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:31:05.1480604Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-06-05T23:31:05.1482322Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:31:05.1484356Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-f16c-u16.c.o 2025-06-05T23:31:05.1486917Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-06-05T23:31:05.1489377Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-06-05T23:31:05.1491095Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:31:05.1493046Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-f16c-u16.c.o 2025-06-05T23:31:05.1494853Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:31:05.1496089Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:31:05.1497397Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:31:05.1499265Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-06-05T23:31:05.1500989Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:31:05.1502201Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:31:05.1504343Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-f16c-u16.c.o 2025-06-05T23:31:05.1506392Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:31:05.1507811Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:31:05.1509594Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-06-05T23:31:05.1511332Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:31:05.1512850Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:31:05.1514394Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:31:05.1516476Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-f16c-u8.c.o 2025-06-05T23:31:05.1518847Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-06-05T23:31:05.1520754Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:31:05.1522263Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:31:05.1524222Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-06-05T23:31:05.1526631Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-06-05T23:31:05.1528854Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-06-05T23:31:05.1531238Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-f16c-u16.c.o 2025-06-05T23:31:05.1533933Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-06-05T23:31:05.1536338Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-06-05T23:31:05.1538832Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-f16c-u16.c.o 2025-06-05T23:31:05.1541468Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-f16c-u16.c.o 2025-06-05T23:31:05.1543888Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-06-05T23:31:05.1546198Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-06-05T23:31:05.1548532Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-06-05T23:31:05.1550058Z [100%] Linking CXX executable flatc 2025-06-05T23:31:05.1551631Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-06-05T23:31:05.1554128Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-f16c-u16.c.o 2025-06-05T23:31:05.1556776Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-f16c-u16.c.o 2025-06-05T23:31:05.1558894Z [ 14%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:31:05.1560708Z [ 14%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:31:05.1562360Z [ 14%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:31:05.1564495Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-f16c-u16.c.o 2025-06-05T23:31:05.1565997Z [ 14%] Built target operators 2025-06-05T23:31:05.1567695Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-f16c-u16.c.o 2025-06-05T23:31:05.1570228Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-u16.c.o 2025-06-05T23:31:05.1572370Z [ 14%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:31:05.1574101Z [ 14%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:31:05.1575891Z [ 14%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:31:05.1578198Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-f16c-u16.c.o 2025-06-05T23:31:05.1580458Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-06-05T23:31:05.1582172Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-06-05T23:31:05.1583961Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-06-05T23:31:05.1586263Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-06-05T23:31:05.1588723Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-u16.c.o 2025-06-05T23:31:05.1590783Z [ 14%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:31:05.1593116Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-fma3-2x.c.o 2025-06-05T23:31:05.1594717Z [ 14%] Built target flatccrt 2025-06-05T23:31:05.9189572Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-f16c-u16.c.o 2025-06-05T23:31:05.9192893Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-f16c-u16.c.o 2025-06-05T23:31:05.9195093Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-06-05T23:31:05.9197159Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-06-05T23:31:05.9199352Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-f16c-u16.c.o 2025-06-05T23:31:05.9201364Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-06-05T23:31:05.9203441Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-f16c-u16.c.o 2025-06-05T23:31:05.9205735Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-f16c-rsqrt-u32.c.o 2025-06-05T23:31:05.9207905Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-06-05T23:31:05.9210064Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-06-05T23:31:05.9212440Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.o 2025-06-05T23:31:05.9214986Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-f16c-rsqrt-u32.c.o 2025-06-05T23:31:05.9217636Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u72.c.o 2025-06-05T23:31:05.9220448Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-fma3-polynomial-p19h9t2-u32.c.o 2025-06-05T23:31:05.9222689Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-06-05T23:31:05.9224558Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-06-05T23:31:05.9226806Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-sse2-u16.c.o 2025-06-05T23:31:05.9229336Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-sse2-u16.c.o 2025-06-05T23:31:05.9231760Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-f16c-u16.c.o 2025-06-05T23:31:05.9234217Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2025-06-05T23:31:05.9236588Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-06-05T23:31:05.9238737Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-sse2-c4.c.o 2025-06-05T23:31:05.9241053Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-06-05T23:31:05.9243225Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-06-05T23:31:05.9245462Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-06-05T23:31:05.9247684Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-06-05T23:31:05.9250009Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-06-05T23:31:05.9252621Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-06-05T23:31:05.9255291Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-sse2-c4.c.o 2025-06-05T23:31:05.9257771Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-06-05T23:31:05.9260049Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-06-05T23:31:05.9262012Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-06-05T23:31:05.9263977Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-06-05T23:31:05.9269867Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-06-05T23:31:05.9271996Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-06-05T23:31:05.9274027Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-06-05T23:31:05.9276426Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-06-05T23:31:05.9278815Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-sse2-c4.c.o 2025-06-05T23:31:05.9281196Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-06-05T23:31:05.9283480Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-06-05T23:31:05.9284811Z [100%] Built target flatc 2025-06-05T23:31:05.9285685Z [ 17%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:31:05.9287545Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-06-05T23:31:05.9289708Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-06-05T23:31:05.9291893Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-06-05T23:31:05.9294339Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:31:05.9296888Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-06-05T23:31:05.9299304Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:31:05.9301725Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-06-05T23:31:05.9302915Z [100%] Built target flatc 2025-06-05T23:31:05.9303475Z Install the project... 2025-06-05T23:31:05.9303986Z -- Install configuration: "" 2025-06-05T23:31:05.9305116Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:31:05.9307637Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:31:05.9309928Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/allocator.h 2025-06-05T23:31:05.9311795Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/array.h 2025-06-05T23:31:05.9313625Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/base.h 2025-06-05T23:31:05.9315346Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer.h 2025-06-05T23:31:05.9317153Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer_ref.h 2025-06-05T23:31:05.9319077Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generator.h 2025-06-05T23:31:05.9320988Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generators.h 2025-06-05T23:31:05.9323040Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/default_allocator.h 2025-06-05T23:31:05.9325163Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/detached_buffer.h 2025-06-05T23:31:05.9327126Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/file_manager.h 2025-06-05T23:31:06.4245415Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffer_builder.h 2025-06-05T23:31:06.4247526Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffers.h 2025-06-05T23:31:06.4249354Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatc.h 2025-06-05T23:31:06.4251321Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flex_flat_util.h 2025-06-05T23:31:06.4253288Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flexbuffers.h 2025-06-05T23:31:06.4255137Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/grpc.h 2025-06-05T23:31:06.4256940Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/hash.h 2025-06-05T23:31:06.4258979Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/idl.h 2025-06-05T23:31:06.4260744Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/minireflect.h 2025-06-05T23:31:06.4262627Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch 2025-06-05T23:31:06.4264523Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/flatc_pch.h 2025-06-05T23:31:06.4266826Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/pch.h 2025-06-05T23:31:06.4268765Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection.h 2025-06-05T23:31:06.4270786Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection_generated.h 2025-06-05T23:31:06.4272784Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/registry.h 2025-06-05T23:31:06.4274717Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/stl_emulation.h 2025-06-05T23:31:06.4276677Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/string.h 2025-06-05T23:31:06.4278569Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/struct.h 2025-06-05T23:31:06.4280448Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/table.h 2025-06-05T23:31:06.4282258Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/util.h 2025-06-05T23:31:06.4284103Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector.h 2025-06-05T23:31:06.4286003Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector_downward.h 2025-06-05T23:31:06.4287936Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/verifier.h 2025-06-05T23:31:06.4289991Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config.cmake 2025-06-05T23:31:06.4292139Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/BuildFlatBuffers.cmake 2025-06-05T23:31:06.4294446Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config-version.cmake 2025-06-05T23:31:06.4296491Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:31:06.4298277Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets.cmake 2025-06-05T23:31:06.4300478Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake 2025-06-05T23:31:06.4302375Z [ 18%] Completed 'flatbuffers_external_project' 2025-06-05T23:31:06.4303824Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-06-05T23:31:06.4306262Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-sse-c4.c.o 2025-06-05T23:31:06.4309220Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-06-05T23:31:06.4310999Z [ 18%] Built target flatbuffers_external_project 2025-06-05T23:31:06.4312989Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.o 2025-06-05T23:31:06.4316082Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f.c.o 2025-06-05T23:31:06.4319077Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-06-05T23:31:06.4321990Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-06-05T23:31:06.4324894Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-avx.c.o 2025-06-05T23:31:06.4327738Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-fma3.c.o 2025-06-05T23:31:06.4330549Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-sse.c.o 2025-06-05T23:31:06.4332100Z [ 18%] Built target subgraph 2025-06-05T23:31:06.4332776Z [ 18%] Generating common_schema headers 2025-06-05T23:31:06.4334864Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-06-05T23:31:06.4336763Z [ 19%] Generating xnnpack_schema headers 2025-06-05T23:31:06.4337405Z [ 19%] Built target common_schema 2025-06-05T23:31:06.4339203Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx.c.o 2025-06-05T23:31:06.4340985Z [ 19%] Generating scalar_type_schema headers 2025-06-05T23:31:06.4341657Z [ 19%] Built target xnnpack_schema 2025-06-05T23:31:06.4343456Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx512f.c.o 2025-06-05T23:31:06.4345059Z [ 19%] Built target scalar_type_schema 2025-06-05T23:31:06.4345877Z [ 19%] Generating program_schema headers 2025-06-05T23:31:06.4346577Z [ 19%] Generating flat_tensor_schema headers 2025-06-05T23:31:06.4347228Z [ 19%] Built target flat_tensor_schema 2025-06-05T23:31:06.4347767Z [ 19%] Built target program_schema 2025-06-05T23:31:06.4349247Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:31:06.4351238Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:31:06.4352610Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:31:06.4354164Z [ 20%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:31:06.4356453Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-06-05T23:31:06.4359207Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-06-05T23:31:06.4362006Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-sse.c.o 2025-06-05T23:31:06.4364766Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx.c.o 2025-06-05T23:31:06.4369248Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:31:06.4372525Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx512f.c.o 2025-06-05T23:31:06.4374863Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:31:06.4376488Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:31:06.4377977Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:31:06.4380350Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-fma3.c.o 2025-06-05T23:31:06.4382469Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:31:06.4384071Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:31:07.6500804Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:31:07.6503239Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-06-05T23:31:07.6506351Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-06-05T23:31:07.6508587Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:31:07.6510383Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:31:07.6512299Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:31:07.6514102Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:31:07.6516422Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-sse.c.o 2025-06-05T23:31:07.6519325Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.o 2025-06-05T23:31:07.6522337Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.o 2025-06-05T23:31:07.6524576Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:31:07.6526131Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:31:07.6528477Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.o 2025-06-05T23:31:07.6530718Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:31:07.6532328Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:31:07.6534588Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.o 2025-06-05T23:31:07.6536723Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:31:07.6538277Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:31:07.6539781Z [ 22%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:31:07.6541955Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx.c.o 2025-06-05T23:31:07.6544753Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx512f.c.o 2025-06-05T23:31:07.6547696Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-fma3.c.o 2025-06-05T23:31:07.6550545Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-06-05T23:31:07.6553503Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-06-05T23:31:07.6556311Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-sse.c.o 2025-06-05T23:31:07.6559284Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:31:07.6562524Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o 2025-06-05T23:31:07.6564683Z [ 23%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:31:07.6565578Z [ 23%] Built target executorch_core 2025-06-05T23:31:07.6567517Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.o 2025-06-05T23:31:07.6569850Z [ 23%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:31:07.6571379Z [ 23%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:31:07.6573000Z [ 23%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:31:07.6575571Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.o 2025-06-05T23:31:07.6578177Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:31:07.6580992Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o 2025-06-05T23:31:07.6584286Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:31:07.6587843Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.o 2025-06-05T23:31:07.6590372Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:31:07.6592467Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:31:07.6594447Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:31:07.6596526Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:31:07.6598614Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:31:07.6601366Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:31:07.6603979Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:31:07.6605573Z [ 23%] Linking CXX static library libexecutorch.a 2025-06-05T23:31:07.6606261Z [ 23%] Built target executorch 2025-06-05T23:31:07.6607586Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:31:07.6609510Z [ 23%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:31:07.6612208Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:31:07.6614981Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:31:07.6617011Z [ 23%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:31:07.6619009Z [ 23%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:31:07.6621006Z [ 23%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-06-05T23:31:07.6623593Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-4x4.c.o 2025-06-05T23:31:07.6626225Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:31:07.6628381Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:31:07.6630470Z [ 24%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:31:07.6632463Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:31:07.6634418Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:31:07.6636362Z [ 24%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/flat_tensor_data_map.cpp.o 2025-06-05T23:31:07.6639166Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:31:07.6642327Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:31:09.0229807Z [ 25%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-06-05T23:31:09.0231391Z [ 25%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:31:09.0232156Z [ 25%] Built target extension_threadpool 2025-06-05T23:31:09.0234168Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4.c.o 2025-06-05T23:31:09.0237010Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-u24.c.o 2025-06-05T23:31:09.0239320Z [ 25%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/serialize/flat_tensor_header.cpp.o 2025-06-05T23:31:09.0241175Z [ 25%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-06-05T23:31:09.0242942Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:31:09.0244444Z [ 25%] Linking CXX static library libextension_data_loader.a 2025-06-05T23:31:09.0245887Z [ 26%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-06-05T23:31:09.0247178Z [ 26%] Built target extension_data_loader 2025-06-05T23:31:09.0248636Z [ 26%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:31:09.0250449Z [ 26%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-06-05T23:31:09.0251809Z [ 26%] Linking CXX static library libextension_flat_tensor.a 2025-06-05T23:31:09.0253581Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:31:09.0254838Z [ 26%] Built target extension_flat_tensor 2025-06-05T23:31:09.0256003Z [ 26%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-06-05T23:31:09.0258211Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-u16.c.o 2025-06-05T23:31:09.0260918Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-u16.c.o 2025-06-05T23:31:09.0262715Z [ 26%] Linking CXX static library libextension_tensor.a 2025-06-05T23:31:09.0264817Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-06-05T23:31:09.0266625Z [ 26%] Built target extension_tensor 2025-06-05T23:31:09.0268447Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-06-05T23:31:09.0270628Z [ 26%] Building CXX object extension/module/CMakeFiles/extension_module.dir/module.cpp.o 2025-06-05T23:31:09.0272417Z [ 26%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:31:09.0274720Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-u16.c.o 2025-06-05T23:31:09.0277151Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:31:09.0279602Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-u8.c.o 2025-06-05T23:31:09.0282346Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:31:09.0284830Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:31:09.0286692Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:31:09.0289103Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:31:09.0291382Z [ 26%] Building CXX object extension/module/CMakeFiles/extension_module_static.dir/module.cpp.o 2025-06-05T23:31:09.0292639Z [ 26%] Linking CXX static library libcpublas.a 2025-06-05T23:31:09.0293576Z [ 26%] Linking CXX shared library libextension_module.so 2025-06-05T23:31:09.0294285Z [ 26%] Built target cpublas 2025-06-05T23:31:09.0296090Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:31:09.0298539Z [ 26%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:31:09.0301086Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:31:09.0303612Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:31:09.0304774Z [ 26%] Built target extension_module 2025-06-05T23:31:09.0306197Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:31:09.0308518Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:31:09.0310929Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:31:09.0313282Z [ 26%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-06-05T23:31:09.0315142Z [ 26%] Linking CXX static library libextension_module_static.a 2025-06-05T23:31:09.0315956Z [ 26%] Built target extension_module_static 2025-06-05T23:31:09.0317632Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-06-05T23:31:09.0320307Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse-load1.c.o 2025-06-05T23:31:09.0323086Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-06-05T23:31:09.0325773Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-06-05T23:31:09.0327616Z [ 27%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:31:09.0328417Z [ 27%] Built target kernels_util_all_deps 2025-06-05T23:31:09.0329821Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:31:09.0331737Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-06-05T23:31:09.0333940Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-06-05T23:31:09.0336169Z [ 27%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:31:09.0338140Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:31:09.0340049Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:31:09.0342594Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:31:09.0345514Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-06-05T23:31:09.0348177Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-06-05T23:31:09.0350356Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:31:09.0352241Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:31:09.0354050Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:31:09.0355804Z [ 27%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:31:09.0357775Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:31:09.0359769Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:31:09.0361640Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:31:09.0363931Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2c4-minmax-sse.c.o 2025-06-05T23:31:09.0366070Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:31:09.0367967Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:31:11.1738137Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:31:11.1740496Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:31:11.1743228Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-06-05T23:31:11.1745766Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:31:11.1747540Z [ 27%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:31:11.1749314Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:31:11.1751209Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:31:11.1753468Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-06-05T23:31:11.1756122Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse-load1.c.o 2025-06-05T23:31:11.1758389Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:31:11.1760295Z [ 28%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:31:11.1762672Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:31:11.1764922Z [ 28%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:31:11.1767006Z [ 28%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:31:11.1768935Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:31:11.1770821Z [ 28%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_quantize.cpp.o 2025-06-05T23:31:11.1773307Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-fma3-broadcast.c.o 2025-06-05T23:31:11.1776238Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-7x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:31:11.1779184Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-06-05T23:31:11.1781582Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:31:11.1783998Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-sse-p8.c.o 2025-06-05T23:31:11.1786458Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:31:11.1788295Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:31:11.1790206Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:31:11.1791638Z [ 29%] Linking CXX static library libquantized_kernels.a 2025-06-05T23:31:11.1793711Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-06-05T23:31:11.1795237Z [ 29%] Built target quantized_kernels 2025-06-05T23:31:11.1796983Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-sse-c8.c.o 2025-06-05T23:31:11.1799169Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:31:11.1801604Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:31:11.1804690Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:31:11.1807544Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:31:11.1809849Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:31:11.1811573Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:31:11.1813300Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:31:11.1814735Z [ 30%] Generating selected_operators.yaml for quantized_ops_lib 2025-06-05T23:31:11.1816308Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:31:11.1818276Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:31:11.1820859Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:31:11.1823375Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:31:11.1824877Z [ 30%] Generating code for kernel registration 2025-06-05T23:31:11.1826389Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:31:11.1828325Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:31:11.1830274Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:31:11.1832150Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:31:11.1834360Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:31:11.1836585Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:31:11.1838484Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:31:11.1840881Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-06-05T23:31:11.1843641Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-06-05T23:31:11.1845870Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:31:11.1847730Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:31:11.1849493Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:31:11.1851864Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-load1.c.o 2025-06-05T23:31:11.1854210Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:31:11.1856042Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-06-05T23:31:11.1857996Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:31:11.1860511Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-06-05T23:31:11.1862714Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:31:11.1864937Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-06-05T23:31:11.1871591Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-06-05T23:31:11.1873395Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:31:11.1875119Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:31:11.1876906Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:31:11.1879126Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-06-05T23:31:11.1881242Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:31:13.9666744Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-06-05T23:31:13.9668102Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:31:13.9670755Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:31:13.9672600Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:31:13.9674308Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:31:13.9675826Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-06-05T23:31:13.9677332Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-06-05T23:31:13.9678546Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:31:13.9679568Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:31:13.9680749Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2c4-minmax-sse.c.o 2025-06-05T23:31:13.9681991Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:31:13.9683170Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:31:13.9684705Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-06-05T23:31:13.9685986Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:31:13.9687169Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:31:13.9688503Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:31:13.9689641Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-06-05T23:31:13.9690735Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:31:13.9691741Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:31:13.9692960Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse-load1.c.o 2025-06-05T23:31:13.9694152Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:31:13.9695068Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:31:13.9696231Z [ 33%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_lib.dir/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:31:13.9697682Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:31:13.9698837Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:31:13.9699765Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:31:13.9700732Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:31:13.9702040Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.o 2025-06-05T23:31:13.9703353Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:31:13.9704463Z [ 34%] Linking CXX static library libquantized_ops_lib.a 2025-06-05T23:31:13.9705025Z [ 34%] Built target quantized_ops_lib 2025-06-05T23:31:13.9705828Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:31:13.9707097Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:31:13.9708912Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:31:13.9711174Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-7x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:31:13.9713238Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:31:13.9714730Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:31:13.9716147Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:31:13.9717817Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:31:13.9719311Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:31:13.9720488Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:31:13.9722125Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:31:13.9723771Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:31:13.9725128Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:31:13.9726823Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:31:13.9728861Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-sse-c4.c.o 2025-06-05T23:31:13.9730389Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:31:13.9731584Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:31:13.9733227Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-06-05T23:31:13.9735117Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-sse-c4.c.o 2025-06-05T23:31:13.9737188Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:31:13.9738869Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:31:13.9740175Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:31:13.9741522Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:31:13.9742814Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:31:13.9744154Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:31:13.9746033Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:31:13.9747726Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:31:13.9749084Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:31:13.9750384Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:31:13.9751658Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:31:13.9752910Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:31:13.9754688Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:31:13.9756387Z [ 36%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:31:13.9757670Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:31:16.5320182Z [ 36%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:31:16.5322995Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:31:16.5326476Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-sse41-dup.c.o 2025-06-05T23:31:16.5329134Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:31:16.5331879Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx-broadcast.c.o 2025-06-05T23:31:16.5335242Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx2-broadcast.c.o 2025-06-05T23:31:16.5338153Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:31:16.5340252Z [ 36%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:31:16.5342232Z [ 36%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:31:16.5344974Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-fma3-broadcast.c.o 2025-06-05T23:31:16.5347693Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:31:16.5349810Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:31:16.5352472Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:31:16.5356683Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-sse41-dup.c.o 2025-06-05T23:31:16.5359588Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:31:16.5362077Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:31:16.5364616Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:31:16.5368314Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:31:16.5370888Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:31:16.5374021Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:31:16.5377193Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:31:16.5379586Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:31:16.5381583Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:31:16.5384295Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:31:16.5387335Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:31:16.5390456Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-sse41-dup.c.o 2025-06-05T23:31:16.5392895Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:31:16.5394664Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:31:16.5397003Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:31:16.5399222Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:31:16.5401112Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:31:16.5403563Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-sse41-dup.c.o 2025-06-05T23:31:16.5405891Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:31:16.5407788Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:31:16.5410338Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:31:16.5412665Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:31:16.5415114Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx2-broadcast.c.o 2025-06-05T23:31:16.5417554Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:31:16.5419427Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:31:16.5421263Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:31:16.5423870Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-fma3-broadcast.c.o 2025-06-05T23:31:16.5426396Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:31:16.5428365Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:31:16.5440906Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:31:16.5442864Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:31:16.5445389Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:31:16.5448008Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:31:16.5449968Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:31:16.5452038Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:31:16.5453901Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:31:16.5455517Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:31:16.5457328Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:31:16.5459747Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-u32.c.o 2025-06-05T23:31:16.5461963Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:31:16.5463825Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:31:16.5468279Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:31:16.5470758Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-u64.c.o 2025-06-05T23:31:16.5473555Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-u128.c.o 2025-06-05T23:31:16.5475877Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:31:16.5477854Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:31:16.5479942Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:31:18.3793839Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:31:18.3795931Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:31:18.3797842Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:31:18.3800224Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:31:18.3803151Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:31:18.3806175Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:31:18.3808516Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:31:18.3810259Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:31:18.3811929Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:31:18.3813762Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:31:18.3815630Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:31:18.3817531Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:31:18.3819547Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:31:18.3821951Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-u32.c.o 2025-06-05T23:31:18.3824305Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:31:18.3826117Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:31:18.3827949Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:31:18.3829477Z [ 42%] Linking CXX static library liboptimized_kernels.a 2025-06-05T23:31:18.3830991Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:31:18.3833211Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-u32.c.o 2025-06-05T23:31:18.3835385Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:31:18.3837173Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:31:18.3839127Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:31:18.3841608Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-u32.c.o 2025-06-05T23:31:18.3843745Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:31:18.3845629Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:31:18.3847432Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:31:18.3848509Z [ 42%] Built target optimized_kernels 2025-06-05T23:31:18.3849431Z [ 42%] Generating selected_operators.yaml for optimized_ops_lib 2025-06-05T23:31:18.3851068Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:31:18.3853056Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:31:18.3854848Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:31:18.3857086Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-u64.c.o 2025-06-05T23:31:18.3859336Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:31:18.3861167Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:31:18.3863028Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:31:18.3864432Z [ 42%] Generating code for kernel registration 2025-06-05T23:31:18.3865981Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:31:18.3867649Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:31:18.3869354Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:31:18.3871222Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:31:18.3873606Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-u128.c.o 2025-06-05T23:31:18.3876093Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:31:18.3878210Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:31:18.3879921Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:31:18.3881705Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:31:18.3884093Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:31:18.3886834Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:31:18.3888930Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:31:18.3890750Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:31:18.3892695Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:31:18.3895161Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:31:18.3897995Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:31:18.3900248Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:31:18.3902047Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:31:18.3903943Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:31:18.3905954Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:31:18.3907747Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:31:18.3909954Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-u32.c.o 2025-06-05T23:31:18.3912102Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:31:18.3913890Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:31:18.3916693Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.o 2025-06-05T23:31:18.3919559Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:31:18.3921402Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:31:18.3923127Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:31:18.3925856Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.o 2025-06-05T23:31:18.3928424Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:31:18.3930375Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:31:20.0978243Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:31:20.0981199Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-06-05T23:31:20.0983950Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:31:20.0986196Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:31:20.0989060Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.o 2025-06-05T23:31:20.0991870Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:31:20.0993724Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:31:20.0995448Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:31:20.0997083Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:31:20.0998838Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:31:20.1001363Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-avx-c32.c.o 2025-06-05T23:31:20.1003584Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:31:20.1005513Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:31:20.1007455Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:31:20.1009414Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:31:20.1011822Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-avx512f-c64.c.o 2025-06-05T23:31:20.1014096Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:31:20.1015793Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:31:20.1018164Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-06-05T23:31:20.1020519Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:31:20.1022863Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-sse-c16.c.o 2025-06-05T23:31:20.1025322Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:31:20.1027725Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx-u32-acc4.c.o 2025-06-05T23:31:20.1030094Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:31:20.1032188Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:31:20.1034232Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:31:20.1036647Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx512f-u64-acc4.c.o 2025-06-05T23:31:20.1038838Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:31:20.1040632Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:31:20.1042912Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-06-05T23:31:20.1045185Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:31:20.1047121Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:31:20.1048996Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:31:20.1050781Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:31:20.1052991Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-sse-u16-acc4.c.o 2025-06-05T23:31:20.1055712Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-avx-u32-acc4.c.o 2025-06-05T23:31:20.1058498Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-avx512f-u64-acc4.c.o 2025-06-05T23:31:20.1061305Z [ 47%] Building CXX object kernels/optimized/CMakeFiles/optimized_ops_lib.dir/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:31:20.1064107Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-06-05T23:31:20.1068028Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:31:20.1070228Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:31:20.1072509Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:31:20.1075285Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-sse-u16-acc4.c.o 2025-06-05T23:31:20.1077512Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:31:20.1079335Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:31:20.1081198Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:31:20.1083206Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:31:20.1084550Z [ 48%] Linking CXX static library liboptimized_ops_lib.a 2025-06-05T23:31:20.1085269Z [ 48%] Built target optimized_ops_lib 2025-06-05T23:31:20.1086478Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:31:20.1088392Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx-u32-acc4.c.o 2025-06-05T23:31:20.1090295Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:31:20.1092067Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:31:20.1094611Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx512f-u64-acc4.c.o 2025-06-05T23:31:20.1097369Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-06-05T23:31:20.1099689Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:31:20.1101602Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:31:20.1103599Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:31:20.1105802Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:31:20.1108032Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:31:20.1110031Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:31:20.1111923Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:31:20.1113692Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:31:20.1115875Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-sse-u16-acc4.c.o 2025-06-05T23:31:20.1118283Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:31:20.1120231Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:31:21.7979344Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:31:21.7981542Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:31:21.7983552Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:31:21.7985947Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-sse.c.o 2025-06-05T23:31:21.7988394Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:31:21.7990588Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:31:21.7992759Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:31:21.7994672Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:31:21.7996806Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:31:21.7999345Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-06-05T23:31:21.8001522Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:31:21.8003236Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:31:21.8005071Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:31:21.8006983Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:31:21.8009266Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-06-05T23:31:21.8011561Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:31:21.8013617Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:31:21.8015552Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:31:21.8017998Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-06-05T23:31:21.8020197Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:31:21.8022464Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx-u16.c.o 2025-06-05T23:31:21.8024666Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:31:21.8026770Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:31:21.8028611Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:31:21.8030497Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:31:21.8032686Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:31:21.8035006Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx512f-u32.c.o 2025-06-05T23:31:21.8037606Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-06-05T23:31:21.8039818Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:31:21.8041692Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:31:21.8043588Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:31:21.8045900Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-sse-u8.c.o 2025-06-05T23:31:21.8048456Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx-u16.c.o 2025-06-05T23:31:21.8050624Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:31:21.8052615Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:31:21.8054510Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:31:21.8056430Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:31:21.8058743Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx512f-u32.c.o 2025-06-05T23:31:21.8061005Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:31:21.8063284Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-06-05T23:31:21.8065795Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:31:21.8067612Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:31:21.8069527Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:31:21.8071997Z [ 52%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-sse-u8.c.o 2025-06-05T23:31:21.8074275Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:31:21.8076565Z [ 52%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx-u16.c.o 2025-06-05T23:31:21.8078622Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:31:21.8080327Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:31:21.8082125Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:31:21.8084027Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:31:21.8086292Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx512f-u32.c.o 2025-06-05T23:31:21.8088821Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:31:21.8091276Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-06-05T23:31:21.8093509Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:31:21.8095499Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:31:21.8097486Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:31:21.8099737Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-sse-u8.c.o 2025-06-05T23:31:21.8101945Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:31:21.8103728Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:31:21.8105646Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:31:21.8107934Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx-u16.c.o 2025-06-05T23:31:21.8110279Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:31:21.8112186Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:31:21.8113997Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:31:21.8115892Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:31:21.8117825Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:31:23.2660780Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:31:23.2661812Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:31:23.2662800Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:31:23.2663805Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:31:23.2666024Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx512f-u32.c.o 2025-06-05T23:31:23.2668596Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-06-05T23:31:23.2671074Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-sse-u8.c.o 2025-06-05T23:31:23.2673205Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:31:23.2675188Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:31:23.2677032Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:31:23.2678882Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:31:23.2680650Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:31:23.2682265Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:31:23.2683992Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:31:23.2685999Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx-u16.c.o 2025-06-05T23:31:23.2688108Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:31:23.2689891Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:31:23.2692105Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx512f-u32.c.o 2025-06-05T23:31:23.2694457Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-06-05T23:31:23.2696807Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-sse-u8.c.o 2025-06-05T23:31:23.2698548Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:31:23.2700500Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx-u16.c.o 2025-06-05T23:31:23.2702970Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx512f-u32.c.o 2025-06-05T23:31:23.2705292Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-06-05T23:31:23.2707337Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:31:23.2708859Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:31:23.2710260Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:31:23.2711782Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-sse-u8.c.o 2025-06-05T23:31:23.2713574Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx-u16.c.o 2025-06-05T23:31:23.2715326Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx512f-u32.c.o 2025-06-05T23:31:23.2717229Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-06-05T23:31:23.2718750Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:31:23.2720304Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-sse-u8.c.o 2025-06-05T23:31:23.2722086Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx-u16.c.o 2025-06-05T23:31:23.2723865Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx512f-u32.c.o 2025-06-05T23:31:23.2725669Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-06-05T23:31:23.2727193Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:31:23.2728510Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:31:23.2729876Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:31:23.2731112Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:31:23.2732333Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:31:23.2733743Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:31:23.2735197Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:31:23.2736760Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-sse-u8.c.o 2025-06-05T23:31:23.2738559Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-avx-u16.c.o 2025-06-05T23:31:23.2740040Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:31:23.2741298Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:31:23.2742564Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:31:23.2744162Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-avx512f-u32.c.o 2025-06-05T23:31:23.2746009Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-06-05T23:31:23.2747746Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-sse-u8.c.o 2025-06-05T23:31:23.2749495Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-avx-u16.c.o 2025-06-05T23:31:23.2751149Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:31:23.2752637Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:31:23.2754395Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-avx512f-u32.c.o 2025-06-05T23:31:23.2755968Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:31:23.2757832Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:31:23.2759908Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:31:23.2761669Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:31:23.2763964Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-06-05T23:31:23.2765736Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:31:23.2767610Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:31:23.2769378Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:31:24.6031891Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-sse-u8.c.o 2025-06-05T23:31:24.6033420Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-avx-u16.c.o 2025-06-05T23:31:24.6034530Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:31:24.6035676Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-avx512f-u32.c.o 2025-06-05T23:31:24.6036890Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:31:24.6038123Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-06-05T23:31:24.6039452Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-sse2-u8.c.o 2025-06-05T23:31:24.6040765Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-avx-u16.c.o 2025-06-05T23:31:24.6042111Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-avx512f-u32.c.o 2025-06-05T23:31:24.6043304Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:31:24.6044597Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-06-05T23:31:24.6045942Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-sse2-u8.c.o 2025-06-05T23:31:24.6047020Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:31:24.6047898Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:31:24.6048756Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:31:24.6049678Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:31:24.6050832Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-avx-u16.c.o 2025-06-05T23:31:24.6052166Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-avx512f-u32.c.o 2025-06-05T23:31:24.6053442Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:31:24.6054710Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-06-05T23:31:24.6055899Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:31:24.6057413Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-sse-u8.c.o 2025-06-05T23:31:24.6058834Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-avx-u16.c.o 2025-06-05T23:31:24.6060399Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:31:24.6061646Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:31:24.6062810Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-avx512f-u32.c.o 2025-06-05T23:31:24.6064027Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:31:24.6065581Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-06-05T23:31:24.6067531Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-sse2-u8.c.o 2025-06-05T23:31:24.6069083Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:31:24.6070160Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:31:24.6071376Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-avx-u16.c.o 2025-06-05T23:31:24.6072721Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-avx512f-u32.c.o 2025-06-05T23:31:24.6074051Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-06-05T23:31:24.6075381Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-sse-u8.c.o 2025-06-05T23:31:24.6076717Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:31:24.6078062Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx-u16.c.o 2025-06-05T23:31:24.6079199Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:31:24.6080387Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx512f-u32.c.o 2025-06-05T23:31:24.6081643Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:31:24.6082750Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:31:24.6083792Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:31:24.6085008Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-06-05T23:31:24.6086269Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:31:24.6087460Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-sse-u8.c.o 2025-06-05T23:31:24.6088810Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:31:24.6090045Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx-u16.c.o 2025-06-05T23:31:24.6091426Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx512f-u32.c.o 2025-06-05T23:31:24.6092558Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:31:24.6093438Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:31:24.6094580Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-06-05T23:31:24.6095851Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:31:24.6097075Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-u8.c.o 2025-06-05T23:31:24.6098296Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:31:24.6100299Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx-u16.c.o 2025-06-05T23:31:24.6102076Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:31:24.6103564Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:31:24.6105343Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx512f-u32.c.o 2025-06-05T23:31:24.6107442Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-06-05T23:31:24.6109069Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:31:24.6110507Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:31:26.1404042Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-sse-u8.c.o 2025-06-05T23:31:26.1406707Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-avx-u16.c.o 2025-06-05T23:31:26.1409348Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-avx512f-u32.c.o 2025-06-05T23:31:26.1411580Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:31:26.1413857Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-06-05T23:31:26.1415723Z [ 63%] Linking CXX static library liboptimized_portable_kernels.a 2025-06-05T23:31:26.1417222Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:31:26.1419024Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:31:26.1421234Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:31:26.1423577Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-sse-u8.c.o 2025-06-05T23:31:26.1425792Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:31:26.1427954Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-avx-u16.c.o 2025-06-05T23:31:26.1429586Z [ 63%] Built target optimized_portable_kernels 2025-06-05T23:31:26.1430316Z [ 63%] Merging kernel yaml files 2025-06-05T23:31:26.1432064Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-avx512f-u16.c.o 2025-06-05T23:31:26.1434738Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-06-05T23:31:26.1437327Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-sse-u8.c.o 2025-06-05T23:31:26.1439989Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-avx512f-u32.c.o 2025-06-05T23:31:26.1442580Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-fma3-u16.c.o 2025-06-05T23:31:26.1445146Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-06-05T23:31:26.1447107Z [ 63%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-06-05T23:31:26.1449087Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-sse-u8.c.o 2025-06-05T23:31:26.1451669Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx.c.o 2025-06-05T23:31:26.1453884Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:31:26.1455694Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:31:26.1457942Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx512f.c.o 2025-06-05T23:31:26.1460747Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-06-05T23:31:26.1463432Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-sse2.c.o 2025-06-05T23:31:26.1466331Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx.c.o 2025-06-05T23:31:26.1469034Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx512f.c.o 2025-06-05T23:31:26.1471761Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-06-05T23:31:26.1474449Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-sse2.c.o 2025-06-05T23:31:26.1477129Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx.c.o 2025-06-05T23:31:26.1479276Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:31:26.1481631Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx512f.c.o 2025-06-05T23:31:26.1483395Z [ 64%] Generating code for kernel registration 2025-06-05T23:31:26.1484687Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:31:26.1486421Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:31:26.1488792Z [ 64%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-06-05T23:31:26.1490945Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:31:26.1493174Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-sse2.c.o 2025-06-05T23:31:26.1495935Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-u32.c.o 2025-06-05T23:31:26.1498909Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-u56.c.o 2025-06-05T23:31:26.1501707Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-u128.c.o 2025-06-05T23:31:26.1504478Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-06-05T23:31:26.1506776Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:31:26.1508500Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:31:26.1510216Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:31:26.1511993Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:31:26.1513766Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:31:26.1515316Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:31:26.1517101Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:31:26.1519071Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:31:26.1521441Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-06-05T23:31:26.1524225Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-u12.c.o 2025-06-05T23:31:26.1526529Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:31:26.1528477Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:31:26.1530453Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:31:26.1532264Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:31:26.1534098Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:31:26.1536358Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-06-05T23:31:26.1538605Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:31:26.1540965Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx-rational-12-10-div.c.o 2025-06-05T23:31:26.1543218Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:31:27.3434152Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx512f-rational-12-10-nr.c.o 2025-06-05T23:31:27.3437106Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-fma3-rational-12-10-div.c.o 2025-06-05T23:31:27.3440374Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-06-05T23:31:27.3443878Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-sse2-rational-12-10-div.c.o 2025-06-05T23:31:27.3446877Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:31:27.3449629Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx-u16.c.o 2025-06-05T23:31:27.3452586Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:31:27.3455522Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:31:27.3458710Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx512f-u16.c.o 2025-06-05T23:31:27.3461975Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-fma3-u16.c.o 2025-06-05T23:31:27.3465519Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-06-05T23:31:27.3468770Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-sse-u8.c.o 2025-06-05T23:31:27.3472069Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx2-rational-3-3-div.c.o 2025-06-05T23:31:27.3475199Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx512f-rational-3-3-div.c.o 2025-06-05T23:31:27.3477607Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:31:27.3480087Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-fma3-rational-3-3-div.c.o 2025-06-05T23:31:27.3482481Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:31:27.3485484Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-06-05T23:31:27.3488353Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-sse2-rational-3-3-div.c.o 2025-06-05T23:31:27.3490745Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:31:27.3493186Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-u16.c.o 2025-06-05T23:31:27.3495788Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-u16.c.o 2025-06-05T23:31:27.3498420Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-06-05T23:31:27.3503074Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-u8.c.o 2025-06-05T23:31:27.3505174Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-u8.c.o 2025-06-05T23:31:27.3507245Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-06-05T23:31:27.3508971Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:31:27.3510364Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:31:27.3511838Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:31:27.3513605Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-sse-2x.c.o 2025-06-05T23:31:27.3515525Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-06-05T23:31:27.3517298Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx-u16.c.o 2025-06-05T23:31:27.3519069Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-u16.c.o 2025-06-05T23:31:27.3520876Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-06-05T23:31:27.3522719Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-06-05T23:31:27.3524535Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-sse2-u8.c.o 2025-06-05T23:31:27.3526104Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:31:27.3527501Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:31:27.3529112Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-sse41-u8.c.o 2025-06-05T23:31:27.3530897Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx-u16.c.o 2025-06-05T23:31:27.3532702Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-u16.c.o 2025-06-05T23:31:27.3534518Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-06-05T23:31:27.3536411Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-06-05T23:31:27.3538252Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse2-u8.c.o 2025-06-05T23:31:27.3540176Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse41-u8.c.o 2025-06-05T23:31:27.3541705Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:31:27.3543053Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:31:27.3544413Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:31:27.3546432Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx-u16.c.o 2025-06-05T23:31:27.3548543Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx512f-u16.c.o 2025-06-05T23:31:27.3550820Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-06-05T23:31:27.3553132Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-06-05T23:31:27.3555253Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-sse2-u8.c.o 2025-06-05T23:31:27.3557193Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-sse41-u8.c.o 2025-06-05T23:31:27.3559156Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx-u16.c.o 2025-06-05T23:31:27.3560938Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:31:27.3562554Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:31:28.4242336Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-u16.c.o 2025-06-05T23:31:28.4244793Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-06-05T23:31:28.4246788Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:31:28.4248820Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-06-05T23:31:28.4251123Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-sse2-u8.c.o 2025-06-05T23:31:28.4253540Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-sse41-u8.c.o 2025-06-05T23:31:28.4255834Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx-rsqrt-u16.c.o 2025-06-05T23:31:28.4258232Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx512f-rsqrt-u32.c.o 2025-06-05T23:31:28.4260641Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-fma3-rsqrt-u16.c.o 2025-06-05T23:31:28.4262700Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:31:28.4264516Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:31:28.4267710Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-06-05T23:31:28.4270578Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-06-05T23:31:28.4272774Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:31:28.4274946Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-sse-rsqrt-u8.c.o 2025-06-05T23:31:28.4277522Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-u40.c.o 2025-06-05T23:31:28.4280379Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-u40.c.o 2025-06-05T23:31:28.4283145Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.o 2025-06-05T23:31:28.4286069Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u64.c.o 2025-06-05T23:31:28.4289109Z [ 71%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:31:28.4291841Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-u8.c.o 2025-06-05T23:31:28.4294036Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:31:28.4296318Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-u8.c.o 2025-06-05T23:31:28.4298925Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-rsqrt-u16.c.o 2025-06-05T23:31:28.4301365Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-rsqrt-u16.c.o 2025-06-05T23:31:28.4303758Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-rsqrt-u16.c.o 2025-06-05T23:31:28.4306300Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-06-05T23:31:28.4308907Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-sse-rsqrt-u12.c.o 2025-06-05T23:31:28.4311442Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx-rational-9-8-div.c.o 2025-06-05T23:31:28.4313983Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx512f-rational-9-8-nr.c.o 2025-06-05T23:31:28.4315824Z [ 72%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-06-05T23:31:28.4317670Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-fma3-rational-9-8-div.c.o 2025-06-05T23:31:28.4320272Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-06-05T23:31:28.4321725Z [ 72%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:31:28.4323400Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-sse2-rational-9-8-div.c.o 2025-06-05T23:31:28.4326064Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx.c.o 2025-06-05T23:31:28.4327671Z [ 72%] Linking CXX static library libportable_kernels.a 2025-06-05T23:31:28.4329341Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx512f.c.o 2025-06-05T23:31:28.4331630Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-06-05T23:31:28.4333642Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-sse2.c.o 2025-06-05T23:31:28.4335871Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx.c.o 2025-06-05T23:31:28.4338181Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx512f.c.o 2025-06-05T23:31:28.4340501Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-06-05T23:31:28.4342954Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-sse2.c.o 2025-06-05T23:31:28.4345541Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx.c.o 2025-06-05T23:31:28.4346983Z [ 73%] Built target portable_kernels 2025-06-05T23:31:28.4347955Z [ 73%] Generating selected_operators.yaml for portable_ops_lib 2025-06-05T23:31:28.4349825Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx512f.c.o 2025-06-05T23:31:28.4352058Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-06-05T23:31:28.4354203Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-sse2.c.o 2025-06-05T23:31:28.4356630Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:31:28.4359350Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:31:28.4362275Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:31:28.4365453Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:31:28.4368377Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:31:28.4371223Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:31:28.4374162Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:31:29.5227854Z [ 73%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:31:29.5230928Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:31:29.5234209Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:31:29.5237249Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld128.c.o 2025-06-05T23:31:29.5239076Z [ 74%] Generating code for kernel registration 2025-06-05T23:31:29.5241245Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:31:29.5244197Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld128.c.o 2025-06-05T23:31:29.5247101Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:31:29.5249972Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld128.c.o 2025-06-05T23:31:29.5252970Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:31:29.5255792Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:31:29.5258674Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld128.c.o 2025-06-05T23:31:29.5261585Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:31:29.5264504Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:31:29.5270797Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd-prfm.c.o 2025-06-05T23:31:29.5273871Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:31:29.5276972Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:31:29.5279857Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:31:29.5282809Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:31:29.5285817Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:31:29.5288656Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:31:29.5291588Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:31:29.5294824Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:31:29.5297857Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:31:29.5300705Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-madd-prfm.c.o 2025-06-05T23:31:29.5303974Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:31:29.5307224Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-10x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:31:29.5310438Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:31:29.5313889Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:31:29.5317052Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.o 2025-06-05T23:31:29.5319762Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:31:29.5322695Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:31:29.5325590Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:31:29.5328456Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:31:29.5331208Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.o 2025-06-05T23:31:29.5334020Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:31:29.5337190Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:31:29.5340192Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:31:29.5343265Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8c8-minmax-avx2.c.o 2025-06-05T23:31:29.5346493Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:31:29.5349798Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-10x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:31:29.5353101Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:31:29.5356476Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:31:29.5359648Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.o 2025-06-05T23:31:29.5362725Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:31:29.5366603Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:31:29.5369888Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:31:30.4079706Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:31:30.4082745Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.o 2025-06-05T23:31:30.4086262Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:31:30.4089524Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:31:30.4092701Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:31:30.4095992Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8c8-minmax-avx2.c.o 2025-06-05T23:31:30.4099278Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:31:30.4102604Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:31:30.4105898Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:31:30.4109210Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:31:30.4112422Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:30.4115627Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:30.4118837Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:31:30.4122073Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-06-05T23:31:30.4125333Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-06-05T23:31:30.4128564Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:31:30.4131831Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:31:30.4134977Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:31:30.4138124Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:30.4141231Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:30.4144440Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:31:30.4146787Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-06-05T23:31:30.4148469Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-06-05T23:31:30.4149942Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-avx2-u16.c.o 2025-06-05T23:31:30.4151298Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-u32.c.o 2025-06-05T23:31:30.4152655Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-u16.c.o 2025-06-05T23:31:30.4154019Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-u32.c.o 2025-06-05T23:31:30.4155393Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-06-05T23:31:30.4156750Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-06-05T23:31:30.4158094Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-u32.c.o 2025-06-05T23:31:30.4159441Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-u16.c.o 2025-06-05T23:31:30.4160886Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:31:30.4162319Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-06-05T23:31:30.4163899Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:31:30.4165770Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:31:30.4167452Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:31:30.4169133Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:30.4171809Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:30.4174563Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:31:30.4177040Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:31:30.4179625Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:31:30.4182136Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:31:30.4184940Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:31:30.4187654Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:31:30.4190149Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:30.4192618Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:30.4195199Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:31:30.4197831Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:31:31.2970387Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:31:31.2973659Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:31:31.2977025Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:31:31.2980079Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:31:31.2983083Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:31.2986225Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:31.2989270Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:31:31.2992291Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:31:31.2995419Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:31:31.2998438Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:31:31.3001378Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512vnni-prfm.c.o 2025-06-05T23:31:31.3004379Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:31.3007234Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:31.3010018Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:31:31.3012828Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:31:31.3015809Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:31:31.3018685Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:31:31.3021514Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:31.3024149Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_ops_lib.dir/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:31:31.3026899Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:31:31.3029718Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:31.3032609Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:31:31.3035634Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:31:31.3038530Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:31:31.3041163Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:31:31.3044099Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512vnni-prfm.c.o 2025-06-05T23:31:31.3047162Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:31:31.3050252Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:31:31.3052290Z [ 81%] Linking CXX static library libportable_ops_lib.a 2025-06-05T23:31:31.3054617Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:31.3057892Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:31.3059432Z [ 81%] Built target portable_ops_lib 2025-06-05T23:31:31.3061184Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:31:31.3064053Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:31:31.3067566Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:31:31.3070379Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:31:31.3073413Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:31.3076233Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:31:31.3079117Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:31.3082493Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:31:31.3085506Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:31:31.3088543Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:31:31.3091615Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:31:31.3094839Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:31:31.3098037Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:31:31.3100587Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.o 2025-06-05T23:31:31.3103498Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.o 2025-06-05T23:31:31.3106537Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.o 2025-06-05T23:31:32.0717749Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-06-05T23:31:32.0720701Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx2-u64-acc2.c.o 2025-06-05T23:31:32.0723256Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx512skx-u128-acc2.c.o 2025-06-05T23:31:32.0726111Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx512vnni-u128-acc2.c.o 2025-06-05T23:31:32.0728156Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-06-05T23:31:32.0729489Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-ssse3-u32-acc2.c.o 2025-06-05T23:31:32.0731012Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:31:32.0732754Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:31:32.0734597Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:31:32.0736268Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:31:32.0737633Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-06-05T23:31:32.0739154Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:31:32.0741202Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:31:32.0743835Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:31:32.0746746Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:31:32.0749788Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:31:32.0752577Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:31:32.0755245Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:31:32.0758082Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:31:32.0760890Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:31:32.0763388Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-u32.c.o 2025-06-05T23:31:32.0765915Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-u32.c.o 2025-06-05T23:31:32.0768343Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-06-05T23:31:32.0770711Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-06-05T23:31:32.0773046Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-u32.c.o 2025-06-05T23:31:32.0775506Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-u32.c.o 2025-06-05T23:31:32.0777869Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-ssse3-u32.c.o 2025-06-05T23:31:32.0780234Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-u32.c.o 2025-06-05T23:31:32.0782770Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-u32.c.o 2025-06-05T23:31:32.0785249Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:31:32.0787983Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:31:32.0790471Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-u32.c.o 2025-06-05T23:31:32.0792989Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-u32.c.o 2025-06-05T23:31:32.0795447Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-u32.c.o 2025-06-05T23:31:32.0798062Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:31:32.0800715Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:31:32.0803381Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:31:32.0806147Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:31:32.0808948Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:31:32.0811655Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:31:32.0814481Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:31:32.0817283Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:31:32.0820080Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-06-05T23:31:32.0822762Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.o 2025-06-05T23:31:32.0825623Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-06-05T23:31:32.0828420Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-sse2-c8.c.o 2025-06-05T23:31:32.0831223Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o 2025-06-05T23:31:32.0834125Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:31:32.0837034Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:31:32.0839841Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:32.0842751Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:32.0845656Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:31:32.9722584Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:31:32.9725861Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:31:32.9728892Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o 2025-06-05T23:31:32.9731935Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:31:32.9735040Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:31:32.9738168Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:32.9741293Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:32.9744480Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:31:32.9747671Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:31:32.9750881Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:31:32.9753704Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-u32.c.o 2025-06-05T23:31:32.9756388Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-u16.c.o 2025-06-05T23:31:32.9759154Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-u32.c.o 2025-06-05T23:31:32.9761873Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-06-05T23:31:32.9764510Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-06-05T23:31:32.9768654Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-u32.c.o 2025-06-05T23:31:32.9772070Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-u16.c.o 2025-06-05T23:31:32.9775024Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:31:32.9778090Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:32.9781237Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:32.9784206Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:31:32.9787358Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:31:32.9790263Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:31:32.9793210Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:31:32.9796193Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:32.9799190Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:31:32.9802039Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:32.9805050Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:31:32.9807971Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:31:32.9810906Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:31:32.9813960Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:31:32.9817203Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:31:32.9820340Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:32.9823422Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:32.9826571Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:31:32.9829605Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:31:32.9832569Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:31:32.9834169Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:31:32.9835669Z [ 88%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:31:32.9837175Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:31:32.9838743Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:31:32.9840253Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:31:32.9841747Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:31:32.9843226Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:31:32.9844772Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:31:32.9846531Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-ssse3-c64.c.o 2025-06-05T23:31:32.9847921Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-06-05T23:31:32.9849235Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-avx2-u64-acc2.c.o 2025-06-05T23:31:32.9850532Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-06-05T23:31:32.9851845Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-sse2-u32-acc2.c.o 2025-06-05T23:31:33.7790438Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:31:33.7792047Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:31:33.7793721Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:31:33.7795728Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:31:33.7797707Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-06-05T23:31:33.7799151Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:31:33.7800615Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:31:33.7802090Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:31:33.7803571Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:31:33.7805189Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:31:33.7806670Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:31:33.7808051Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:31:33.7809830Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:31:33.7812060Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:31:33.7813569Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-u32.c.o 2025-06-05T23:31:33.7814984Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-u32.c.o 2025-06-05T23:31:33.7816492Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-06-05T23:31:33.7817904Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-06-05T23:31:33.7819309Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-u32.c.o 2025-06-05T23:31:33.7821306Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-u32.c.o 2025-06-05T23:31:33.7823648Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-u32.c.o 2025-06-05T23:31:33.7826205Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-u32.c.o 2025-06-05T23:31:33.7827778Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-u32.c.o 2025-06-05T23:31:33.7829162Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:31:33.7830858Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:31:33.7832604Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-u32.c.o 2025-06-05T23:31:33.7833972Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-u32.c.o 2025-06-05T23:31:33.7835410Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:31:33.7844088Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-u32.c.o 2025-06-05T23:31:33.7845741Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:31:33.7847479Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:31:33.7849555Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:31:33.7851193Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:31:33.7852697Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:31:33.7854199Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:31:33.7855780Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:31:33.7857213Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-avx2.c.o 2025-06-05T23:31:33.7858861Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-avx512f.c.o 2025-06-05T23:31:33.7860703Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-06-05T23:31:33.7862129Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-06-05T23:31:33.7863495Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-c8.c.o 2025-06-05T23:31:33.7864849Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-c16.c.o 2025-06-05T23:31:33.7866820Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:31:33.7868238Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse2-c16.c.o 2025-06-05T23:31:33.7869663Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse41-c16.c.o 2025-06-05T23:31:33.7871009Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx2-u128.c.o 2025-06-05T23:31:33.7872302Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx512skx-u256.c.o 2025-06-05T23:31:33.7873707Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-06-05T23:31:33.7875023Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse2-u64.c.o 2025-06-05T23:31:33.7877194Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse41-u64.c.o 2025-06-05T23:31:33.7879380Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-06-05T23:31:33.7881628Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-c8.c.o 2025-06-05T23:31:33.7883951Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse41-c16.c.o 2025-06-05T23:31:34.5031191Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-06-05T23:31:34.5034241Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:31:34.5037030Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-sse2-c16.c.o 2025-06-05T23:31:34.5039512Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-06-05T23:31:34.5041780Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-sse2-u16.c.o 2025-06-05T23:31:34.5044319Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx2-u128.c.o 2025-06-05T23:31:34.5046728Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx512skx-u256.c.o 2025-06-05T23:31:34.5049092Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-06-05T23:31:34.5052369Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-sse2-u64.c.o 2025-06-05T23:31:34.5055140Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-avx2-u16-prfm.c.o 2025-06-05T23:31:34.5057806Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x64-gemm-goi-scalar-int-u4.c.o 2025-06-05T23:31:34.5060435Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-switch-avx2.c.o 2025-06-05T23:31:34.5062994Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-06-05T23:31:34.5067397Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-sse2.c.o 2025-06-05T23:31:34.5069895Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-06-05T23:31:34.5072144Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-ssse3.c.o 2025-06-05T23:31:34.5074584Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-avx-u4.c.o 2025-06-05T23:31:34.5077212Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16s4-gemm-goi-avx-u4.c.o 2025-06-05T23:31:34.5079725Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:31:34.5082272Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2c4-gemm-goi-sse2-u4.c.o 2025-06-05T23:31:34.5085243Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:31:34.5088447Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x32-gemm-goi-avx512f-u4-prfm.c.o 2025-06-05T23:31:34.5091225Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-sse2-u4.c.o 2025-06-05T23:31:34.5093907Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-06-05T23:31:34.5096902Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-multi-avx.c.o 2025-06-05T23:31:34.5099634Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-sse.c.o 2025-06-05T23:31:34.5102052Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-06-05T23:31:34.5104507Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-sse2.c.o 2025-06-05T23:31:34.5106920Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-06-05T23:31:34.5109063Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-sse2.c.o 2025-06-05T23:31:34.5111269Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-06-05T23:31:34.5113606Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-sse2.c.o 2025-06-05T23:31:34.5115773Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-06-05T23:31:34.5118272Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-sse2.c.o 2025-06-05T23:31:34.5120478Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-sse2.c.o 2025-06-05T23:31:34.5122602Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-06-05T23:31:34.5124991Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-sse2.c.o 2025-06-05T23:31:34.5127748Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-06-05T23:31:34.5130475Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-multi-avx.c.o 2025-06-05T23:31:34.5133005Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx-u64.c.o 2025-06-05T23:31:34.5135384Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx2-u128.c.o 2025-06-05T23:31:34.5137793Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-u64.c.o 2025-06-05T23:31:34.5140737Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-u128.c.o 2025-06-05T23:31:34.5143069Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-06-05T23:31:34.5145510Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-06-05T23:31:34.5148121Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-06-05T23:31:34.5150794Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-06-05T23:31:34.5153506Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-06-05T23:31:34.5155759Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-06-05T23:31:34.5158443Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-sse2.c.o 2025-06-05T23:31:34.5161196Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-06-05T23:31:34.5164035Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-switch-avx2.c.o 2025-06-05T23:31:34.5166590Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-06-05T23:31:34.5168869Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-sse2.c.o 2025-06-05T23:31:36.0809787Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-06-05T23:31:36.0811598Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-sse2.c.o 2025-06-05T23:31:36.0813373Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-06-05T23:31:36.0814801Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-sse2.c.o 2025-06-05T23:31:36.0816321Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-06-05T23:31:36.0817919Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-sse2.c.o 2025-06-05T23:31:36.0820207Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-06-05T23:31:36.0822651Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-06-05T23:31:36.0825040Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-sse2-u64.c.o 2025-06-05T23:31:36.0827631Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-sse2-u16.c.o 2025-06-05T23:31:36.0829873Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-06-05T23:31:36.0832318Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-06-05T23:31:36.0834723Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-06-05T23:31:36.0836954Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-06-05T23:31:36.0839182Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-06-05T23:31:36.0841369Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-06-05T23:31:36.0843498Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-06-05T23:31:36.0845852Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-06-05T23:31:36.0847540Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-06-05T23:31:36.0849109Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-06-05T23:31:36.0850389Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-06-05T23:31:36.0851196Z [ 98%] Linking C static library libmicrokernels-prod.a 2025-06-05T23:31:36.0851595Z [ 98%] Built target microkernels-prod 2025-06-05T23:31:36.0851984Z [ 98%] Generating build_identifier.c 2025-06-05T23:31:36.0852773Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-06-05T23:31:36.0853889Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-06-05T23:31:36.0855085Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-06-05T23:31:36.0856208Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-06-05T23:31:36.0857308Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-06-05T23:31:36.0858397Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-06-05T23:31:36.0859510Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-06-05T23:31:36.0860653Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-06-05T23:31:36.0861739Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-06-05T23:31:36.0862891Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-06-05T23:31:36.0864028Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-06-05T23:31:36.0865767Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-06-05T23:31:36.0866989Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-06-05T23:31:36.0868072Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-06-05T23:31:36.0869177Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-06-05T23:31:36.0870361Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-06-05T23:31:36.0871512Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-06-05T23:31:36.0872587Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-06-05T23:31:36.0873640Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-06-05T23:31:36.0874712Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-06-05T23:31:36.0875933Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-06-05T23:31:36.0877063Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-06-05T23:31:36.0878163Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-06-05T23:31:36.0879270Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-06-05T23:31:36.0880382Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-06-05T23:31:36.0881465Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-06-05T23:31:36.0882717Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-06-05T23:31:36.0883915Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-06-05T23:31:36.0885365Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-06-05T23:31:36.0886986Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-06-05T23:31:36.0888129Z [100%] Linking CXX static library libXNNPACK.a 2025-06-05T23:31:36.0888702Z [100%] Built target XNNPACK 2025-06-05T23:31:36.0889724Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-06-05T23:31:36.0891293Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-06-05T23:31:36.0892886Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-06-05T23:31:36.0894509Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-06-05T23:31:36.0896027Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-06-05T23:31:36.0897538Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-06-05T23:31:36.0898588Z [100%] Linking CXX static library libxnnpack_backend.a 2025-06-05T23:31:36.0899112Z [100%] Built target xnnpack_backend 2025-06-05T23:31:36.0900018Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_fallback.cpp.o 2025-06-05T23:31:36.0901338Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_fast_hadamard_transform.cpp.o 2025-06-05T23:31:36.0902832Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_update_cache.cpp.o 2025-06-05T23:31:36.0904009Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_sdpa.cpp.o 2025-06-05T23:31:36.3936637Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/spinquant/fast_hadamard_transform.cpp.o 2025-06-05T23:31:36.3938181Z [100%] Building C object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/spinquant/third-party/FFHT/fht_avx.c.o 2025-06-05T23:31:36.3939231Z [100%] Linking CXX static library libcustom_ops.a 2025-06-05T23:31:36.3939817Z [100%] Built target custom_ops 2025-06-05T23:31:36.3940295Z Install the project... 2025-06-05T23:31:36.3940808Z -- Install configuration: "Release" 2025-06-05T23:31:36.3941335Z -- Installing: /pytorch/executorch/cmake-out/lib/libflatccrt.a 2025-06-05T23:31:36.3942032Z -- Installing: /pytorch/executorch/cmake-out/include/fxdiv.h 2025-06-05T23:31:36.3942906Z -- Installing: /pytorch/executorch/cmake-out/share/cpuinfo/cpuinfo-config.cmake 2025-06-05T23:31:36.3943687Z -- Installing: /pytorch/executorch/cmake-out/lib/libcpuinfo.a 2025-06-05T23:31:36.3944734Z -- Installing: /pytorch/executorch/cmake-out/include/cpuinfo.h 2025-06-05T23:31:36.3945745Z -- Installing: /pytorch/executorch/cmake-out/share/cpuinfo/cpuinfo-targets.cmake 2025-06-05T23:31:36.3946687Z -- Installing: /pytorch/executorch/cmake-out/share/cpuinfo/cpuinfo-targets-release.cmake 2025-06-05T23:31:36.3947593Z -- Installing: /pytorch/executorch/cmake-out/lib/pkgconfig/libcpuinfo.pc 2025-06-05T23:31:36.3948349Z -- Installing: /pytorch/executorch/cmake-out/include/pthreadpool.h 2025-06-05T23:31:36.3949153Z -- Installing: /pytorch/executorch/cmake-out/lib/libpthreadpool.a 2025-06-05T23:31:36.3949799Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_portable_kernels.a 2025-06-05T23:31:36.3950593Z -- Installing: /pytorch/executorch/cmake-out/lib/libportable_kernels.a 2025-06-05T23:31:36.3951303Z -- Installing: /pytorch/executorch/cmake-out/lib/libportable_ops_lib.a 2025-06-05T23:31:36.3952034Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/portable/Functions.h 2025-06-05T23:31:36.3953041Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/portable/NativeFunctions.h 2025-06-05T23:31:36.3953945Z -- Installing: /pytorch/executorch/cmake-out/lib/libeigen_blas.a 2025-06-05T23:31:36.3954723Z -- Installing: /pytorch/executorch/cmake-out/lib/libcpublas.a 2025-06-05T23:31:36.3955384Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_kernels.a 2025-06-05T23:31:36.3956088Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_ops_lib.a 2025-06-05T23:31:36.3956981Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/optimized/Functions.h 2025-06-05T23:31:36.3958028Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/optimized/NativeFunctions.h 2025-06-05T23:31:36.3958941Z -- Up-to-date: /pytorch/executorch/cmake-out/lib/libcpublas.a 2025-06-05T23:31:36.3959691Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_native_cpu_ops_lib.a 2025-06-05T23:31:36.3960420Z -- Installing: /pytorch/executorch/cmake-out/lib/Functions.h 2025-06-05T23:31:36.3961028Z -- Installing: /pytorch/executorch/cmake-out/lib/NativeFunctions.h 2025-06-05T23:31:36.3961782Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core 2025-06-05T23:31:36.3962685Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/array_ref.h 2025-06-05T23:31:36.3963650Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/data_loader.h 2025-06-05T23:31:36.3964539Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/defines.h 2025-06-05T23:31:36.3965808Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/error.h 2025-06-05T23:31:36.3966615Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/evalue.h 2025-06-05T23:31:36.3967341Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer.h 2025-06-05T23:31:36.3968120Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer_hooks.h 2025-06-05T23:31:36.3969041Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer_hooks_delegate.h 2025-06-05T23:31:36.3969933Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten 2025-06-05T23:31:36.3970855Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/exec_aten.h 2025-06-05T23:31:36.3971868Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:31:36.3972897Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h 2025-06-05T23:31:36.3974087Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h 2025-06-05T23:31:36.3975091Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/test 2025-06-05T23:31:36.3976058Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:31:36.3977080Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/dim_order_util.h 2025-06-05T23:31:36.3978066Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h 2025-06-05T23:31:36.3979161Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h 2025-06-05T23:31:36.3980304Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h 2025-06-05T23:31:36.3981416Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_util.h 2025-06-05T23:31:36.3982321Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/test 2025-06-05T23:31:36.3983249Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/freeable_buffer.h 2025-06-05T23:31:36.3984236Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/function_ref.h 2025-06-05T23:31:36.3985168Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/hierarchical_allocator.h 2025-06-05T23:31:36.3986311Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/memory_allocator.h 2025-06-05T23:31:36.3987295Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/named_data_map.h 2025-06-05T23:31:36.3988279Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type 2025-06-05T23:31:36.3989383Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bfloat16.h 2025-06-05T23:31:36.3990421Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bfloat16_math.h 2025-06-05T23:31:36.3991274Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bits_types.h 2025-06-05T23:31:36.3992076Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:31:36.3992886Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:31:36.3993895Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:31:36.3994999Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h 2025-06-05T23:31:36.3996180Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h 2025-06-05T23:31:36.3997375Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:31:36.3998431Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h 2025-06-05T23:31:36.3999490Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h 2025-06-05T23:31:36.4000461Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h 2025-06-05T23:31:36.4001393Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h 2025-06-05T23:31:36.4002409Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h 2025-06-05T23:31:36.4003372Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h 2025-06-05T23:31:36.4004526Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h 2025-06-05T23:31:36.4005470Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h 2025-06-05T23:31:36.4006471Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h 2025-06-05T23:31:36.4007467Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h 2025-06-05T23:31:36.4008650Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h 2025-06-05T23:31:36.4009652Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h 2025-06-05T23:31:36.4010577Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/complex.h 2025-06-05T23:31:36.4011389Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/device.h 2025-06-05T23:31:36.4012190Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/half.h 2025-06-05T23:31:36.4012991Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/optional.h 2025-06-05T23:31:36.4013830Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/qint_types.h 2025-06-05T23:31:36.4014652Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/scalar.h 2025-06-05T23:31:36.4015501Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/scalar_type.h 2025-06-05T23:31:37.2059316Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/string_view.h 2025-06-05T23:31:37.2060257Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor.h 2025-06-05T23:31:37.2061185Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor_impl.h 2025-06-05T23:31:37.2062154Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor_options.h 2025-06-05T23:31:37.2062993Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/test 2025-06-05T23:31:37.2063704Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/result.h 2025-06-05T23:31:37.2064366Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/span.h 2025-06-05T23:31:37.2065224Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tag.h 2025-06-05T23:31:37.2066070Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tensor_layout.h 2025-06-05T23:31:37.2066856Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tensor_shape_dynamism.h 2025-06-05T23:31:37.2067577Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/test 2025-06-05T23:31:37.2068352Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel 2025-06-05T23:31:37.2069039Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/kernel_includes.h 2025-06-05T23:31:37.2069901Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/kernel_runtime_context.h 2025-06-05T23:31:37.2070988Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/operator_registry.h 2025-06-05T23:31:37.2071729Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/test 2025-06-05T23:31:37.2072434Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/test/test_util.h 2025-06-05T23:31:37.2073245Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/thread_parallel_interface.h 2025-06-05T23:31:37.2074094Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform 2025-06-05T23:31:37.2074786Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/abort.h 2025-06-05T23:31:37.2075487Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/assert.h 2025-06-05T23:31:37.2076183Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/clock.h 2025-06-05T23:31:37.2077005Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/compat_unistd.h 2025-06-05T23:31:37.2078029Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/compiler.h 2025-06-05T23:31:37.2078736Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/default 2025-06-05T23:31:37.2079577Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/log.h 2025-06-05T23:31:37.2080365Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/platform.h 2025-06-05T23:31:37.2081079Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/profiler.h 2025-06-05T23:31:37.2081802Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/runtime.h 2025-06-05T23:31:37.2082499Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/system.h 2025-06-05T23:31:37.2083192Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test 2025-06-05T23:31:37.2083893Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test/pal_spy.h 2025-06-05T23:31:37.2084748Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test/stub_platform.h 2025-06-05T23:31:37.2085520Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/types.h 2025-06-05T23:31:37.2086268Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util 2025-06-05T23:31:37.2087158Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h 2025-06-05T23:31:37.2088146Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/meta_programming.h 2025-06-05T23:31:37.2088934Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/test 2025-06-05T23:31:37.2089715Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/type_list.h 2025-06-05T23:31:37.2090572Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor 2025-06-05T23:31:37.2091251Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor.h 2025-06-05T23:31:37.2091993Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_accessor.h 2025-06-05T23:31:37.2092768Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_ptr.h 2025-06-05T23:31:37.2093683Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_ptr_maker.h 2025-06-05T23:31:37.2094678Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/test 2025-06-05T23:31:37.2095350Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool 2025-06-05T23:31:37.2096095Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/cpuinfo_utils.h 2025-06-05T23:31:37.2096859Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/test 2025-06-05T23:31:37.2097614Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/threadpool.h 2025-06-05T23:31:37.2098429Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/threadpool_guard.h 2025-06-05T23:31:37.2099106Z -- Installing: /pytorch/executorch/cmake-out/lib/libexecutorch.a 2025-06-05T23:31:37.2099626Z -- Installing: /pytorch/executorch/cmake-out/lib/libexecutorch_core.a 2025-06-05T23:31:37.2100235Z -- Installing: /pytorch/executorch/cmake-out/lib/cmake/ExecuTorch/executorch-config.cmake 2025-06-05T23:31:37.2100830Z -- Installing: /pytorch/executorch/cmake-out/lib/libXNNPACK.a 2025-06-05T23:31:37.2101330Z -- Installing: /pytorch/executorch/cmake-out/include/xnnpack.h 2025-06-05T23:31:37.2101945Z -- Installing: /pytorch/executorch/cmake-out/include/experiments-config.h 2025-06-05T23:31:37.2102556Z -- Installing: /pytorch/executorch/cmake-out/lib/libmicrokernels-prod.a 2025-06-05T23:31:37.2103113Z -- Up-to-date: /pytorch/executorch/cmake-out/lib/libmicrokernels-prod.a 2025-06-05T23:31:37.2103655Z -- Installing: /pytorch/executorch/cmake-out/lib/libxnnpack_backend.a 2025-06-05T23:31:37.2104196Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_data_loader.a 2025-06-05T23:31:37.2104781Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_flat_tensor.a 2025-06-05T23:31:37.2105446Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_module.so 2025-06-05T23:31:37.2106020Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_module_static.a 2025-06-05T23:31:37.2106598Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_tensor.a 2025-06-05T23:31:37.2107138Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_threadpool.a 2025-06-05T23:31:37.2107676Z -- Installing: /pytorch/executorch/cmake-out/lib/libcustom_ops.a 2025-06-05T23:31:37.2108276Z -- Installing: /pytorch/executorch/cmake-out/lib/libquantized_kernels.a 2025-06-05T23:31:37.2109021Z -- Installing: /pytorch/executorch/cmake-out/lib/libquantized_ops_lib.a 2025-06-05T23:31:37.2109705Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/quantized/Functions.h 2025-06-05T23:31:37.2110492Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/quantized/NativeFunctions.h 2025-06-05T23:31:37.2111066Z + cmake_build_llama_runner 2025-06-05T23:31:37.2111324Z + echo 'Building llama runner' 2025-06-05T23:31:37.2111595Z Building llama runner 2025-06-05T23:31:37.2111835Z + pushd extension/llm/tokenizers 2025-06-05T23:31:37.2112232Z /pytorch/executorch/extension/llm/tokenizers /pytorch/executorch 2025-06-05T23:31:37.2112653Z + echo 'Updating tokenizers submodule' 2025-06-05T23:31:37.2112963Z Updating tokenizers submodule 2025-06-05T23:31:37.2113231Z + git submodule update --init 2025-06-05T23:31:37.2113486Z + popd 2025-06-05T23:31:37.2113674Z /pytorch/executorch 2025-06-05T23:31:37.2113915Z + dir=examples/models/llama 2025-06-05T23:31:37.2114525Z + retry cmake -DCMAKE_INSTALL_PREFIX=cmake-out -DCMAKE_BUILD_TYPE=Release -Bcmake-out/examples/models/llama examples/models/llama 2025-06-05T23:31:37.2115485Z + cmake -DCMAKE_INSTALL_PREFIX=cmake-out -DCMAKE_BUILD_TYPE=Release -Bcmake-out/examples/models/llama examples/models/llama 2025-06-05T23:31:37.2116149Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:31:37.2116514Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:31:37.2116869Z -- Detecting C compiler ABI info 2025-06-05T23:31:37.2117158Z -- Detecting C compiler ABI info - done 2025-06-05T23:31:37.2117572Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:31:37.2117957Z -- Detecting C compile features 2025-06-05T23:31:37.2118241Z -- Detecting C compile features - done 2025-06-05T23:31:37.2118553Z -- Detecting CXX compiler ABI info 2025-06-05T23:31:37.2118848Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:31:37.2119240Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:31:37.2119618Z -- Detecting CXX compile features 2025-06-05T23:31:37.2119923Z -- Detecting CXX compile features - done 2025-06-05T23:31:37.2120518Z CMake Warning (dev) at CMakeLists.txt:82 (find_package): 2025-06-05T23:31:37.2121029Z Policy CMP0144 is not set: find_package uses upper-case _ROOT 2025-06-05T23:31:37.2121592Z variables. Run "cmake --help-policy CMP0144" for policy details. Use the 2025-06-05T23:31:37.2122120Z cmake_policy command to set the policy and suppress this warning. 2025-06-05T23:31:37.2122429Z 2025-06-05T23:31:37.2122560Z CMake variable EXECUTORCH_ROOT is set to: 2025-06-05T23:31:37.2122779Z 2025-06-05T23:31:37.2122928Z /pytorch/executorch/examples/models/llama/../../.. 2025-06-05T23:31:37.2123247Z 2025-06-05T23:31:37.2123488Z For compatibility, find_package is ignoring the variable, but code in a 2025-06-05T23:31:37.2124070Z .cmake module might still use it. 2025-06-05T23:31:37.2124518Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-05T23:31:37.2124972Z  2025-06-05T23:31:37.2125211Z etdump library is not found. 2025-06-05T23:31:37.2125680Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:37.2126137Z bundled_program library is not found. 2025-06-05T23:31:37.2126614Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:37.2127090Z coreml_util library is not found. 2025-06-05T23:31:38.7950155Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:38.7951206Z coreml_inmemoryfs library is not found. 2025-06-05T23:31:38.7952094Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:38.7952977Z coremldelegate library is not found. 2025-06-05T23:31:38.7953858Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:38.7954692Z mpsdelegate library is not found. 2025-06-05T23:31:38.7955538Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:38.7956408Z neuron_backend library is not found. 2025-06-05T23:31:38.7957482Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:38.7958437Z qnn_executorch_backend library is not found. 2025-06-05T23:31:38.7959387Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:38.7960331Z extension_runner_util library is not found. 2025-06-05T23:31:38.7961276Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:38.7962182Z extension_training library is not found. 2025-06-05T23:31:38.7963067Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:38.7963920Z kleidiai library is not found. 2025-06-05T23:31:38.7964780Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:38.7965708Z vulkan_backend library is not found. 2025-06-05T23:31:38.7966598Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:38.7967527Z quantized_ops_aot_lib library is not found. 2025-06-05T23:31:38.7968481Z If needed rebuild with the proper options in CMakeLists.txt 2025-06-05T23:31:38.7970003Z -- executorch: Using source file list /pytorch/executorch/cmake-out/examples/models/llama/runner/../../../../executorch_srcs.cmake 2025-06-05T23:31:38.7971385Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX17 2025-06-05T23:31:38.7972126Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX17 - Success 2025-06-05T23:31:38.7973040Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX20 2025-06-05T23:31:38.7973783Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX20 - Failed 2025-06-05T23:31:38.7974490Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:31:38.7975177Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-06-05T23:31:38.7975825Z -- Found Threads: TRUE 2025-06-05T23:31:38.7977528Z CMake Deprecation Warning at /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/CMakeLists.txt:15 (cmake_minimum_required): 2025-06-05T23:31:38.7979330Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:31:38.7980133Z CMake. 2025-06-05T23:31:38.7980340Z 2025-06-05T23:31:38.7980763Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:31:38.7981818Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:31:38.7982722Z to work with policies introduced by or earlier. 2025-06-05T23:31:38.7983213Z 2025-06-05T23:31:38.7983406Z  2025-06-05T23:31:38.7983758Z -- VERSION: 0.2.1 2025-06-05T23:31:38.7984219Z -- Not Found TCMalloc: TCMALLOC_LIB-NOTFOUND 2025-06-05T23:31:38.7984836Z -- Configuring done (1.3s) 2025-06-05T23:31:38.7985321Z -- Generating done (0.4s) 2025-06-05T23:31:38.7986349Z -- Build files have been written to: /pytorch/executorch/cmake-out/examples/models/llama 2025-06-05T23:31:38.7987479Z + cmake --build cmake-out/examples/models/llama -j9 --config Release 2025-06-05T23:31:38.7989207Z [ 1%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/log_severity.dir/log_severity.cc.o 2025-06-05T23:31:38.7991665Z [ 1%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/spinlock_wait.dir/internal/spinlock_wait.cc.o 2025-06-05T23:31:38.7994206Z [ 1%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/strerror.dir/internal/strerror.cc.o 2025-06-05T23:31:38.7996803Z [ 1%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/utf8_for_code_point.dir/internal/utf8_for_code_point.cc.o 2025-06-05T23:31:38.7999237Z [ 1%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/numeric/CMakeFiles/int128.dir/int128.cc.o 2025-06-05T23:31:38.8001603Z [ 1%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_fixed.cc.o 2025-06-05T23:31:38.8004356Z [ 1%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/civil_time.dir/internal/cctz/src/civil_time_detail.cc.o 2025-06-05T23:31:38.8007173Z [ 1%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/profiling/CMakeFiles/exponential_biased.dir/internal/exponential_biased.cc.o 2025-06-05T23:31:38.8010919Z [ 1%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/arena.cc.o 2025-06-05T23:31:38.8013436Z [ 2%] Linking CXX static library libabsl_spinlock_wait.a 2025-06-05T23:31:38.8014143Z [ 2%] Built target spinlock_wait 2025-06-05T23:31:38.8015005Z [ 2%] Linking CXX static library libabsl_utf8_for_code_point.a 2025-06-05T23:31:38.8017876Z [ 2%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/arenastring.cc.o 2025-06-05T23:31:38.8020277Z [ 2%] Built target utf8_for_code_point 2025-06-05T23:31:38.8021794Z [ 2%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/leak_check.dir/leak_check.cc.o 2025-06-05T23:31:38.8023406Z [ 2%] Linking CXX static library libabsl_strerror.a 2025-06-05T23:31:38.8024334Z [ 2%] Linking CXX static library libabsl_civil_time.a 2025-06-05T23:31:38.8025137Z [ 2%] Built target strerror 2025-06-05T23:31:38.8027915Z [ 3%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/bytestream.cc.o 2025-06-05T23:31:38.8030335Z [ 3%] Built target civil_time 2025-06-05T23:31:38.8031118Z [ 3%] Linking CXX static library libabsl_log_severity.a 2025-06-05T23:31:38.8033182Z [ 3%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_commandlineflag_internal.dir/internal/commandlineflag.cc.o 2025-06-05T23:31:38.8035064Z [ 4%] Linking CXX static library libabsl_int128.a 2025-06-05T23:31:38.8035753Z [ 4%] Built target log_severity 2025-06-05T23:31:38.8037409Z [ 5%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_nullguard.dir/internal/nullguard.cc.o 2025-06-05T23:31:38.8040068Z [ 5%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_seed_gen_exception.dir/seed_gen_exception.cc.o 2025-06-05T23:31:38.8041606Z [ 5%] Built target int128 2025-06-05T23:31:38.8042429Z [ 6%] Linking CXX static library libabsl_exponential_biased.a 2025-06-05T23:31:38.8044557Z [ 6%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_platform.dir/internal/randen_round_keys.cc.o 2025-06-05T23:31:38.8046180Z [ 6%] Built target exponential_biased 2025-06-05T23:31:38.8048789Z [ 6%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/arena.cc.o 2025-06-05T23:31:38.8051249Z [ 7%] Linking CXX static library libabsl_leak_check.a 2025-06-05T23:31:38.8051983Z [ 7%] Built target leak_check 2025-06-05T23:31:38.8054618Z [ 8%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/arenastring.cc.o 2025-06-05T23:31:38.8058153Z [ 8%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_format.cc.o 2025-06-05T23:31:38.8060075Z [ 8%] Linking CXX static library libabsl_flags_commandlineflag_internal.a 2025-06-05T23:31:38.8061032Z [ 8%] Built target flags_commandlineflag_internal 2025-06-05T23:31:38.8062710Z [ 8%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/builder.cc.o 2025-06-05T23:31:38.8065447Z [ 8%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/unicode_script.cc.o 2025-06-05T23:31:38.8067351Z [ 8%] Linking CXX static library libabsl_log_internal_nullguard.a 2025-06-05T23:31:38.8068545Z [ 8%] Linking CXX static library libabsl_random_internal_platform.a 2025-06-05T23:31:38.8069414Z [ 8%] Built target log_internal_nullguard 2025-06-05T23:31:38.8072078Z [ 8%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/coded_stream.cc.o 2025-06-05T23:31:38.8074437Z [ 8%] Built target random_internal_platform 2025-06-05T23:31:38.8076157Z [ 8%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/trainer_factory.cc.o 2025-06-05T23:31:38.8078800Z [ 8%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/raw_logging_internal.dir/internal/raw_logging.cc.o 2025-06-05T23:31:38.8080662Z [ 9%] Linking CXX static library libabsl_random_seed_gen_exception.a 2025-06-05T23:31:38.8081652Z [ 9%] Built target random_seed_gen_exception 2025-06-05T23:31:38.8083535Z [ 9%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/decode_rust_punycode.dir/internal/decode_rust_punycode.cc.o 2025-06-05T23:31:38.8086286Z [ 9%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_if.cc.o 2025-06-05T23:31:39.7040884Z [ 10%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_impl.cc.o 2025-06-05T23:31:39.7044193Z [ 10%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/bytestream.cc.o 2025-06-05T23:31:39.7046373Z [ 10%] Linking CXX static library libabsl_raw_logging_internal.a 2025-06-05T23:31:39.7047066Z [ 10%] Built target raw_logging_internal 2025-06-05T23:31:39.7048732Z [ 10%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_info.cc.o 2025-06-05T23:31:39.7051090Z [ 10%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/common.cc.o 2025-06-05T23:31:39.7053067Z [ 10%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/trainer_interface.cc.o 2025-06-05T23:31:39.7054109Z [ 10%] Linking CXX static library libabsl_decode_rust_punycode.a 2025-06-05T23:31:39.7054586Z [ 10%] Built target decode_rust_punycode 2025-06-05T23:31:39.7057195Z [ 10%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/extension_set.cc.o 2025-06-05T23:31:39.7062146Z [ 11%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_enum_util.cc.o 2025-06-05T23:31:39.7067215Z [ 11%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_message_table_driven_lite.cc.o 2025-06-05T23:31:39.7071754Z [ 11%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/coded_stream.cc.o 2025-06-05T23:31:39.7076167Z [ 11%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_message_util.cc.o 2025-06-05T23:31:39.7079453Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/builder.cc:47:15: warning: unused variable 'kMaxUnicode' [-Wunused-const-variable] 2025-06-05T23:31:39.7081062Z constexpr int kMaxUnicode = 0x10FFFF; 2025-06-05T23:31:39.7081599Z ^ 2025-06-05T23:31:39.7083086Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/builder.cc:49:36: warning: unused variable 'kDefaultNormalizerName' [-Wunused-const-variable] 2025-06-05T23:31:39.7084911Z static constexpr absl::string_view kDefaultNormalizerName = "nfkc"; 2025-06-05T23:31:39.7085647Z ^ 2025-06-05T23:31:39.7086135Z 2 warnings generated. 2025-06-05T23:31:39.7087767Z [ 12%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/unigram_model_trainer.cc.o 2025-06-05T23:31:39.7090371Z [ 12%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_libc.cc.o 2025-06-05T23:31:39.7093785Z [ 12%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/implicit_weak_message.cc.o 2025-06-05T23:31:39.7097123Z [ 12%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_lookup.cc.o 2025-06-05T23:31:39.7100192Z [ 12%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/common.cc.o 2025-06-05T23:31:39.7104101Z [ 13%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/int128.cc.o 2025-06-05T23:31:39.7107459Z [ 14%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_posix.cc.o 2025-06-05T23:31:39.7110459Z [ 14%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/zone_info_source.cc.o 2025-06-05T23:31:39.7114112Z [ 14%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/io_win32.cc.o 2025-06-05T23:31:39.7118602Z [ 14%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/message_lite.cc.o 2025-06-05T23:31:39.7123113Z [ 14%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/parse_context.cc.o 2025-06-05T23:31:39.7127677Z [ 15%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/repeated_field.cc.o 2025-06-05T23:31:39.7131436Z [ 16%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/profiling/CMakeFiles/periodic_sampler.dir/internal/periodic_sampler.cc.o 2025-06-05T23:31:39.7134167Z [ 16%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/word_model_trainer.cc.o 2025-06-05T23:31:39.7137008Z [ 16%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_randen_hwaes_impl.dir/internal/randen_hwaes.cc.o 2025-06-05T23:31:39.7139865Z [ 16%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_randen_slow.dir/internal/randen_slow.cc.o 2025-06-05T23:31:39.7141688Z [ 16%] Linking CXX static library libabsl_time_zone.a 2025-06-05T23:31:39.7144556Z [ 17%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/extension_set.cc.o 2025-06-05T23:31:39.7147036Z [ 17%] Built target time_zone 2025-06-05T23:31:39.7148573Z [ 17%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/types/CMakeFiles/bad_any_cast_impl.dir/bad_any_cast.cc.o 2025-06-05T23:31:39.7150317Z [ 17%] Linking CXX static library libabsl_periodic_sampler.a 2025-06-05T23:31:39.7151092Z [ 17%] Built target periodic_sampler 2025-06-05T23:31:39.7152704Z [ 17%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/cycleclock.cc.o 2025-06-05T23:31:39.7155956Z [ 17%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/status.cc.o 2025-06-05T23:31:39.7160423Z [ 17%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/statusor.cc.o 2025-06-05T23:31:39.7163758Z [ 17%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/spinlock.cc.o 2025-06-05T23:31:39.7166522Z [ 17%] Linking CXX static library libabsl_bad_any_cast_impl.a 2025-06-05T23:31:39.7167654Z [ 18%] Linking CXX static library libabsl_random_internal_randen_slow.a 2025-06-05T23:31:39.7168513Z [ 18%] Built target bad_any_cast_impl 2025-06-05T23:31:39.7171246Z [ 18%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/stringpiece.cc.o 2025-06-05T23:31:39.7173826Z [ 18%] Built target random_internal_randen_slow 2025-06-05T23:31:39.7175262Z [ 19%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/sysinfo.cc.o 2025-06-05T23:31:39.7177347Z [ 19%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/thread_identity.cc.o 2025-06-05T23:31:39.7179561Z [ 19%] Linking CXX static library libabsl_random_internal_randen_hwaes_impl.a 2025-06-05T23:31:39.7180630Z [ 19%] Built target random_internal_randen_hwaes_impl 2025-06-05T23:31:40.6378729Z [ 19%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/throw_delegate.dir/internal/throw_delegate.cc.o 2025-06-05T23:31:40.6382438Z [ 19%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_enum_util.cc.o 2025-06-05T23:31:40.6386173Z [ 19%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/char_model_trainer.cc.o 2025-06-05T23:31:40.6389246Z [ 19%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/debugging_internal.dir/internal/address_is_readable.cc.o 2025-06-05T23:31:40.6393200Z [ 20%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/stringprintf.cc.o 2025-06-05T23:31:40.6396845Z [ 20%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/unscaledcycleclock.cc.o 2025-06-05T23:31:40.6399508Z [ 20%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/debugging_internal.dir/internal/elf_mem_image.cc.o 2025-06-05T23:31:40.6403352Z [ 20%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/structurally_valid.cc.o 2025-06-05T23:31:40.6407811Z [ 20%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/strutil.cc.o 2025-06-05T23:31:40.6410443Z [ 20%] Linking CXX static library libabsl_base.a 2025-06-05T23:31:40.6411404Z [ 20%] Linking CXX static library libabsl_throw_delegate.a 2025-06-05T23:31:40.6414345Z [ 20%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/time.cc.o 2025-06-05T23:31:40.6416618Z [ 20%] Built target base 2025-06-05T23:31:40.6417088Z [ 20%] Built target throw_delegate 2025-06-05T23:31:40.6419826Z [ 21%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/wire_format_lite.cc.o 2025-06-05T23:31:40.6423292Z [ 21%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/demangle_rust.dir/internal/demangle_rust.cc.o 2025-06-05T23:31:40.6427211Z [ 21%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_message_table_driven_lite.cc.o 2025-06-05T23:31:40.6431942Z [ 21%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/generated_message_util.cc.o 2025-06-05T23:31:40.6435771Z [ 22%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/debugging_internal.dir/internal/vdso_support.cc.o 2025-06-05T23:31:40.6438535Z [ 22%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/bpe_model_trainer.cc.o 2025-06-05T23:31:40.6442312Z [ 23%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/implicit_weak_message.cc.o 2025-06-05T23:31:40.6445161Z [ 23%] Linking CXX static library libabsl_demangle_rust.a 2025-06-05T23:31:40.6448069Z [ 23%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream.cc.o 2025-06-05T23:31:40.6450490Z [ 23%] Built target demangle_rust 2025-06-05T23:31:40.6453381Z [ 23%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream_impl.cc.o 2025-06-05T23:31:40.6458056Z [ 23%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream_impl_lite.cc.o 2025-06-05T23:31:40.6461770Z [ 23%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/builtin_pb/sentencepiece.pb.cc.o 2025-06-05T23:31:40.6463672Z [ 23%] Linking CXX static library libabsl_debugging_internal.a 2025-06-05T23:31:40.6468092Z [ 23%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/int128.cc.o 2025-06-05T23:31:40.6470374Z [ 23%] Built target debugging_internal 2025-06-05T23:31:40.6471946Z [ 23%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/string_view.dir/string_view.cc.o 2025-06-05T23:31:40.6475345Z [ 23%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/io_win32.cc.o 2025-06-05T23:31:40.6479645Z [ 23%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/message_lite.cc.o 2025-06-05T23:31:40.6484206Z [ 23%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/parse_context.cc.o 2025-06-05T23:31:40.6488699Z [ 24%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/repeated_field.cc.o 2025-06-05T23:31:40.6492335Z [ 25%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/sentencepiece_trainer.cc.o 2025-06-05T23:31:40.6495217Z [ 26%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/builtin_pb/sentencepiece_model.pb.cc.o 2025-06-05T23:31:40.6497142Z [ 27%] Linking CXX static library libabsl_string_view.a 2025-06-05T23:31:40.6499816Z [ 27%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/status.cc.o 2025-06-05T23:31:40.6503144Z [ 27%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/bpe_model.cc.o 2025-06-05T23:31:40.6504543Z [ 27%] Built target string_view 2025-06-05T23:31:40.6506296Z [ 28%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/types/CMakeFiles/bad_variant_access.dir/bad_variant_access.cc.o 2025-06-05T23:31:40.6509838Z [ 28%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/statusor.cc.o 2025-06-05T23:31:40.6513204Z [ 28%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/char_model.cc.o 2025-06-05T23:31:40.6515580Z [ 28%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/error.cc.o 2025-06-05T23:31:40.6519055Z [ 28%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/stringpiece.cc.o 2025-06-05T23:31:40.6522586Z [ 28%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_cpu_detect.dir/internal/cpu_detect.cc.o 2025-06-05T23:31:40.6524340Z [ 28%] Linking CXX static library libabsl_bad_variant_access.a 2025-06-05T23:31:40.6526172Z [ 29%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/filesystem.cc.o 2025-06-05T23:31:40.6527550Z [ 29%] Built target bad_variant_access 2025-06-05T23:31:40.6529006Z [ 30%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/hash/CMakeFiles/city.dir/internal/city.cc.o 2025-06-05T23:31:41.5597222Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_trainer.cc:207:16: warning: 'done' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] 2025-06-05T23:31:41.5599538Z virtual bool done() const { return iter_ == end_; } 2025-06-05T23:31:41.5600122Z ^ 2025-06-05T23:31:41.5601444Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_trainer.h:52:16: note: overridden virtual function is here 2025-06-05T23:31:41.5602899Z virtual bool done() const = 0; 2025-06-05T23:31:41.5603344Z ^ 2025-06-05T23:31:41.5603700Z 1 warning generated. 2025-06-05T23:31:41.5605425Z [ 30%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train-static.dir/pretokenizer_for_training.cc.o 2025-06-05T23:31:41.5608064Z [ 31%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/hash/CMakeFiles/low_level_hash.dir/internal/low_level_hash.cc.o 2025-06-05T23:31:41.5609612Z [ 31%] Linking CXX static library libabsl_crc_cpu_detect.a 2025-06-05T23:31:41.5612214Z [ 32%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/stringprintf.cc.o 2025-06-05T23:31:41.5614342Z [ 32%] Built target crc_cpu_detect 2025-06-05T23:31:41.5615858Z [ 32%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/types/CMakeFiles/bad_optional_access.dir/bad_optional_access.cc.o 2025-06-05T23:31:41.5618089Z [ 32%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/model_factory.cc.o 2025-06-05T23:31:41.5620347Z [ 32%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/model_interface.cc.o 2025-06-05T23:31:41.5621869Z [ 32%] Linking CXX static library libabsl_city.a 2025-06-05T23:31:41.5622479Z [ 32%] Built target city 2025-06-05T23:31:41.5624032Z [ 32%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/normalizer.cc.o 2025-06-05T23:31:41.5627382Z [ 32%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/structurally_valid.cc.o 2025-06-05T23:31:41.5630668Z [ 33%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/sentencepiece_processor.cc.o 2025-06-05T23:31:41.5632469Z [ 33%] Linking CXX static library libsentencepiece_train.a 2025-06-05T23:31:41.5633499Z [ 33%] Linking CXX static library libabsl_bad_optional_access.a 2025-06-05T23:31:41.5634220Z [ 33%] Built target bad_optional_access 2025-06-05T23:31:41.5635821Z [ 33%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_functions.dir/internal/cordz_functions.cc.o 2025-06-05T23:31:41.5637183Z [ 33%] Built target sentencepiece_train-static 2025-06-05T23:31:41.5638744Z [ 33%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_conditions.dir/internal/conditions.cc.o 2025-06-05T23:31:41.5642176Z [ 33%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/strutil.cc.o 2025-06-05T23:31:41.5644620Z [ 33%] Linking CXX static library libabsl_low_level_hash.a 2025-06-05T23:31:41.5645280Z [ 33%] Built target low_level_hash 2025-06-05T23:31:41.5646110Z [ 33%] Linking CXX static library libabsl_log_internal_conditions.a 2025-06-05T23:31:41.5647910Z [ 33%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/scoped_set_env.dir/internal/scoped_set_env.cc.o 2025-06-05T23:31:41.5649865Z [ 33%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/unigram_model.cc.o 2025-06-05T23:31:41.5652294Z [ 33%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_randen_hwaes.dir/internal/randen_detect.cc.o 2025-06-05T23:31:41.5653814Z [ 33%] Built target log_internal_conditions 2025-06-05T23:31:41.5655237Z [ 33%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/util.cc.o 2025-06-05T23:31:41.5657531Z [ 33%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/malloc_internal.dir/internal/low_level_alloc.cc.o 2025-06-05T23:31:41.5659321Z [ 33%] Linking CXX static library libabsl_cordz_functions.a 2025-06-05T23:31:41.5660064Z [ 33%] Built target cordz_functions 2025-06-05T23:31:41.5661647Z [ 33%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/word_model.cc.o 2025-06-05T23:31:41.5664162Z [ 34%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/tracing_internal.dir/internal/tracing.cc.o 2025-06-05T23:31:41.5667859Z [ 34%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece-static.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/absl/flags/flag.cc.o 2025-06-05T23:31:41.5670270Z [ 35%] Linking CXX static library libabsl_random_internal_randen_hwaes.a 2025-06-05T23:31:41.5672665Z [ 35%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/time.cc.o 2025-06-05T23:31:41.5674730Z [ 35%] Built target random_internal_randen_hwaes 2025-06-05T23:31:41.5676210Z [ 35%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/stacktrace.dir/stacktrace.cc.o 2025-06-05T23:31:41.5677988Z [ 35%] Linking CXX static library libabsl_scoped_set_env.a 2025-06-05T23:31:41.5678739Z [ 35%] Built target scoped_set_env 2025-06-05T23:31:41.5680432Z [ 35%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings_internal.dir/internal/ostringstream.cc.o 2025-06-05T23:31:41.5682235Z [ 35%] Linking CXX static library libabsl_malloc_internal.a 2025-06-05T23:31:41.5683385Z [ 36%] Linking CXX static library libabsl_tracing_internal.a 2025-06-05T23:31:41.5684144Z [ 36%] Built target malloc_internal 2025-06-05T23:31:41.5685818Z [ 37%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/demangle_internal.dir/internal/demangle.cc.o 2025-06-05T23:31:41.5687296Z [ 37%] Built target tracing_internal 2025-06-05T23:31:41.5688920Z [ 38%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/graphcycles_internal.dir/internal/graphcycles.cc.o 2025-06-05T23:31:41.5691233Z [ 38%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_internal.dir/internal/crc.cc.o 2025-06-05T23:31:41.5692795Z [ 39%] Linking CXX static library libabsl_stacktrace.a 2025-06-05T23:31:41.5694460Z [ 40%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_internal.dir/internal/crc_x86_arm_combined.cc.o 2025-06-05T23:31:41.5695730Z [ 40%] Built target stacktrace 2025-06-05T23:31:41.5698136Z [ 41%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/wire_format_lite.cc.o 2025-06-05T23:31:41.5702435Z [ 41%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream.cc.o 2025-06-05T23:31:41.5705631Z [ 41%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/poison.dir/internal/poison.cc.o 2025-06-05T23:31:41.5707938Z [ 42%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings_internal.dir/internal/utf8.cc.o 2025-06-05T23:31:41.5709636Z [ 42%] Linking CXX static library libabsl_demangle_internal.a 2025-06-05T23:31:41.5710401Z [ 42%] Built target demangle_internal 2025-06-05T23:31:41.5711229Z [ 42%] Linking CXX static library libsentencepiece.a 2025-06-05T23:31:41.5713037Z [ 42%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_randen.dir/internal/randen.cc.o 2025-06-05T23:31:41.5714991Z [ 42%] Linking CXX static library libabsl_graphcycles_internal.a 2025-06-05T23:31:41.5716851Z [ 42%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings_internal.dir/internal/escaping.cc.o 2025-06-05T23:31:41.5718519Z [ 42%] Linking CXX static library libabsl_poison.a 2025-06-05T23:31:41.5719243Z [ 42%] Built target graphcycles_internal 2025-06-05T23:31:41.5721969Z [ 42%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream_impl.cc.o 2025-06-05T23:31:41.5724319Z [ 42%] Built target poison 2025-06-05T23:31:41.5726974Z [ 42%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/protobuf-lite/zero_copy_stream_impl_lite.cc.o 2025-06-05T23:31:41.5730543Z [ 43%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/builtin_pb/sentencepiece.pb.cc.o 2025-06-05T23:31:43.2027353Z [ 43%] Built target sentencepiece-static 2025-06-05T23:31:43.2029625Z [ 43%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/builtin_pb/sentencepiece_model.pb.cc.o 2025-06-05T23:31:43.2031231Z [ 43%] Linking CXX static library libabsl_crc_internal.a 2025-06-05T23:31:43.2031676Z [ 43%] Built target crc_internal 2025-06-05T23:31:43.2032548Z [ 43%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/bpe_model.cc.o 2025-06-05T23:31:43.2033548Z [ 43%] Linking CXX static library libabsl_random_internal_randen.a 2025-06-05T23:31:43.2034464Z [ 43%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/char_model.cc.o 2025-06-05T23:31:43.2035590Z [ 44%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/error.cc.o 2025-06-05T23:31:43.2036261Z [ 44%] Built target random_internal_randen 2025-06-05T23:31:43.2037063Z [ 44%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/filesystem.cc.o 2025-06-05T23:31:43.2037905Z [ 44%] Linking CXX static library libabsl_strings_internal.a 2025-06-05T23:31:43.2038677Z [ 44%] Built target strings_internal 2025-06-05T23:31:43.2040098Z [ 44%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/model_factory.cc.o 2025-06-05T23:31:43.2042205Z [ 44%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/ascii.cc.o 2025-06-05T23:31:43.2044388Z [ 44%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/model_interface.cc.o 2025-06-05T23:31:43.2046561Z [ 45%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/normalizer.cc.o 2025-06-05T23:31:43.2048843Z [ 45%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/sentencepiece_processor.cc.o 2025-06-05T23:31:43.2051071Z [ 45%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/unigram_model.cc.o 2025-06-05T23:31:43.2053082Z [ 45%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/util.cc.o 2025-06-05T23:31:43.2055099Z [ 45%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/charconv.cc.o 2025-06-05T23:31:43.2057172Z [ 46%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/word_model.cc.o 2025-06-05T23:31:43.2060317Z [ 46%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece.dir/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/third_party/absl/flags/flag.cc.o 2025-06-05T23:31:43.2063094Z [ 46%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/escaping.cc.o 2025-06-05T23:31:43.2065362Z [ 47%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/charconv_bigint.cc.o 2025-06-05T23:31:43.2067154Z [ 47%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/charconv_parse.cc.o 2025-06-05T23:31:43.2068500Z [ 47%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/damerau_levenshtein_distance.cc.o 2025-06-05T23:31:43.2069802Z [ 47%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/memutil.cc.o 2025-06-05T23:31:43.2071036Z [ 48%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/stringify_sink.cc.o 2025-06-05T23:31:43.2072307Z [ 48%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/match.cc.o 2025-06-05T23:31:43.2073401Z [ 48%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/numbers.cc.o 2025-06-05T23:31:43.2074497Z [ 48%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/str_cat.cc.o 2025-06-05T23:31:43.2075596Z [ 49%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/str_replace.cc.o 2025-06-05T23:31:43.2076841Z [ 49%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/str_split.cc.o 2025-06-05T23:31:43.2077638Z [ 49%] Linking CXX shared library libsentencepiece.so 2025-06-05T23:31:43.2078496Z [ 49%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/substitute.cc.o 2025-06-05T23:31:43.2079164Z [ 49%] Built target sentencepiece 2025-06-05T23:31:43.2080132Z [ 49%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/builder.cc.o 2025-06-05T23:31:43.2081440Z [ 49%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/unicode_script.cc.o 2025-06-05T23:31:43.2082641Z [ 49%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_encode.dir/spm_encode_main.cc.o 2025-06-05T23:31:43.2083863Z [ 49%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/trainer_interface.cc.o 2025-06-05T23:31:43.2085084Z [ 49%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_decode.dir/spm_decode_main.cc.o 2025-06-05T23:31:43.2086499Z [ 50%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/trainer_factory.cc.o 2025-06-05T23:31:43.2087776Z [ 50%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_export_vocab.dir/spm_export_vocab_main.cc.o 2025-06-05T23:31:43.2089079Z [ 50%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/unigram_model_trainer.cc.o 2025-06-05T23:31:43.2089957Z [ 50%] Linking CXX static library libabsl_strings.a 2025-06-05T23:31:43.2090330Z [ 50%] Built target strings 2025-06-05T23:31:43.2091077Z [ 50%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/symbolize.dir/symbolize.cc.o 2025-06-05T23:31:43.2091940Z [ 50%] Linking CXX executable spm_export_vocab 2025-06-05T23:31:43.2092836Z [ 50%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/word_model_trainer.cc.o 2025-06-05T23:31:43.2093671Z [ 51%] Linking CXX executable spm_encode 2025-06-05T23:31:43.2094112Z [ 51%] Linking CXX executable spm_decode 2025-06-05T23:31:43.2094995Z [ 52%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/char_model_trainer.cc.o 2025-06-05T23:31:43.2096283Z [ 52%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/bpe_model_trainer.cc.o 2025-06-05T23:31:43.2097580Z [ 52%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/sentencepiece_trainer.cc.o 2025-06-05T23:31:43.2098350Z [ 52%] Built target spm_export_vocab 2025-06-05T23:31:43.2099083Z [ 53%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/civil_time.cc.o 2025-06-05T23:31:43.2099712Z [ 53%] Built target spm_decode 2025-06-05T23:31:43.2099990Z [ 53%] Built target spm_encode 2025-06-05T23:31:43.2100878Z [ 53%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/arg.cc.o 2025-06-05T23:31:43.2102101Z [ 53%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/hash/CMakeFiles/hash.dir/internal/hash.cc.o 2025-06-05T23:31:43.2102891Z [ 54%] Linking CXX static library libabsl_symbolize.a 2025-06-05T23:31:43.2103257Z [ 54%] Built target symbolize 2025-06-05T23:31:43.2104071Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/builder.cc:47:15: warning: unused variable 'kMaxUnicode' [-Wunused-const-variable] 2025-06-05T23:31:43.2104951Z constexpr int kMaxUnicode = 0x10FFFF; 2025-06-05T23:31:43.2105239Z ^ 2025-06-05T23:31:43.2106147Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/builder.cc:49:36: warning: unused variable 'kDefaultNormalizerName' [-Wunused-const-variable] 2025-06-05T23:31:43.2108708Z static constexpr absl::string_view kDefaultNormalizerName = "nfkc"; 2025-06-05T23:31:43.2109291Z ^ 2025-06-05T23:31:43.2109666Z 2 warnings generated. 2025-06-05T23:31:43.2110923Z [ 54%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_proto.dir/internal/proto.cc.o 2025-06-05T23:31:43.2113209Z [ 54%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_commandlineflag.dir/commandlineflag.cc.o 2025-06-05T23:31:43.2115396Z [ 54%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/sentencepiece_train.dir/pretokenizer_for_training.cc.o 2025-06-05T23:31:43.2116624Z [ 54%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/clock.cc.o 2025-06-05T23:31:43.2117650Z [ 54%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/duration.cc.o 2025-06-05T23:31:43.2118874Z [ 54%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/bind.cc.o 2025-06-05T23:31:44.2520742Z [ 55%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/extension.cc.o 2025-06-05T23:31:44.2523399Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_trainer.cc:207:16: warning: 'done' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] 2025-06-05T23:31:44.2525340Z virtual bool done() const { return iter_ == end_; } 2025-06-05T23:31:44.2525917Z ^ 2025-06-05T23:31:44.2527189Z /pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_trainer.h:52:16: note: overridden virtual function is here 2025-06-05T23:31:44.2528951Z virtual bool done() const = 0; 2025-06-05T23:31:44.2529477Z ^ 2025-06-05T23:31:44.2529845Z 1 warning generated. 2025-06-05T23:31:44.2531414Z [ 55%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_fnmatch.dir/internal/fnmatch.cc.o 2025-06-05T23:31:44.2533115Z [ 55%] Linking CXX static library libabsl_log_internal_proto.a 2025-06-05T23:31:44.2534171Z [ 56%] Linking CXX static library libabsl_flags_commandlineflag.a 2025-06-05T23:31:44.2534848Z [ 56%] Built target log_internal_proto 2025-06-05T23:31:44.2535370Z [ 56%] Built target flags_commandlineflag 2025-06-05T23:31:44.2536950Z [ 57%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_seed_material.dir/internal/seed_material.cc.o 2025-06-05T23:31:44.2539457Z [ 57%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_distributions.dir/discrete_distribution.cc.o 2025-06-05T23:31:44.2541041Z [ 57%] Linking CXX static library libabsl_hash.a 2025-06-05T23:31:44.2541978Z [ 58%] Linking CXX shared library libsentencepiece_train.so 2025-06-05T23:31:44.2542702Z [ 58%] Built target hash 2025-06-05T23:31:44.2544433Z [ 58%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/examine_stack.dir/internal/examine_stack.cc.o 2025-06-05T23:31:44.2546684Z [ 58%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/format.cc.o 2025-06-05T23:31:44.2549048Z [ 58%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/float_conversion.cc.o 2025-06-05T23:31:44.2551158Z [ 59%] Linking CXX static library libabsl_log_internal_fnmatch.a 2025-06-05T23:31:44.2551917Z [ 59%] Built target log_internal_fnmatch 2025-06-05T23:31:44.2553234Z [ 60%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/time.cc.o 2025-06-05T23:31:44.2555670Z [ 60%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_private_handle_accessor.dir/internal/private_handle_accessor.cc.o 2025-06-05T23:31:44.2558497Z [ 60%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/output.cc.o 2025-06-05T23:31:44.2561270Z [ 60%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_distributions.dir/gaussian_distribution.cc.o 2025-06-05T23:31:44.2562737Z [ 60%] Built target sentencepiece_train 2025-06-05T23:31:44.2564453Z [ 60%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/parser.cc.o 2025-06-05T23:31:44.2566853Z [ 60%] Linking CXX static library libabsl_random_internal_seed_material.a 2025-06-05T23:31:44.2567709Z [ 60%] Built target random_internal_seed_material 2025-06-05T23:31:44.2568561Z [ 60%] Linking CXX static library libabsl_examine_stack.a 2025-06-05T23:31:44.2570078Z [ 60%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_normalize.dir/spm_normalize_main.cc.o 2025-06-05T23:31:44.2571354Z [ 60%] Built target examine_stack 2025-06-05T23:31:44.2573009Z [ 60%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/failure_signal_handler.dir/failure_signal_handler.cc.o 2025-06-05T23:31:44.2575442Z [ 60%] Building CXX object runner/tokenizers/third-party/sentencepiece/src/CMakeFiles/spm_train.dir/spm_train_main.cc.o 2025-06-05T23:31:44.2577112Z [ 61%] Linking CXX static library libabsl_flags_private_handle_accessor.a 2025-06-05T23:31:44.2577997Z [ 61%] Built target flags_private_handle_accessor 2025-06-05T23:31:44.2579919Z [ 62%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_pool_urbg.dir/internal/pool_urbg.cc.o 2025-06-05T23:31:44.2581610Z [ 62%] Linking CXX static library libabsl_time.a 2025-06-05T23:31:44.2582642Z [ 62%] Linking CXX static library libabsl_random_distributions.a 2025-06-05T23:31:44.2583434Z [ 62%] Built target random_distributions 2025-06-05T23:31:44.2583931Z [ 62%] Built target time 2025-06-05T23:31:44.2584711Z [ 62%] Linking CXX static library libabsl_failure_signal_handler.a 2025-06-05T23:31:44.2586735Z [ 62%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/kernel_timeout_internal.dir/internal/kernel_timeout.cc.o 2025-06-05T23:31:44.2589216Z [ 62%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_globals.dir/internal/globals.cc.o 2025-06-05T23:31:44.2591411Z [ 62%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_entry.dir/log_entry.cc.o 2025-06-05T23:31:44.2592683Z [ 62%] Built target failure_signal_handler 2025-06-05T23:31:44.2593611Z [ 63%] Linking CXX static library libabsl_str_format_internal.a 2025-06-05T23:31:44.2594578Z [ 63%] Built target str_format_internal 2025-06-05T23:31:44.2596129Z [ 63%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_marshalling.dir/marshalling.cc.o 2025-06-05T23:31:44.2598761Z [ 63%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_distribution_test_util.dir/internal/chi_square.cc.o 2025-06-05T23:31:44.2601104Z [ 63%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/crc32c.cc.o 2025-06-05T23:31:44.2602469Z [ 64%] Linking CXX executable spm_normalize 2025-06-05T23:31:44.2603396Z [ 64%] Linking CXX static library libabsl_random_internal_pool_urbg.a 2025-06-05T23:31:44.2604141Z [ 64%] Built target random_internal_pool_urbg 2025-06-05T23:31:44.2605684Z [ 64%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_seed_sequences.dir/seed_sequences.cc.o 2025-06-05T23:31:44.2607154Z [ 64%] Linking CXX executable spm_train 2025-06-05T23:31:44.2607945Z [ 65%] Linking CXX static library libabsl_log_entry.a 2025-06-05T23:31:44.2608942Z [ 65%] Linking CXX static library libabsl_kernel_timeout_internal.a 2025-06-05T23:31:44.2609758Z [ 65%] Built target kernel_timeout_internal 2025-06-05T23:31:44.2610290Z [ 65%] Built target log_entry 2025-06-05T23:31:44.2612055Z [ 66%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/random/CMakeFiles/random_internal_distribution_test_util.dir/internal/distribution_test_util.cc.o 2025-06-05T23:31:44.2614740Z [ 66%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/barrier.cc.o 2025-06-05T23:31:44.2616096Z [ 66%] Built target spm_normalize 2025-06-05T23:31:44.2616966Z [ 67%] Linking CXX static library libabsl_log_internal_globals.a 2025-06-05T23:31:44.2618534Z [ 67%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_sink.dir/log_sink.cc.o 2025-06-05T23:31:44.2619687Z [ 67%] Built target log_internal_globals 2025-06-05T23:31:44.2621428Z [ 67%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/blocking_counter.cc.o 2025-06-05T23:31:44.2624112Z [ 67%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/create_thread_identity.cc.o 2025-06-05T23:31:44.2625870Z [ 67%] Built target spm_train 2025-06-05T23:31:44.2627391Z [ 67%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_format.dir/internal/log_format.cc.o 2025-06-05T23:31:44.2629150Z [ 68%] Linking CXX static library libabsl_flags_marshalling.a 2025-06-05T23:31:44.2630868Z [ 68%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/internal/crc_memcpy_fallback.cc.o 2025-06-05T23:31:44.2632179Z [ 68%] Built target flags_marshalling 2025-06-05T23:31:44.2633755Z [ 69%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/internal/crc_memcpy_x86_arm_combined.cc.o 2025-06-05T23:31:44.2635517Z [ 69%] Linking CXX static library libabsl_random_seed_sequences.a 2025-06-05T23:31:44.2636316Z [ 69%] Built target random_seed_sequences 2025-06-05T23:31:44.2637862Z [ 69%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/internal/crc_non_temporal_memcpy.cc.o 2025-06-05T23:31:44.2639713Z [ 69%] Linking CXX static library libabsl_random_internal_distribution_test_util.a 2025-06-05T23:31:44.2640827Z [ 69%] Linking CXX static library libabsl_log_sink.a 2025-06-05T23:31:44.2641523Z [ 69%] Built target random_internal_distribution_test_util 2025-06-05T23:31:44.2643428Z [ 70%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/futex_waiter.cc.o 2025-06-05T23:31:44.2646037Z [ 70%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/per_thread_sem.cc.o 2025-06-05T23:31:44.2647525Z [ 70%] Built target log_sink 2025-06-05T23:31:46.1043701Z [ 70%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/pthread_waiter.cc.o 2025-06-05T23:31:46.1046714Z [ 70%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/sem_waiter.cc.o 2025-06-05T23:31:46.1049419Z [ 71%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/stdcpp_waiter.cc.o 2025-06-05T23:31:46.1051270Z [ 71%] Linking CXX static library libabsl_log_internal_format.a 2025-06-05T23:31:46.1053132Z [ 71%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/waiter_base.cc.o 2025-06-05T23:31:46.1054599Z [ 71%] Built target log_internal_format 2025-06-05T23:31:46.1056439Z [ 71%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/win32_waiter.cc.o 2025-06-05T23:31:46.1058896Z [ 71%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/notification.cc.o 2025-06-05T23:31:46.1061256Z [ 72%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/mutex.cc.o 2025-06-05T23:31:46.1062859Z [ 72%] Linking CXX static library libabsl_crc32c.a 2025-06-05T23:31:46.1063526Z [ 72%] Built target crc32c 2025-06-05T23:31:46.1064927Z [ 72%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_cord_state.dir/internal/crc_cord_state.cc.o 2025-06-05T23:31:46.1067217Z [ 72%] Linking CXX static library libabsl_synchronization.a 2025-06-05T23:31:46.1067968Z [ 72%] Built target synchronization 2025-06-05T23:31:46.1069649Z [ 73%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/container/CMakeFiles/hashtablez_sampler.dir/internal/hashtablez_sampler.cc.o 2025-06-05T23:31:46.1072505Z [ 73%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/container/CMakeFiles/hashtablez_sampler.dir/internal/hashtablez_sampler_force_weak_definition.cc.o 2025-06-05T23:31:46.1075251Z [ 74%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_handle.dir/internal/cordz_handle.cc.o 2025-06-05T23:31:46.1077841Z [ 74%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_program_name.dir/internal/program_name.cc.o 2025-06-05T23:31:46.1080343Z [ 74%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/vlog_config_internal.dir/internal/vlog_config.cc.o 2025-06-05T23:31:46.1081943Z [ 75%] Linking CXX static library libabsl_crc_cord_state.a 2025-06-05T23:31:46.1082641Z [ 75%] Built target crc_cord_state 2025-06-05T23:31:46.1084186Z [ 76%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_internal.cc.o 2025-06-05T23:31:46.1086550Z [ 76%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree.cc.o 2025-06-05T23:31:46.1089131Z [ 76%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree_navigator.cc.o 2025-06-05T23:31:46.1091725Z [ 76%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree_reader.cc.o 2025-06-05T23:31:46.1094305Z [ 77%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_crc.cc.o 2025-06-05T23:31:46.1096026Z [ 77%] Linking CXX static library libabsl_flags_program_name.a 2025-06-05T23:31:46.1097146Z [ 78%] Linking CXX static library libabsl_vlog_config_internal.a 2025-06-05T23:31:46.1097864Z [ 78%] Built target flags_program_name 2025-06-05T23:31:46.1098376Z [ 78%] Built target vlog_config_internal 2025-06-05T23:31:46.1100019Z [ 78%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_config.dir/usage_config.cc.o 2025-06-05T23:31:46.1102421Z [ 78%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_consume.cc.o 2025-06-05T23:31:46.1104142Z [ 78%] Linking CXX static library libabsl_hashtablez_sampler.a 2025-06-05T23:31:46.1105119Z [ 78%] Linking CXX static library libabsl_cordz_handle.a 2025-06-05T23:31:46.1105926Z [ 78%] Built target hashtablez_sampler 2025-06-05T23:31:46.1106445Z [ 78%] Built target cordz_handle 2025-06-05T23:31:46.1107947Z [ 78%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_globals.dir/globals.cc.o 2025-06-05T23:31:46.1109549Z [ 78%] Linking CXX static library libabsl_cord_internal.a 2025-06-05T23:31:46.1110249Z [ 78%] Built target cord_internal 2025-06-05T23:31:46.1111051Z [ 79%] Linking CXX static library libabsl_flags_config.a 2025-06-05T23:31:46.1123773Z [ 79%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_info.dir/internal/cordz_info.cc.o 2025-06-05T23:31:46.1125070Z [ 79%] Built target flags_config 2025-06-05T23:31:46.1126486Z [ 79%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_internal.dir/internal/flag.cc.o 2025-06-05T23:31:46.1127974Z [ 80%] Linking CXX static library libabsl_log_globals.a 2025-06-05T23:31:46.1128648Z [ 80%] Built target log_globals 2025-06-05T23:31:46.1130157Z [ 80%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_log_sink_set.dir/internal/log_sink_set.cc.o 2025-06-05T23:31:46.1131491Z [ 80%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_initialize.dir/initialize.cc.o 2025-06-05T23:31:46.1132307Z [ 80%] Linking CXX static library libabsl_cordz_info.a 2025-06-05T23:31:46.1132850Z [ 80%] Linking CXX static library libabsl_flags_internal.a 2025-06-05T23:31:46.1133340Z [ 80%] Built target cordz_info 2025-06-05T23:31:46.1134027Z [ 81%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord.dir/cord.cc.o 2025-06-05T23:31:46.1135115Z [ 81%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord.dir/cord_analysis.cc.o 2025-06-05T23:31:46.1136375Z [ 82%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_sample_token.dir/internal/cordz_sample_token.cc.o 2025-06-05T23:31:46.1137622Z [ 82%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord.dir/cord_buffer.cc.o 2025-06-05T23:31:46.1138283Z [ 82%] Built target flags_internal 2025-06-05T23:31:46.1138718Z [ 82%] Linking CXX static library libabsl_log_initialize.a 2025-06-05T23:31:46.1139127Z [ 82%] Built target log_initialize 2025-06-05T23:31:46.1139603Z [ 82%] Linking CXX static library libabsl_log_internal_log_sink_set.a 2025-06-05T23:31:46.1140070Z [ 82%] Built target log_internal_log_sink_set 2025-06-05T23:31:46.1140945Z [ 82%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_message.dir/internal/log_message.cc.o 2025-06-05T23:31:46.1141870Z [ 82%] Linking CXX static library libabsl_cordz_sample_token.a 2025-06-05T23:31:46.1142324Z [ 82%] Built target cordz_sample_token 2025-06-05T23:31:46.1142753Z [ 82%] Linking CXX static library libabsl_cord.a 2025-06-05T23:31:46.1143112Z [ 82%] Built target cord 2025-06-05T23:31:46.1143923Z [ 82%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/container/CMakeFiles/raw_hash_set.dir/internal/raw_hash_set.cc.o 2025-06-05T23:31:46.1145198Z [ 82%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/status/CMakeFiles/status.dir/internal/status_internal.cc.o 2025-06-05T23:31:46.1146480Z [ 82%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/status/CMakeFiles/status.dir/status.cc.o 2025-06-05T23:31:46.1147638Z [ 82%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/status/CMakeFiles/status.dir/status_payload_printer.cc.o 2025-06-05T23:31:46.1148531Z [ 82%] Linking CXX static library libabsl_log_internal_message.a 2025-06-05T23:31:46.1148958Z [ 82%] Built target log_internal_message 2025-06-05T23:31:46.1149814Z [ 82%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_check_op.dir/internal/check_op.cc.o 2025-06-05T23:31:46.1151317Z [ 82%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/die_if_null.dir/die_if_null.cc.o 2025-06-05T23:31:46.1152398Z [ 83%] Linking CXX static library libabsl_raw_hash_set.a 2025-06-05T23:31:46.1152796Z [ 83%] Built target raw_hash_set 2025-06-05T23:31:46.1153576Z [ 83%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_reflection.dir/reflection.cc.o 2025-06-05T23:31:46.1154406Z [ 84%] Linking CXX static library libabsl_status.a 2025-06-05T23:31:46.1154766Z [ 84%] Built target status 2025-06-05T23:31:46.1155493Z [ 84%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/status/CMakeFiles/statusor.dir/statusor.cc.o 2025-06-05T23:31:46.1156328Z [ 85%] Linking CXX static library libabsl_log_internal_check_op.a 2025-06-05T23:31:46.1156764Z [ 85%] Built target log_internal_check_op 2025-06-05T23:31:46.1157212Z [ 86%] Linking CXX static library libabsl_die_if_null.a 2025-06-05T23:31:46.1157584Z [ 86%] Built target die_if_null 2025-06-05T23:31:46.1157988Z [ 86%] Linking CXX static library libabsl_statusor.a 2025-06-05T23:31:46.1158346Z [ 86%] Built target statusor 2025-06-05T23:31:46.1158780Z [ 87%] Linking CXX static library libabsl_flags_reflection.a 2025-06-05T23:31:46.1159177Z [ 87%] Built target flags_reflection 2025-06-05T23:32:02.0435979Z [ 87%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_usage_internal.dir/internal/usage.cc.o 2025-06-05T23:32:02.0437476Z [ 87%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_flags.dir/flags.cc.o 2025-06-05T23:32:02.0438483Z [ 88%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/bitstate.cc.o 2025-06-05T23:32:02.0439391Z [ 88%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/bitmap256.cc.o 2025-06-05T23:32:02.0440277Z [ 88%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/compile.cc.o 2025-06-05T23:32:02.0441189Z [ 88%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/filtered_re2.cc.o 2025-06-05T23:32:02.0442121Z [ 89%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/mimics_pcre.cc.o 2025-06-05T23:32:02.0442985Z [ 89%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/nfa.cc.o 2025-06-05T23:32:02.0443832Z [ 89%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/dfa.cc.o 2025-06-05T23:32:02.0444484Z [ 89%] Linking CXX static library libabsl_log_flags.a 2025-06-05T23:32:02.0445379Z [ 89%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/onepass.cc.o 2025-06-05T23:32:02.0445936Z [ 89%] Built target log_flags 2025-06-05T23:32:02.0446544Z [ 89%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/parse.cc.o 2025-06-05T23:32:02.0447452Z [ 89%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/perl_groups.cc.o 2025-06-05T23:32:02.0448196Z [ 89%] Linking CXX static library libabsl_flags_usage_internal.a 2025-06-05T23:32:02.0448694Z [ 89%] Built target flags_usage_internal 2025-06-05T23:32:02.0449336Z [ 90%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/prefilter.cc.o 2025-06-05T23:32:02.0450266Z [ 90%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/prefilter_tree.cc.o 2025-06-05T23:32:02.0451161Z [ 90%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/prog.cc.o 2025-06-05T23:32:02.0452130Z [ 90%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_usage.dir/usage.cc.o 2025-06-05T23:32:02.0453091Z [ 90%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/re2.cc.o 2025-06-05T23:32:02.0453985Z [ 91%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/regexp.cc.o 2025-06-05T23:32:02.0454841Z [ 91%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/set.cc.o 2025-06-05T23:32:02.0455707Z [ 91%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/simplify.cc.o 2025-06-05T23:32:02.0456584Z [ 91%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/tostring.cc.o 2025-06-05T23:32:02.0457519Z [ 92%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/unicode_casefold.cc.o 2025-06-05T23:32:02.0458467Z [ 92%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/unicode_groups.cc.o 2025-06-05T23:32:02.0459195Z [ 92%] Linking CXX static library libabsl_flags_usage.a 2025-06-05T23:32:02.0459589Z [ 92%] Built target flags_usage 2025-06-05T23:32:02.0460183Z [ 92%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/util/rune.cc.o 2025-06-05T23:32:02.0461060Z [ 92%] Building CXX object runner/tokenizers/third-party/re2/CMakeFiles/re2.dir/util/strutil.cc.o 2025-06-05T23:32:02.0462048Z [ 92%] Building CXX object runner/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_parse.dir/parse.cc.o 2025-06-05T23:32:02.0462851Z [ 93%] Linking CXX static library libre2.a 2025-06-05T23:32:02.0463174Z [ 93%] Built target re2 2025-06-05T23:32:02.0463796Z [ 93%] Building CXX object runner/tokenizers/CMakeFiles/tokenizers.dir/src/bpe_tokenizer_base.cpp.o 2025-06-05T23:32:02.0464699Z [ 94%] Building CXX object runner/tokenizers/CMakeFiles/tokenizers.dir/src/hf_tokenizer.cpp.o 2025-06-05T23:32:02.0465925Z [ 94%] Building CXX object runner/tokenizers/CMakeFiles/tokenizers.dir/src/llama2c_tokenizer.cpp.o 2025-06-05T23:32:02.0466845Z [ 94%] Building CXX object runner/tokenizers/CMakeFiles/tokenizers.dir/src/pre_tokenizer.cpp.o 2025-06-05T23:32:02.0467753Z [ 94%] Building CXX object runner/tokenizers/CMakeFiles/tokenizers.dir/src/re2_regex.cpp.o 2025-06-05T23:32:02.0468577Z [ 95%] Building CXX object runner/tokenizers/CMakeFiles/tokenizers.dir/src/regex.cpp.o 2025-06-05T23:32:02.0469436Z [ 95%] Building CXX object runner/tokenizers/CMakeFiles/tokenizers.dir/src/sentencepiece.cpp.o 2025-06-05T23:32:02.0470286Z [ 95%] Building CXX object runner/tokenizers/CMakeFiles/tokenizers.dir/src/tiktoken.cpp.o 2025-06-05T23:32:02.0470959Z [ 95%] Linking CXX static library libabsl_flags_parse.a 2025-06-05T23:32:02.0471332Z [ 95%] Built target flags_parse 2025-06-05T23:32:02.0472009Z [ 95%] Building CXX object runner/tokenizers/CMakeFiles/tokenizers.dir/src/token_decoder.cpp.o 2025-06-05T23:32:02.0473067Z [ 96%] Building CXX object runner/tokenizers/CMakeFiles/tokenizers.dir/third-party/llama.cpp-unicode/src/unicode-data.cpp.o 2025-06-05T23:32:02.0474218Z [ 96%] Building CXX object runner/tokenizers/CMakeFiles/tokenizers.dir/third-party/llama.cpp-unicode/src/unicode.cpp.o 2025-06-05T23:32:02.0475012Z [ 96%] Linking CXX static library libtokenizers.a 2025-06-05T23:32:02.0475423Z [ 96%] Built target tokenizers 2025-06-05T23:32:02.0475923Z [ 96%] Building CXX object runner/CMakeFiles/llama_runner.dir/runner.cpp.o 2025-06-05T23:32:02.0476699Z [ 97%] Building CXX object runner/CMakeFiles/llama_runner.dir/__/tokenizer/llama_tiktoken.cpp.o 2025-06-05T23:32:02.0477710Z [ 97%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:32:02.0478892Z [ 97%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/runner/text_decoder_runner.cpp.o 2025-06-05T23:32:02.0480063Z [ 97%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/runner/text_prefiller.cpp.o 2025-06-05T23:32:02.0481233Z [ 98%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/sampler/sampler.cpp.o 2025-06-05T23:32:02.0482429Z [ 98%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/bpe_tokenizer_base.cpp.o 2025-06-05T23:32:02.0483673Z [ 98%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/hf_tokenizer.cpp.o 2025-06-05T23:32:02.0484926Z [ 98%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/llama2c_tokenizer.cpp.o 2025-06-05T23:32:02.0486174Z [ 98%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/pre_tokenizer.cpp.o 2025-06-05T23:32:02.0487383Z [ 99%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/re2_regex.cpp.o 2025-06-05T23:32:02.0488551Z [ 99%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/regex.cpp.o 2025-06-05T23:32:02.0489702Z [ 99%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/tiktoken.cpp.o 2025-06-05T23:32:02.0490913Z [ 99%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/src/token_decoder.cpp.o 2025-06-05T23:32:02.0492387Z [100%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode-data.cpp.o 2025-06-05T23:32:02.0493922Z [100%] Building CXX object runner/CMakeFiles/llama_runner.dir/pytorch/executorch/extension/llm/tokenizers/third-party/llama.cpp-unicode/src/unicode.cpp.o 2025-06-05T23:32:02.0494902Z [100%] Linking CXX shared library libllama_runner.so 2025-06-05T23:32:02.0495272Z [100%] Built target llama_runner 2025-06-05T23:32:02.0495737Z [100%] Building CXX object CMakeFiles/llama_main.dir/main.cpp.o 2025-06-05T23:32:02.0496238Z [100%] Linking CXX executable llama_main 2025-06-05T23:32:02.0496580Z [100%] Built target llama_main 2025-06-05T23:32:02.0496844Z ++ date +%H:%M:%S 2025-06-05T23:32:02.0497049Z + NOW=23:31:49 2025-06-05T23:32:02.0497308Z + echo 'Starting to run llama runner at 23:31:49' 2025-06-05T23:32:02.0497649Z Starting to run llama runner at 23:31:49 2025-06-05T23:32:02.0498512Z + cmake-out/examples/models/llama/llama_main --model_path=tinyllama_portable_fp16_h.pte --tokenizer_path=tokenizer.bin --prompt=Once --temperature=0 --seq_len=10 --warmup=1 2025-06-05T23:32:02.0499914Z Error parsing json file: [json.exception.parse_error.101] parse error at line 1, column 1: attempting to parse an empty input; check that your input string or stream contains the expected JSON 2025-06-05T23:32:02.0500763Z invalid char++ date +%H:%M:%S 2025-06-05T23:32:02.0501026Z + NOW=23:32:02 2025-06-05T23:32:02.0501239Z + echo 'Finished at 23:32:02' 2025-06-05T23:32:02.0501507Z Finished at 23:32:02 2025-06-05T23:32:02.0501724Z ++ cat result.txt 2025-06-05T23:32:02.0501992Z + RESULT='Once upon a time, there was a little girl 2025-06-05T23:32:02.0503401Z PyTorchObserver {"prompt_tokens":1,"generated_tokens":8,"model_load_start_ms":1749166309233,"model_load_end_ms":1749166309243,"inference_start_ms":1749166315988,"inference_end_ms":1749166322027,"prompt_eval_end_ms":1749166316657,"first_token_ms":1749166316657,"aggregate_sampling_time_ms":2,"SCALING_FACTOR_UNITS_PER_SECOND":1000}' 2025-06-05T23:32:02.0504781Z + EXPECTED_PREFIX='Once upon a time,' 2025-06-05T23:32:02.0505110Z + [[ Once upon a time, there was a little girl 2025-06-05T23:33:15.9802887Z PyTorchObserver {"prompt_tokens":1,"generated_tokens":8,"model_load_start_ms":1749166309233,"model_load_end_ms":1749166309243,"inference_start_ms":1749166315988,"inference_end_ms":1749166322027,"prompt_eval_end_ms":1749166316657,"first_token_ms":1749166316657,"aggregate_sampling_time_ms":2,"SCALING_FACTOR_UNITS_PER_SECOND":1000} == \O\n\c\e\ \u\p\o\n\ \a\ \t\i\m\e\,* ]] 2025-06-05T23:33:15.9805939Z + echo 'Expected result prefix: Once upon a time,' 2025-06-05T23:33:15.9806633Z Expected result prefix: Once upon a time, 2025-06-05T23:33:15.9807361Z + echo 'Actual result: Once upon a time, there was a little girl 2025-06-05T23:33:15.9810146Z PyTorchObserver {"prompt_tokens":1,"generated_tokens":8,"model_load_start_ms":1749166309233,"model_load_end_ms":1749166309243,"inference_start_ms":1749166315988,"inference_end_ms":1749166322027,"prompt_eval_end_ms":1749166316657,"first_token_ms":1749166316657,"aggregate_sampling_time_ms":2,"SCALING_FACTOR_UNITS_PER_SECOND":1000}' 2025-06-05T23:33:15.9812905Z Actual result: Once upon a time, there was a little girl 2025-06-05T23:33:15.9815621Z PyTorchObserver {"prompt_tokens":1,"generated_tokens":8,"model_load_start_ms":1749166309233,"model_load_end_ms":1749166309243,"inference_start_ms":1749166315988,"inference_end_ms":1749166322027,"prompt_eval_end_ms":1749166316657,"first_token_ms":1749166316657,"aggregate_sampling_time_ms":2,"SCALING_FACTOR_UNITS_PER_SECOND":1000} 2025-06-05T23:33:15.9818217Z + echo Success 2025-06-05T23:33:15.9818589Z Success 2025-06-05T23:33:15.9818975Z + prepare_artifacts_upload 2025-06-05T23:33:15.9819590Z + '[' -n artifacts-to-be-uploaded/fp32-xnnpack-custom ']' 2025-06-05T23:33:15.9820344Z + echo 'Preparing for uploading generated artifacs' 2025-06-05T23:33:15.9821185Z Preparing for uploading generated artifacs 2025-06-05T23:33:15.9821904Z + zip -j model.zip tinyllama_portable_fp16_h.pte tokenizer.bin 2025-06-05T23:33:15.9822710Z adding: tinyllama_portable_fp16_h.pte (deflated 17%) 2025-06-05T23:33:15.9823386Z adding: tokenizer.bin (deflated 50%) 2025-06-05T23:33:15.9824058Z + mkdir -p artifacts-to-be-uploaded/fp32-xnnpack-custom 2025-06-05T23:33:15.9824876Z + mv model.zip artifacts-to-be-uploaded/fp32-xnnpack-custom 2025-06-05T23:33:15.9825635Z + cleanup_files 2025-06-05T23:33:15.9826122Z + echo 'Deleting downloaded and generated files' 2025-06-05T23:33:15.9826754Z Deleting downloaded and generated files 2025-06-05T23:33:15.9827311Z + rm stories110M.pt 2025-06-05T23:33:15.9827715Z + rm tokenizer.model 2025-06-05T23:33:15.9828142Z + rm tokenizer.bin 2025-06-05T23:33:15.9828564Z + rm tinyllama_portable_fp16_h.pte 2025-06-05T23:33:15.9829077Z + rm result.txt 2025-06-05T23:33:15.9829468Z + rm params.json 2025-06-05T23:33:15.9829994Z + mkdir -p examples/demo-apps/android/LlamaDemo/app/libs 2025-06-05T23:33:15.9830926Z + cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs 2025-06-05T23:33:15.9831794Z + pushd examples/demo-apps/android/LlamaDemo 2025-06-05T23:33:15.9832715Z /pytorch/executorch/examples/demo-apps/android/LlamaDemo /pytorch/executorch 2025-06-05T23:33:15.9833730Z + ANDROID_HOME=/opt/android/sdk 2025-06-05T23:33:15.9834281Z + ./gradlew build assembleAndroidTest 2025-06-05T23:33:15.9835131Z Downloading https://services.gradle.org/distributions/gradle-8.0-bin.zip 2025-06-05T23:33:15.9836245Z ...........10%............20%............30%............40%............50%............60%...........70%............80%............90%............100% 2025-06-05T23:33:15.9836904Z 2025-06-05T23:33:15.9837172Z Welcome to Gradle 8.0! 2025-06-05T23:33:15.9837453Z 2025-06-05T23:33:15.9837840Z For more details see https://docs.gradle.org/8.0/release-notes.html 2025-06-05T23:33:15.9838455Z 2025-06-05T23:33:15.9838778Z Starting a Gradle Daemon (subsequent builds will be faster) 2025-06-05T23:33:15.9839314Z 2025-06-05T23:33:15.9839321Z 2025-06-05T23:33:15.9889155Z > Starting Daemon> IDLE<-------------> 0% INITIALIZING [42ms]<-------------> 0% INITIALIZING [142ms]<-------------> 0% INITIALIZING [242ms]<-------------> 0% INITIALIZING [342ms]<-------------> 0% INITIALIZING [442ms]> Evaluating settings<-------------> 0% INITIALIZING [542ms]<-------------> 0% INITIALIZING [642ms]<-------------> 0% INITIALIZING [742ms]<-------------> 0% INITIALIZING [842ms]<-------------> 0% INITIALIZING [942ms]<-------------> 0% INITIALIZING [1s]> Evaluating settings > Generating gradle-api-8.0.jar > Generating 0%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 1%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 2%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 3%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 4%<-------------> 0% INITIALIZING [2s]> Evaluating settings > Generating gradle-api-8.0.jar > Generating 8%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 13%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 14%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 15%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 29%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 32%<-------------> 0% INITIALIZING [3s]> Evaluating settings > Generating gradle-api-8.0.jar > Generating 33%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 37%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 39%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 41%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 43%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 47%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 49%<-------------> 0% INITIALIZING [4s]> Evaluating settings > Generating gradle-api-8.0.jar > Generating 50%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 51%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 54%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 56%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 58%<-------------> 0% INITIALIZING [5s]> Evaluating settings > Generating gradle-api-8.0.jar > Generating 63%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 65%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 66%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 70%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 74%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 77%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 80%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 83%<-------------> 0% INITIALIZING [6s]> Evaluating settings > Generating gradle-api-8.0.jar > Generating 85%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 86%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 89%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 90%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 93%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 97%> Evaluating settings > Generating gradle-api-8.0.jar > Generating 98%<-------------> 0% INITIALIZING [7s]> Evaluating settings > Generating gradle-api-8.0.jar > Generating 100%> Evaluating settings > Generating gradle-kotlin-dsl-extensions-8.0.jar<-------------> 0% INITIALIZING [8s]<-------------> 0% INITIALIZING [9s]> Evaluating settings > Generating gradle-kotlin-dsl-extensions-8.0.jar 33%> Evaluating settings > Generating gradle-kotlin-dsl-extensions-8.0.jar 66%<-------------> 0% INITIALIZING [10s]<-------------> 0% INITIALIZING [11s]<-------------> 0% INITIALIZING [12s]<-------------> 0% INITIALIZING [13s]<-------------> 0% INITIALIZING [14s]<-------------> 0% INITIALIZING [15s]<-------------> 0% INITIALIZING [16s]> Evaluating settings > Generating gradle-kotlin-dsl-extensions-8.0.jar 100%> Evaluating settings<-------------> 0% INITIALIZING [17s]<-------------> 0% INITIALIZING [18s]> Evaluating settings > Compiling settings file 'settings.gradle.kts'<-------------> 0% INITIALIZING [19s]> Evaluating settings> Evaluating settings > Compiling settings file 'settings.gradle.kts'<-------------> 0% INITIALIZING [20s]> IDLE<-------------> 0% CONFIGURING [20s]> root project> root project > Resolve dependencies of detachedConfiguration1> root project > Resolve dependencies of detachedConfiguration1 > com.android.a> root project > Resolve dependencies of detachedConfiguration1> root project > Resolve dependencies of detachedConfiguration2 > org.jetbrains<-------------> 0% CONFIGURING [21s]> root project > Resolve dependencies of :classpath > gradle-8.1.0.module> root project > Resolve dependencies of :classpath > kotlin-gradle-plugin-1.8. 2025-06-05T23:33:15.9927935Z 2025-06-05T23:33:15.9927962Z 2025-06-05T23:33:16.0036955Z > root project > Resolve dependencies of :classpath > sdk-common-31.1.0.pom> root project > Resolve dependencies of :classpath > gradle-settings-api-8.1.0> root project > Resolve dependencies of :classpath > aapt2-proto-8.1.0-1015446> root project > Resolve dependencies of :classpath > aaptcompiler-8.1.0.pom> root project > Resolve dependencies of :classpath > aapt2-proto-8.1.0-1015446> root project > Resolve dependencies of :classpath > shared-31.1.0.pom> root project > Resolve dependencies of :classpath > databinding-compiler-comm> root project > Resolve dependencies of :classpath > lint-model-31.1.0.pom> root project > Resolve dependencies of :classpath > builder-test-api-8.1.0.po> root project > Resolve dependencies of :classpath > builder-test-api-8.1.0.mo> IDLE> root project > Resolve dependencies of :classpath > aaptcompiler-8.1.0.module<-------------> 0% CONFIGURING [22s]> root project > Resolve dependencies of :classpath > android-test-plugin-host-> root project > Resolve dependencies of :classpath > bcpkix-jdk15on-1.67.pom> root project > Resolve dependencies of :classpath > android-test-plugin-host-> root project > Resolve dependencies of :classpath > databinding-common-8.1.0.> root project > Resolve dependencies of :classpath > asm-analysis-9.2.pom> root project > Resolve dependencies of :classpath > protobuf-java-3.19.3.pom> IDLE> root project > Resolve dependencies of :classpath > jetifier-core-1.0.0-beta1> root project > Resolve dependencies of :classpath > ow2-1.5.pom> root project > Resolve dependencies of :classpath > asm-9.2.pom> IDLE> root project > Resolve dependencies of :classpath > asm-util-9.2.pom> IDLE> IDLE<-------------> 0% CONFIGURING [23s]> IDLE> root project > Resolve dependencies of :classpath > jetifier-core-1.0.0-beta1> root project > Resolve dependencies of :classpath > kotlin-stdlib-jdk8-1.8.10> root project > Resolve dependencies of :classpath > kotlin-gradle-plugin-idea> root project > Resolve dependencies of :classpath > kotlin-gradle-plugin-mode> root project > Resolve dependencies of :classpath > kotlin-util-klib-1.8.10.p> root project > Resolve dependencies of :classpath > kotlin-gradle-plugin-idea<-------------> 0% CONFIGURING [24s]> root project > Resolve dependencies of :classpath > kotlin-android-extensions> root project > Resolve dependencies of :classpath > kotlin-annotation-process> IDLE> root project > Resolve dependencies of :classpath > kotlin-compiler-runner-1.> IDLE> IDLE> IDLE> root project > Resolve dependencies of :classpath > gson-2.8.9.pom> root project > Resolve dependencies of :classpath > gson-parent-2.8.9.pom> root project > Resolve dependencies of :classpath > common-31.1.0.pom> root project > Resolve dependencies of :classpath > guava-31.1-jre.pom> IDLE<-------------> 0% CONFIGURING [25s]> root project > Resolve dependencies of :classpath > guava-parent-31.1-jre.pom> root project > Resolve dependencies of :classpath > kotlin-reflect-1.8.10.pom> root project > Resolve dependencies of :classpath > httpcomponents-core-4.4.1> root project > Resolve dependencies of :classpath > dvlib-31.1.0.pom> IDLE> root project > Resolve dependencies of :classpath<-------------> 0% CONFIGURING [26s]> root project > Resolve dependencies of :classpath > httpcomponents-client-4.5> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > asm-tree-9.2.pom> root project > Resolve dependencies of :classpath<-------------> 0% CONFIGURING [27s]> root project > Resolve dependencies of :classpath > jose4j-0.7.0.pom> root project > Resolve dependencies of :classpath<-------------> 0% CONFIGURING [28s]> root project > Resolve dependencies of :classpath > kotlin-stdlib-1.8.10.pom> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > error_prone_annotations-2> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > error_prone_annotations-2> root project > Resolve dependencies of :classpath > error_prone_parent-2.10.0> root project > Resolve dependencies of :classpath<-------------> 0% CONFIGURING [29s]> root project > Resolve dependencies of :classpath > animal-sniffer-annotation> root project > Resolve dependencies of :classpath > perfmark-api-0.23.0.pom> root project > Resolve dependencies of :classpath > grpc-api-1.45.1.pom> IDLE> IDLE> root project > Resolve dependencies of :classpath > animal-sniffer-parent-1.1> root project > Resolve dependencies of :classpath > mojo-parent-50.pom<-------------> 0% CONFIGURING [30s]> root project > Resolve dependencies of :classpath > netty-codec-http2-4.1.72.> root project > Resolve dependencies of :classpath > netty-handler-proxy-4.1.7> root project > Resolve dependencies of :classpath > netty-parent-4.1.72.Final> IDLE> root project > Resolve dependencies of :classpath<-------------> 0% CONFIGURING [31s]> root project > Resolve dependencies of :classpath > grpc-protobuf-lite-1.45.1> root project > Resolve dependencies of :classpath > proto-google-common-proto> root project > Resolve dependencies of :classpath> IDLE<-------------> 0% CONFIGURING [32s]> root project > Resolve dependencies of :classpath > signflinger-8.1.0.pom> root project > Resolve dependencies of :classpath > tracker-31.1.0.pom> root project > Resolve dependencies of :classpath > zipflinger-8.1.0.pom> root project > Resolve dependencies of :classpath > manifest-merger-31.1.0.po> IDLE> IDLE> IDLE> root project > Resolve dependencies of :classpath > manifest-merger-31.1.0.mo<-------------> 0% CONFIGURING [33s]> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > kotlin-stdlib-jdk7-1.8.10> root project > Resolve dependencies of :classpath > kotlin-native-utils-1.8.1<-------------> 0% CONFIGURING [34s]> root project > Resolve dependencies of :classpath > kotlin-util-io-1.8.10.pom> root project > Resolve dependencies of :classpath > kotlin-daemon-embeddable-<-------------> 0% CONFIGURING [35s]> root project > Resolve dependencies of :classpath > kotlin-build-common-1.8.1> root project > Resolve dependencies of :classpath > kotlin-daemon-client-1.8.> IDLE> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > kotlin-scripting-jvm-1.8.> root project > Resolve dependencies of :classpath > kotlin-scripting-common-1> root project > Resolve dependencies of :classpath > checker-qual-3.12.0.pom> IDLE> root project > Resolve dependencies of :classpath<-------------> 0% CONFIGURING [36s]<-------------> 0% CONFIGURING [37s]> root project > Resolve dependencies of :classpath > xml-apis-1.4.01.pom> root project > Resolve dependencies of :classpath<-------------> 0% CONFIGURING [38s]<-------------> 0% CONFIGURING [39s]> root project > Resolve dependencies of :classpath > kotlin-stdlib-common-1.8.> root project > Resolve dependencies of :classpath > grpc-context-1.45.1.pom> root project > Resolve dependencies of :classpath > netty-transport-4.1.72.Fi> root project > Resolve dependencies of :classpath > netty-common-4.1.72.Final> root project > Resolve dependencies of :classpath > netty-codec-4.1.72.Final.> root project > Resolve dependencies of :classpath > netty-buffer-4.1.72.Final<-------------> 0% CONFIGURING [40s]> IDLE> root project > Resolve dependencies of :classpath > netty-codec-socks-4.1.72.> IDLE> IDLE> root project > Resolve dependencies of :classpath> root project > Resolve dependencies of :classpath > netty-resolver-4.1.72.Fin> root project > Resolve dependencies of :classpath > netty-tcnative-classes-2.> root project > Resolve dependencies of :classpath > netty-tcnative-parent-2.0<-------------> 0% CONFIGURING [41s]> root project> root project > Resolve files of :classpath > gradle-settings-api-8.1.0.jar> root project > Resolve files of :classpath > lint-model-31.1.0.jar> root project > Resolve files of :classpath > builder-8.1.0.jar> root project > Resolve files of :classpath > manifest-merger-31.1.0.jar> root project > Resolve files of :classpath > jetifier-core-1.0.0-beta10.jar.s> root project > Resolve files of :classpath > manifest-merger-31.1.0.jar > 208> root project > Resolve files of :classpath > bcprov-jdk15on-1.67.jar > 2.9 Mi> root project > Resolve files of :classpath > builder-8.1.0.jar > 1.3 MiB/11.3> IDLE> root project > Resolve files of :classpath > signflinger-8.1.0.jar> root project > Resolve files of :classpath > builder-8.1.0.jar > 3.9 MiB/11.3> root project > Resolve files of :classpath > zipflinger-8.1.0.jar> root project > Resolve files of :classpath > j2objc-annotations-1.3.jar> root project > Resolve files of :classpath > builder-8.1.0.jar > 6.6 MiB/11.3<-------------> 0% CONFIGURING [42s]> root project > Resolve files of :classpath > apksig-8.1.0.jar> root project > Resolve files of :classpath > builder-8.1.0.jar > 11.2 MiB/11.> root project > Resolve files of :classpath > kotlin-scripting-jvm-1.8.10.jar> root project > Resolve files of :classpath > sdklib-31.1.0.jar> root project > Resolve files of :classpath > databinding-compiler-common-8.1.> root project > Resolve files of :classpath > kotlin-annotation-processing-gra> root project > Resolve files of :classpath > sdk-common-31.1.0.jar> IDLE> root project > Resolve files of :classpath > tracker-31.1.0.jar> root project > Resolve files of :classpath > sdklib-31.1.0.jar > 64.1 KiB/1.4> root project > Resolve files of :classpath > kotlin-gradle-plugin-idea-proto-> root project > Resolve files of :classpath > builder-model-8.1.0.jar> root project > Resolve files of :classpath > gradle-api-8.1.0.jar> root project > Resolve files of :classpath > builder-test-api-8.1.0.jar> IDLE> IDLE<-------------> 0% CONFIGURING [43s]> root project > Resolve files of :classpath > kotlin-gradle-plugin-1.8.10-grad> root project > Resolve files of :classpath > protos-31.1.0.jar> root project > Resolve files of :classpath > core-proto-0.0.8-alpha08.jar > 8> IDLE> IDLE> IDLE> root project > Resolve files of :classpath > lint-typedef-remover-31.1.0.jar> root project > Resolve files of :classpath > databinding-common-8.1.0.jar> root project > Resolve files of :classpath > android-device-provider-ddmlib-p> root project > Resolve files of :classpath > baseLibrary-8.1.0.jar> root project > Resolve files of :classpath > android-test-plugin-host-coverag> root project > Resolve files of :classpath > android-test-plugin-host-apk-ins> root project > Resolve files of :classpath > transform-api-2.0.0-deprecated-u> IDLE> IDLE> IDLE> root project<-------------> 0% CONFIGURING [44s]<-------------> 0% CONFIGURING [45s]<-------------> 0% CONFIGURING [46s]<-------------> 0% CONFIGURING [47s]<-------------> 0% CONFIGURING [48s]<-------------> 0% CONFIGURING [49s]<-------------> 0% CONFIGURING [50s]<-------------> 0% CONFIGURING [51s]<======-------> 50% CONFIGURING [51s]> :app<======-------> 50% CONFIGURING [52s]<======-------> 50% CONFIGURING [53s]<======-------> 50% CONFIGURING [54s]<======-------> 50% CONFIGURING [55s]<======-------> 50% CONFIGURING [56s]<======-------> 50% CONFIGURING [57s]<======-------> 50% CONFIGURING [58s]<======-------> 50% CONFIGURING [59s]<======-------> 50% CONFIGURING [1m]> :app > Compiling build file 'app/build.gradle.kts'<======-------> 50% CONFIGURING [1m 1s]> :app<=============> 100% CONFIGURING [1m 2s]> Resolve dependencies of :classpath> IDLEWARNING: We recommend using a newer Android Gradle plugin to use compileSdk = 34 2025-06-05T23:34:15.2802601Z  2025-06-05T23:34:15.2803923Z This Android Gradle plugin (8.1.0) was tested up to compileSdk = 33 (and compileSdkPreview = "UpsideDownCakePrivacySandbox"). 2025-06-05T23:34:15.2805126Z  2025-06-05T23:34:15.2805881Z You are strongly encouraged to update your project to use a newer 2025-06-05T23:34:15.2806737Z Android Gradle plugin that has been tested with compileSdk = 34. 2025-06-05T23:34:15.2807280Z 2025-06-05T23:34:15.2807635Z If you are already using the latest version of the Android Gradle plugin, 2025-06-05T23:34:15.2808638Z you may need to wait until a newer version with support for compileSdk = 34 is available. 2025-06-05T23:34:15.2809274Z 2025-06-05T23:34:15.2809459Z To suppress this warning, add/update 2025-06-05T23:34:15.2810043Z android.suppressUnsupportedCompileSdk=34 2025-06-05T23:34:15.2810624Z to this project's gradle.properties. 2025-06-05T23:34:15.2811236Z  2025-06-05T23:34:15.2811920Z  2025-06-05T23:34:15.2812288Z  2025-06-05T23:34:15.2812632Z  2025-06-05T23:34:15.2812994Z  2025-06-05T23:34:15.2875313Z <=============> 100% CONFIGURING [1m 2s]> IDLE> IDLE> IDLE> IDLE<=============> 100% CONFIGURING [1m 3s]<-------------> 1% EXECUTING [1m 3s]<-------------> 2% EXECUTING [1m 3s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa<-------------> 2% EXECUTING [1m 4s]> IDLE> IDLE> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa<-------------> 2% EXECUTING [1m 5s]> IDLE> IDLE<-------------> 2% EXECUTING [1m 6s]<-------------> 2% EXECUTING [1m 7s]<-------------> 2% EXECUTING [1m 8s]<-------------> 2% EXECUTING [1m 9s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa<-------------> 2% EXECUTING [1m 10s]> IDLE<-------------> 2% EXECUTING [1m 11s]<-------------> 2% EXECUTING [1m 12s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE<-------------> 2% EXECUTING [1m 13s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa<-------------> 2% EXECUTING [1m 14s]> IDLE> IDLE> IDLE> IDLE> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa<-------------> 2% EXECUTING [1m 15s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE> IDLE> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE> IDLE> IDLE<-------------> 2% EXECUTING [1m 16s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa<-------------> 2% EXECUTING [1m 17s]> IDLE> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE<-------------> 2% EXECUTING [1m 18s]<-------------> 2% EXECUTING [1m 19s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE> IDLE> IDLE<-------------> 2% EXECUTING [1m 20s]<-------------> 2% EXECUTING [1m 21s]<-------------> 2% EXECUTING [1m 22s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa<-------------> 2% EXECUTING [1m 23s]> IDLE<-------------> 2% EXECUTING [1m 24s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE<-------------> 2% EXECUTING [1m 25s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE> IDLE> IDLE<-------------> 2% EXECUTING [1m 26s]<-------------> 2% EXECUTING [1m 27s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE> IDLE> IDLE<-------------> 2% EXECUTING [1m 28s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa<-------------> 2% EXECUTING [1m 29s]> IDLE> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa<-------------> 2% EXECUTING [1m 30s]> IDLE<-------------> 2% EXECUTING [1m 31s]<-------------> 2% EXECUTING [1m 32s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE<-------------> 2% EXECUTING [1m 33s]<-------------> 2% EXECUTING [1m 34s]<-------------> 2% EXECUTING [1m 35s]<-------------> 2% EXECUTING [1m 36s]<-------------> 2% EXECUTING [1m 37s]<-------------> 2% EXECUTING [1m 38s]<-------------> 2% EXECUTING [1m 39s]<-------------> 2% EXECUTING [1m 40s]<-------------> 2% EXECUTING [1m 41s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE<-------------> 2% EXECUTING [1m 42s]<-------------> 2% EXECUTING [1m 43s]<-------------> 2% EXECUTING [1m 44s]<-------------> 2% EXECUTING [1m 45s]<-------------> 2% EXECUTING [1m 46s]> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> :app:checkDebugAarMetadata > Resolve dependencies of :app:debugRuntimeClasspa> IDLE> IDLE<-------------> 2% EXECUTING [1m 47s]<-------------> 2% EXECUTING [1m 48s]<-------------> 2% EXECUTING [1m 49s]<-------------> 2% EXECUTING [1m 50s]<-------------> 2% EXECUTING [1m 51s]> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ma> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ma> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > an> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ma> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > Ex> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > pr> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ca> IDLE<-------------> 2% EXECUTING [1m 52s]> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > tr> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > Ex> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > st> IDLE> IDLE> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > Ex> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > do> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > lo> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > pr> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ve> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > co> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > fo> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > fo> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > sa<-------------> 2% EXECUTING [1m 53s]> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > an> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > li> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > li> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ui> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ui> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ui> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ui<-------------> 2% EXECUTING [1m 54s]> IDLE> IDLE> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ui> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ui> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > fr> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > li> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > li> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > cu> IDLE> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > em> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ui> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > cu> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > Id> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ap> IDLE<-------------> 2% EXECUTING [1m 55s]> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > vi> IDLE> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ap> IDLE> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > co> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > co> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > em> IDLE<-------------> 2% EXECUTING [1m 56s]> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ac> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ru> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ui> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > vi> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > Aa> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ca> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > au<-------------> 2% EXECUTING [1m 57s]> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > tr> IDLE> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > dy> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > ve> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > Ex> IDLE> IDLE> IDLE<-------------> 2% EXECUTING [1m 58s]> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath > Ex> IDLE> :app:checkDebugAarMetadata > Resolve files of :app:debugRuntimeClasspath<-------------> 3% EXECUTING [1m 58s]> IDLE> :app:mapDebugSourceSetPaths > Resolve files of :app:debugRuntimeClasspath> :app:mapDebugSourceSetPaths<-------------> 4% EXECUTING [1m 58s]> :app:mergeDebugResources<-------------> 4% EXECUTING [1m 59s]<-------------> 4% EXECUTING [2m]> :app:packageDebugResources<-------------> 5% EXECUTING [2m]> :app:parseDebugLocalResources > Resolve files of :app:androidApis<-------------> 6% EXECUTING [2m]> :app:parseDebugLocalResources> :app:processDebugMainManifest > Resolve files of :app:debugRuntimeClasspath<-------------> 7% EXECUTING [2m]> IDLE<-------------> 7% EXECUTING [2m 1s]<=------------> 8% EXECUTING [2m 1s]> IDLE> :app:processDebugMainManifest 2025-06-05T23:35:16.3792175Z > Task :app:processDebugMainManifest 2025-06-05T23:35:16.3794405Z package="com.example.executorchllamademo" found in source AndroidManifest.xml: /pytorch/executorch/examples/demo-apps/android/LlamaDemo/app/src/main/AndroidManifest.xml. 2025-06-05T23:35:16.3797128Z Setting the namespace via the package attribute in the source AndroidManifest.xml is no longer supported, and the value is ignored. 2025-06-05T23:35:16.3800079Z Recommendation: remove package="com.example.executorchllamademo" from the source AndroidManifest.xml: /pytorch/executorch/examples/demo-apps/android/LlamaDemo/app/src/main/AndroidManifest.xml. 2025-06-05T23:35:16.3859083Z /pytorch/executorch/examples/demo-apps/android/LlamaDemo/app/src/main/AndroidManifest.xml:6:5-9:41 Warning: 2025-06-05T23:35:16.3861923Z uses-sdk:targetSdkVersion value (34) specified in the manifest file is ignored. It is overridden by the value declared in the DSL or the variant API, or 1 if not declared/present. Current value is (33). 2025-06-05T23:35:16.3864256Z /pytorch/executorch/examples/demo-apps/android/LlamaDemo/app/src/main/AndroidManifest.xml:21:9-41 Warning: 2025-06-05T23:35:16.3867134Z android:extractNativeLibs should not be specified in this source AndroidManifest.xml file. See https://d.android.com/guide/topics/manifest/application-element#extractNativeLibs for more information. 2025-06-05T23:35:16.3870474Z The AGP Upgrade Assistant can remove the attribute from the AndroidManifest.xml file and update the build file accordingly. See https://d.android.com/studio/build/agp-upgrade-assistant for more information. 2025-06-05T23:35:16.3872537Z  2025-06-05T23:35:16.3872908Z  2025-06-05T23:35:16.3873272Z  2025-06-05T23:35:16.3873649Z  2025-06-05T23:35:16.3874001Z  2025-06-05T23:35:16.3890388Z <=------------> 8% EXECUTING [2m 1s]> IDLE> :app:processDebugManifest> IDLE> IDLE<=------------> 12% EXECUTING [2m 1s]> :app:processDebugManifestForPackage> :app:mergeDebugAssets > Resolve files of :app:debugRuntimeClasspath<=------------> 12% EXECUTING [2m 2s]<=------------> 13% EXECUTING [2m 2s]> :app:checkDebugDuplicateClasses > Resolve files of :app:debugRuntimeClasspath> :app:checkDebugDuplicateClasses > Resolve files of :app:debugRuntimeClasspath> :app:checkDebugDuplicateClasses > Resolve files of :app:debugRuntimeClasspath> IDLE> IDLE> :app:checkDebugDuplicateClasses > Resolve files of :app:debugRuntimeClasspath> :app:checkDebugDuplicateClasses > Resolve files of :app:debugRuntimeClasspath> IDLE> :app:checkDebugDuplicateClasses > Resolve files of :app:debugRuntimeClasspath> IDLE> IDLE<=------------> 13% EXECUTING [2m 3s]> :app:checkDebugDuplicateClasses > Resolve files of :app:debugRuntimeClasspath> IDLE> :app:checkDebugDuplicateClasses > Resolve files of :app:debugRuntimeClasspath> IDLE> :app:mergeDebugJniLibFolders> :app:desugarDebugFileDependencies> :app:checkDebugDuplicateClasses<=------------> 14% EXECUTING [2m 3s]> IDLE> :app:mergeDebugNativeLibs > Resolve files of :app:debugRuntimeClasspath> :app:mergeDebugNativeLibs<==-----------> 17% EXECUTING [2m 4s]> :app:buildKotlinToolingMetadata<==-----------> 21% EXECUTING [2m 4s]> IDLE> :app:processDebugResources > Resolve files of :app:debugRuntimeClasspath > Re> :app:stripDebugDebugSymbols 2025-06-05T23:35:16.3904641Z > Task :app:stripDebugDebugSymbols 2025-06-05T23:35:16.3906784Z Unable to strip the following libraries, packaging them as they are: libc++_shared.so, libexecutorch.so, libfbjni.so, libimage_processing_util_jni.so. 2025-06-05T23:35:16.3908272Z  2025-06-05T23:35:16.3908655Z  2025-06-05T23:35:16.3942797Z  2025-06-05T23:35:16.3975597Z <==-----------> 21% EXECUTING [2m 4s]> IDLE> :app:processDebugResources > Resolve files of :app:debugRuntimeClasspath > Re> :app:desugarDebugFileDependencies> IDLE<==-----------> 22% EXECUTING [2m 4s]> IDLE<==-----------> 22% EXECUTING [2m 5s]<==-----------> 22% EXECUTING [2m 6s]> :app:processDebugResources > Resolve files of :app:debugRuntimeClasspath> :app:processDebugResources > Resolve files of :app:debugRuntimeClasspath > Aa> :app:processDebugResources > Resolve files of :app:debugRuntimeClasspath > Aa> :app:processDebugResources > Resolve files of :app:debugRuntimeClasspath > Aa> IDLE> IDLE> :app:processDebugResources > Resolve files of :app:debugRuntimeClasspath<==-----------> 22% EXECUTING [2m 7s]<==-----------> 22% EXECUTING [2m 8s]> :app:processDebugResources > Resolve dependencies of :app:debugCompileClasspa> :app:mergeExtDexDebug > Resolve files of :app:debugRuntimeClasspath > DexingN> :app:mergeExtDexDebug > Resolve files of :app:debugRuntimeClasspath > DexingN> :app:mergeExtDexDebug > Resolve files of :app:debugRuntimeClasspath > DexingN> :app:processDebugResources<==-----------> 22% EXECUTING [2m 9s]<===----------> 23% EXECUTING [2m 10s]> :app:mergeExtDexDebug > Resolve files of :app:debugRuntimeClasspath > DexingN<===----------> 23% EXECUTING [2m 11s]<===----------> 23% EXECUTING [2m 12s]> IDLE> :app:mergeExtDexDebug > Resolve files of :app:debugRuntimeClasspath > DexingN<===----------> 23% EXECUTING [2m 13s]<===----------> 23% EXECUTING [2m 14s]> IDLE> :app:mergeExtDexDebug > Resolve files of :app:debugRuntimeClasspath > DexingN<===----------> 23% EXECUTING [2m 15s]<===----------> 23% EXECUTING [2m 16s]<===----------> 23% EXECUTING [2m 17s]<===----------> 23% EXECUTING [2m 18s]<===----------> 23% EXECUTING [2m 19s]<===----------> 23% EXECUTING [2m 20s]> IDLE> :app:mergeExtDexDebug > Resolve files of :app:debugRuntimeClasspath > DexingN<===----------> 23% EXECUTING [2m 21s]<===----------> 23% EXECUTING [2m 22s]<===----------> 23% EXECUTING [2m 23s]> IDLE> :app:mergeExtDexDebug > Resolve files of :app:debugRuntimeClasspath > DexingN<===----------> 23% EXECUTING [2m 24s]<===----------> 23% EXECUTING [2m 25s]<===----------> 23% EXECUTING [2m 26s]<===----------> 23% EXECUTING [2m 27s]<===----------> 23% EXECUTING [2m 28s]<===----------> 23% EXECUTING [2m 29s]<===----------> 23% EXECUTING [2m 30s]<===----------> 23% EXECUTING [2m 31s]<===----------> 23% EXECUTING [2m 32s]> IDLE<===----------> 23% EXECUTING [2m 33s]> IDLE<===----------> 23% EXECUTING [2m 34s]> IDLE> IDLE<===----------> 23% EXECUTING [2m 35s]> :app:mergeExtDexDebug> :app:compileDebugJavaWithJavac> :app:compileDebugJavaWithJavac > Resolve files of :app:debugCompileClasspath > :app:compileDebugJavaWithJavac > Resolve files of :app:debugCompileClasspath > :app:compileDebugJavaWithJavac > Resolve files of :app:debugCompileClasspath > IDLE> IDLE> :app:compileDebugJavaWithJavac > Resolve files of :app:debugCompileClasspath> :app:compileDebugJavaWithJavac<===----------> 23% EXECUTING [2m 36s]<===----------> 23% EXECUTING [2m 37s]<===----------> 23% EXECUTING [2m 38s] 2025-06-05T23:35:16.4001575Z > Task :app:compileDebugJavaWithJavac 2025-06-05T23:35:16.4002392Z Note: Some input files use or override a deprecated API. 2025-06-05T23:35:16.4003343Z Note: Recompile with -Xlint:deprecation for details. 2025-06-05T23:35:16.4004020Z  2025-06-05T23:35:16.4004410Z  2025-06-05T23:35:16.4004768Z  2025-06-05T23:35:16.4005141Z  2025-06-05T23:36:06.5803749Z <===----------> 23% EXECUTING [2m 38s]> IDLE> :app:mergeExtDexDebug> IDLE> :app:compileDebugJavaWithJavac<===----------> 23% EXECUTING [2m 39s]<===----------> 23% EXECUTING [2m 40s]<===----------> 23% EXECUTING [2m 41s]<===----------> 23% EXECUTING [2m 42s]<===----------> 23% EXECUTING [2m 43s]<===----------> 23% EXECUTING [2m 44s]<===----------> 23% EXECUTING [2m 45s]<===----------> 23% EXECUTING [2m 46s]<===----------> 23% EXECUTING [2m 47s]<===----------> 23% EXECUTING [2m 48s]<===----------> 23% EXECUTING [2m 49s]<===----------> 23% EXECUTING [2m 50s]<===----------> 23% EXECUTING [2m 51s]<===----------> 23% EXECUTING [2m 52s]<===----------> 23% EXECUTING [2m 53s]<===----------> 23% EXECUTING [2m 54s]<===----------> 23% EXECUTING [2m 55s]<===----------> 23% EXECUTING [2m 56s]<===----------> 24% EXECUTING [2m 56s]> IDLE<===----------> 24% EXECUTING [2m 57s]<===----------> 24% EXECUTING [2m 58s]<===----------> 24% EXECUTING [2m 59s]<===----------> 25% EXECUTING [2m 59s]> IDLE<===----------> 25% EXECUTING [3m]> :app:mergeDebugJavaResource > Resolve files of :app:debugRuntimeClasspath> :app:mergeDebugJavaResource > Resolve files of :app:debugRuntimeClasspath > A> :app:mergeDebugJavaResource> :app:dexBuilderDebug<===----------> 25% EXECUTING [3m 1s]<===----------> 28% EXECUTING [3m 1s]> :app:mergeProjectDexDebug> :app:mergeReleaseResources<===----------> 29% EXECUTING [3m 1s]> IDLE<===----------> 29% EXECUTING [3m 2s]> IDLE> :app:packageDebug> :app:packageReleaseResources<====---------> 31% EXECUTING [3m 2s]> :app:processReleaseMainManifest > Resolve files of :app:releaseRuntimeClasspa> :app:parseReleaseLocalResources 2025-06-05T23:36:06.5817116Z > Task :app:processReleaseMainManifest 2025-06-05T23:36:06.5819371Z package="com.example.executorchllamademo" found in source AndroidManifest.xml: /pytorch/executorch/examples/demo-apps/android/LlamaDemo/app/src/main/AndroidManifest.xml. 2025-06-05T23:36:06.5822101Z Setting the namespace via the package attribute in the source AndroidManifest.xml is no longer supported, and the value is ignored. 2025-06-05T23:36:06.5825360Z Recommendation: remove package="com.example.executorchllamademo" from the source AndroidManifest.xml: /pytorch/executorch/examples/demo-apps/android/LlamaDemo/app/src/main/AndroidManifest.xml. 2025-06-05T23:36:06.5828108Z /pytorch/executorch/examples/demo-apps/android/LlamaDemo/app/src/main/AndroidManifest.xml:6:5-9:41 Warning: 2025-06-05T23:36:06.5830538Z uses-sdk:targetSdkVersion value (34) specified in the manifest file is ignored. It is overridden by the value declared in the DSL or the variant API, or 1 if not declared/present. Current value is (33). 2025-06-05T23:36:06.5832926Z /pytorch/executorch/examples/demo-apps/android/LlamaDemo/app/src/main/AndroidManifest.xml:21:9-41 Warning: 2025-06-05T23:36:06.5835779Z android:extractNativeLibs should not be specified in this source AndroidManifest.xml file. See https://d.android.com/guide/topics/manifest/application-element#extractNativeLibs for more information. 2025-06-05T23:36:06.5839061Z The AGP Upgrade Assistant can remove the attribute from the AndroidManifest.xml file and update the build file accordingly. See https://d.android.com/studio/build/agp-upgrade-assistant for more information. 2025-06-05T23:36:06.5841030Z  2025-06-05T23:36:06.5841437Z  2025-06-05T23:36:06.5841822Z  2025-06-05T23:36:06.5842224Z  2025-06-05T23:36:06.5842609Z  2025-06-05T23:36:06.5849644Z <====---------> 34% EXECUTING [3m 2s]> :app:processReleaseManifestForPackage> IDLE> :app:mergeReleaseResources> :app:packageDebug<====---------> 36% EXECUTING [3m 3s]> :app:mergeReleaseNativeLibs<====---------> 37% EXECUTING [3m 3s]> :app:desugarReleaseFileDependencies<====---------> 38% EXECUTING [3m 3s]> :app:mergeReleaseArtProfile > Resolve files of :app:releaseRuntimeClasspath<=====--------> 38% EXECUTING [3m 3s]> :app:stripReleaseDebugSymbols<=====--------> 39% EXECUTING [3m 3s]> :app:mergeExtDexRelease > Resolve files of :app:releaseRuntimeClasspath > Dex<=====--------> 39% EXECUTING [3m 4s] 2025-06-05T23:36:06.5855704Z > Task :app:packageDebug 2025-06-05T23:36:06.5857504Z PackagingOptions.jniLibs.useLegacyPackaging should be set to true because android:extractNativeLibs is set to "true" in AndroidManifest.xml. 2025-06-05T23:36:06.5859027Z  2025-06-05T23:36:06.5859427Z  2025-06-05T23:36:06.5859801Z  2025-06-05T23:36:06.5895920Z <=====--------> 39% EXECUTING [3m 4s]> :app:processReleaseManifestForPackage> :app:stripReleaseDebugSymbols> :app:mergeExtDexRelease > Resolve files of :app:releaseRuntimeClasspath > Dex> :app:packageDebug<=====--------> 39% EXECUTING [3m 5s]<=====--------> 39% EXECUTING [3m 6s]<=====--------> 39% EXECUTING [3m 7s]<=====--------> 39% EXECUTING [3m 8s]<=====--------> 39% EXECUTING [3m 9s]<=====--------> 39% EXECUTING [3m 10s]<=====--------> 39% EXECUTING [3m 11s]<=====--------> 39% EXECUTING [3m 12s]<=====--------> 39% EXECUTING [3m 13s]<=====--------> 39% EXECUTING [3m 14s]<=====--------> 39% EXECUTING [3m 15s]<=====--------> 39% EXECUTING [3m 16s] 2025-06-05T23:36:06.5902113Z > Task :app:stripReleaseDebugSymbols 2025-06-05T23:36:06.5904798Z Unable to strip the following libraries, packaging them as they are: libc++_shared.so, libexecutorch.so, libfbjni.so, libimage_processing_util_jni.so. 2025-06-05T23:36:06.5906360Z  2025-06-05T23:36:06.5906776Z  2025-06-05T23:36:06.5907167Z  2025-06-05T23:36:06.5964363Z <=====--------> 40% EXECUTING [3m 16s]> :app:processReleaseManifestForPackage> :app:mergeExtDexRelease > Resolve files of :app:releaseRuntimeClasspath > Dex> :app:mergeExtDexRelease > Resolve files of :app:releaseRuntimeClasspath > Dex> :app:packageDebug<=====--------> 40% EXECUTING [3m 17s]> IDLE> IDLE<=====--------> 40% EXECUTING [3m 18s]<=====--------> 40% EXECUTING [3m 19s]<=====--------> 44% EXECUTING [3m 19s]> :app:mergeExtDexRelease> :app:collectReleaseDependencies<=====--------> 45% EXECUTING [3m 19s]> :app:sdkReleaseDependencyData<======-------> 50% EXECUTING [3m 19s]> :app:bundleDebugClassesToCompileJar<======-------> 53% EXECUTING [3m 20s]> :app:checkDebugAndroidTestAarMetadata > Resolve dependencies of :app:debugAnd<======-------> 53% EXECUTING [3m 21s]<======-------> 53% EXECUTING [3m 22s]> :app:checkDebugAndroidTestAarMetadata > Resolve dependencies of :app:debugAnd> IDLE<======-------> 53% EXECUTING [3m 23s]> :app:checkDebugAndroidTestAarMetadata > Resolve dependencies of :app:debugAnd> IDLE<======-------> 53% EXECUTING [3m 24s]<======-------> 53% EXECUTING [3m 25s]> :app:checkDebugAndroidTestAarMetadata > Resolve files of :app:debugAndroidTes> :app:checkDebugAndroidTestAarMetadata > Resolve files of :app:debugAndroidTes> IDLE> :app:checkDebugAndroidTestAarMetadata > Resolve files of :app:debugAndroidTes> IDLE> :app:checkDebugAndroidTestAarMetadata > Resolve files of :app:debugAndroidTes<======-------> 53% EXECUTING [3m 26s]> IDLE<=======------> 54% EXECUTING [3m 26s]> :app:lintAnalyzeDebug > Resolve files of :app:debugRuntimeClasspath> :app:lintAnalyzeDebug<=======------> 54% EXECUTING [3m 27s]> :app:lintAnalyzeDebug > Resolve dependencies of :app:detachedConfiguration1 >> :app:lintAnalyzeDebug > Resolve dependencies of :app:detachedConfiguration1 >> IDLE<=======------> 54% EXECUTING [3m 28s]> :app:lintAnalyzeDebug > Resolve dependencies of :app:detachedConfiguration1 >> IDLE> :app:lintAnalyzeDebug > Resolve dependencies of :app:detachedConfiguration1 >> IDLE<=======------> 54% EXECUTING [3m 29s]> :app:lintAnalyzeDebug > Resolve dependencies of :app:detachedConfiguration1<=======------> 54% EXECUTING [3m 30s]> :app:lintAnalyzeDebug > Resolve files of :app:detachedConfiguration1 > lint-g> :app:lintAnalyzeDebug > Resolve files of :app:detachedConfiguration1 > lint-c> :app:lintAnalyzeDebug > Resolve files of :app:detachedConfiguration1 > play-s> IDLE> :app:lintAnalyzeDebug > Resolve files of :app:detachedConfiguration1 > uast-3<=======------> 54% EXECUTING [3m 31s]> IDLE> IDLE<=======------> 54% EXECUTING [3m 32s]<=======------> 54% EXECUTING [3m 33s]<=======------> 54% EXECUTING [3m 34s]<=======------> 54% EXECUTING [3m 35s]<=======------> 54% EXECUTING [3m 36s]<=======------> 54% EXECUTING [3m 37s]<=======------> 54% EXECUTING [3m 38s]> :app:lintAnalyzeDebug > Resolve files of :app:detachedConfiguration1<=======------> 54% EXECUTING [3m 39s]> :app:lintAnalyzeDebug<=======------> 54% EXECUTING [3m 40s]<=======------> 54% EXECUTING [3m 41s]<=======------> 54% EXECUTING [3m 42s]> :app:lintAnalyzeDebug > Resolve files of :app:debugAndroidTestCompileClasspat> :app:lintAnalyzeDebug<=======------> 54% EXECUTING [3m 43s]> :app:lintAnalyzeDebug > Resolve files of :app:debugAndroidTestRuntimeClasspat> :app:lintAnalyzeDebug> :app:lintAnalyzeDebug > Resolve files of :app:debugRuntimeClasspath<=======------> 54% EXECUTING [3m 44s]> :app:lintAnalyzeDebug > Resolve dependencies of :app:debugUnitTestCompileClas> :app:lintAnalyzeDebug<=======------> 56% EXECUTING [3m 44s]> :app:compileDebugUnitTestKotlin<=======------> 60% EXECUTING [3m 44s]> :app:mergeDebugAndroidTestResources> :app:processDebugAndroidTestManifest<========-----> 63% EXECUTING [3m 44s]> :app:mergeDebugAndroidTestAssets > Resolve files of :app:debugAndroidTestRunt<========-----> 65% EXECUTING [3m 44s]> :app:mergeDebugAndroidTestNativeLibs > Resolve files of :app:debugAndroidTest<========-----> 65% EXECUTING [3m 45s]<========-----> 67% EXECUTING [3m 45s]> :app:processDebugAndroidTestResources > Resolve files of :app:debugAndroidTes> IDLE> :app:processDebugAndroidTestResources> :app:checkDebugAndroidTestDuplicateClasses > Resolve files of :app:debugAndro<=========----> 70% EXECUTING [3m 45s]> :app:mergeExtDexDebugAndroidTest > Resolve files of :app:debugAndroidTestRunt> :app:mergeExtDexDebugAndroidTest > Resolve files of :app:debugAndroidTestRunt> IDLE<=========----> 70% EXECUTING [3m 46s]> IDLE<=========----> 70% EXECUTING [3m 47s]> :app:compileDebugAndroidTestJavaWithJavac> :app:mergeExtDexDebugAndroidTest<=========----> 70% EXECUTING [3m 48s]<=========----> 70% EXECUTING [3m 49s]<=========----> 71% EXECUTING [3m 49s]> IDLE<=========----> 71% EXECUTING [3m 50s]<=========----> 71% EXECUTING [3m 51s]<=========----> 73% EXECUTING [3m 51s]> :app:processReleaseResources> :app:mergeDebugAndroidTestJavaResource > Resolve files of :app:debugAndroidTe<=========----> 75% EXECUTING [3m 51s]> :app:mergeDebugAndroidTestJavaResource> :app:mergeProjectDexDebugAndroidTest<=========----> 76% EXECUTING [3m 51s]> :app:packageDebugAndroidTest> IDLE<==========---> 79% EXECUTING [3m 51s]> IDLE<==========---> 79% EXECUTING [3m 52s]<==========---> 80% EXECUTING [3m 52s]> :app:compileReleaseJavaWithJavac<==========---> 80% EXECUTING [3m 53s] 2025-06-05T23:36:13.1745035Z > Task :app:compileReleaseJavaWithJavac 2025-06-05T23:36:13.1746770Z Note: Some input files use or override a deprecated API. 2025-06-05T23:36:13.1747523Z Note: Recompile with -Xlint:deprecation for details. 2025-06-05T23:36:13.1747954Z  2025-06-05T23:36:13.1748171Z  2025-06-05T23:36:13.1748364Z  2025-06-05T23:36:13.1748575Z  2025-06-05T23:36:13.1753354Z <==========---> 81% EXECUTING [3m 53s]> :app:dexBuilderRelease> IDLE> :app:lintAnalyzeDebug> IDLE<==========---> 82% EXECUTING [3m 53s]> :app:mergeDexRelease> :app:mergeReleaseGlobalSynthetics > Resolve files of :app:releaseRuntimeClass<==========---> 82% EXECUTING [3m 54s]<===========--> 85% EXECUTING [3m 54s]> :app:mergeReleaseJavaResource> :app:optimizeReleaseResources<===========--> 88% EXECUTING [3m 54s]<===========--> 89% EXECUTING [3m 54s]> IDLE> IDLE<===========--> 89% EXECUTING [3m 55s]<===========--> 89% EXECUTING [3m 56s]<===========--> 89% EXECUTING [3m 57s]<===========--> 90% EXECUTING [3m 57s]> :app:compileReleaseArtProfile<===========--> 91% EXECUTING [3m 57s]> :app:packageRelease<===========--> 91% EXECUTING [3m 58s]> :app:lintVitalAnalyzeRelease 2025-06-05T23:36:13.1757073Z > Task :app:packageRelease 2025-06-05T23:36:13.1757970Z PackagingOptions.jniLibs.useLegacyPackaging should be set to true because android:extractNativeLibs is set to "true" in AndroidManifest.xml. 2025-06-05T23:36:13.1758734Z  2025-06-05T23:36:13.1758944Z  2025-06-05T23:36:13.1759133Z  2025-06-05T23:36:13.1760298Z <============-> 93% EXECUTING [3m 58s]> IDLE> IDLE> :app:lintVitalAnalyzeRelease> IDLE<============-> 96% EXECUTING [3m 58s]> :app:lintReportDebug<============-> 96% EXECUTING [3m 59s] 2025-06-05T23:36:13.1761336Z > Task :app:lintReportDebug 2025-06-05T23:36:13.1762153Z Wrote HTML report to file:///pytorch/executorch/examples/demo-apps/android/LlamaDemo/app/build/reports/lint-results-debug.html 2025-06-05T23:36:13.1762857Z  2025-06-05T23:36:13.1763172Z BUILD SUCCESSFUL in 4m 2s 2025-06-05T23:36:13.1763495Z 105 actionable tasks: 105 executed 2025-06-05T23:36:13.1763770Z  2025-06-05T23:36:13.1763988Z  2025-06-05T23:36:13.1764179Z  2025-06-05T23:36:13.1764383Z  2025-06-05T23:36:13.1764571Z  2025-06-05T23:36:13.1765570Z <=============> 100% EXECUTING [3m 59s]> IDLE> IDLE> IDLE> IDLE<-------------> 0% WAITING[?12l[?25h+ popd 2025-06-05T23:36:13.1766404Z /pytorch/executorch 2025-06-05T23:36:13.1766688Z + DEMO_APP_DIR=artifacts-to-be-uploaded/llm_demo 2025-06-05T23:36:13.1767082Z + mkdir -p artifacts-to-be-uploaded/llm_demo 2025-06-05T23:36:13.1767770Z + cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/app-debug.apk artifacts-to-be-uploaded/llm_demo 2025-06-05T23:36:13.1768953Z + cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk artifacts-to-be-uploaded/llm_demo 2025-06-05T23:36:13.1873896Z ##[group]Run pmeier/pytest-results-action@a2c1430e2bddadbad9f49a6f9b879f062c6b19b1 2025-06-05T23:36:13.1874400Z with: 2025-06-05T23:36:13.1874688Z path: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:36:13.1875076Z fail-on-empty: false 2025-06-05T23:36:13.1875294Z env: 2025-06-05T23:36:13.1875567Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:36:13.1875955Z REPOSITORY: pytorch/executorch 2025-06-05T23:36:13.1876218Z PR_NUMBER: 2025-06-05T23:36:13.1883763Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:36:13.1891754Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:36:13.1892338Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:36:13.1892870Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:36:13.1893257Z ##[endgroup] 2025-06-05T23:36:13.2602562Z Prepare all required actions 2025-06-05T23:36:13.2639933Z ##[group]Run ./test-infra/.github/actions/chown-directory 2025-06-05T23:36:13.2640282Z with: 2025-06-05T23:36:13.2640615Z directory: /home/ec2-user/actions-runner/_work/executorch/executorch/ 2025-06-05T23:36:13.2641153Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-05T23:36:13.2641566Z env: 2025-06-05T23:36:13.2641836Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:36:13.2642204Z REPOSITORY: pytorch/executorch 2025-06-05T23:36:13.2642481Z PR_NUMBER: 2025-06-05T23:36:13.2650022Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:36:13.2658001Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:36:13.2658595Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:36:13.2659124Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:36:13.2659554Z ##[endgroup] 2025-06-05T23:36:13.2683398Z ##[group]Run docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2025-06-05T23:36:13.2684102Z docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2025-06-05T23:36:13.2711462Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:36:13.2711839Z env: 2025-06-05T23:36:13.2712120Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:36:13.2712487Z REPOSITORY: pytorch/executorch 2025-06-05T23:36:13.2712762Z PR_NUMBER: 2025-06-05T23:36:13.2720429Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:36:13.2728404Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:36:13.2728986Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:36:13.2729531Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:36:13.2730038Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-05T23:36:13.2730582Z DIRECTORY: /home/ec2-user/actions-runner/_work/executorch/executorch/ 2025-06-05T23:36:13.2730985Z ##[endgroup] 2025-06-05T23:36:13.2948605Z Unable to find image '308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest' locally 2025-06-05T23:36:13.5724136Z latest: Pulling from tool/alpine 2025-06-05T23:36:13.5724478Z 540db60ca938: Pulling fs layer 2025-06-05T23:36:13.6604314Z 540db60ca938: Download complete 2025-06-05T23:36:13.7549717Z 540db60ca938: Pull complete 2025-06-05T23:36:13.7675766Z Digest: sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2025-06-05T23:36:13.7727637Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2025-06-05T23:36:18.3883375Z Prepare all required actions 2025-06-05T23:36:18.3908963Z ##[group]Run ./test-infra/.github/actions/chown-directory 2025-06-05T23:36:18.3909310Z with: 2025-06-05T23:36:18.3909596Z directory: /home/ec2-user/actions-runner/_work/_temp 2025-06-05T23:36:18.3910066Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-05T23:36:18.3910573Z env: 2025-06-05T23:36:18.3910834Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:36:18.3911217Z REPOSITORY: pytorch/executorch 2025-06-05T23:36:18.3911481Z PR_NUMBER: 2025-06-05T23:36:18.3919064Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:36:18.3927032Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:36:18.3927617Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:36:18.3928147Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:36:18.3928528Z ##[endgroup] 2025-06-05T23:36:18.3969820Z ##[group]Run docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2025-06-05T23:36:18.3970513Z docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2025-06-05T23:36:18.3978338Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:36:18.3978713Z env: 2025-06-05T23:36:18.3978984Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:36:18.3979365Z REPOSITORY: pytorch/executorch 2025-06-05T23:36:18.3979639Z PR_NUMBER: 2025-06-05T23:36:18.3987455Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:36:18.3995411Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:36:18.3995998Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:36:18.3996527Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:36:18.3997040Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-05T23:36:18.3997523Z DIRECTORY: /home/ec2-user/actions-runner/_work/_temp 2025-06-05T23:36:18.3997852Z ##[endgroup] 2025-06-05T23:36:19.3472485Z ##[group]Run # Only do these steps if we actually want to upload an artifact 2025-06-05T23:36:19.3473082Z # Only do these steps if we actually want to upload an artifact 2025-06-05T23:36:19.3473521Z if [[ -n "${UPLOAD_ARTIFACT_NAME}" ]]; then 2025-06-05T23:36:19.3474057Z  # If the default execution path is followed then we should get a wheel in the dist/ folder 2025-06-05T23:36:19.3474744Z  # attempt to just grab whatever is in there and scoop it all up 2025-06-05T23:36:19.3475233Z  if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then 2025-06-05T23:36:19.3475655Z  mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/" 2025-06-05T23:36:19.3475970Z  fi 2025-06-05T23:36:19.3476242Z  if [[ -d "artifacts-to-be-uploaded" ]]; then 2025-06-05T23:36:19.3476687Z  mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/" 2025-06-05T23:36:19.3477065Z  fi 2025-06-05T23:36:19.3477296Z fi 2025-06-05T23:36:19.3477499Z  2025-06-05T23:36:19.3477706Z upload_docs=0 2025-06-05T23:36:19.3478083Z # Check if there are files in the documentation folder to upload, note that 2025-06-05T23:36:19.3478538Z # empty folders do not count 2025-06-05T23:36:19.3478968Z if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 -type f | read -r; then 2025-06-05T23:36:19.3479560Z  # TODO: Add a check here to test if on ec2 because if we're not on ec2 then this 2025-06-05T23:36:19.3480035Z  # upload will probably not work correctly 2025-06-05T23:36:19.3480373Z  upload_docs=1 2025-06-05T23:36:19.3480614Z fi 2025-06-05T23:36:19.3480904Z echo "upload-docs=${upload_docs}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:36:19.3486499Z shell: /usr/bin/bash -e {0} 2025-06-05T23:36:19.3486750Z env: 2025-06-05T23:36:19.3487034Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:36:19.3487412Z REPOSITORY: pytorch/executorch 2025-06-05T23:36:19.3487689Z PR_NUMBER: 2025-06-05T23:36:19.3495202Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:36:19.3503250Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:36:19.3503832Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:36:19.3504376Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:36:19.3504768Z UPLOAD_ARTIFACT_NAME: android-apps 2025-06-05T23:36:19.3505097Z ##[endgroup] 2025-06-05T23:36:19.3626443Z renamed 'artifacts-to-be-uploaded/executorch.aar' -> '/home/ec2-user/actions-runner/_work/_temp/artifacts/executorch.aar' 2025-06-05T23:36:19.3627535Z renamed 'artifacts-to-be-uploaded/fp32-xnnpack-custom' -> '/home/ec2-user/actions-runner/_work/_temp/artifacts/fp32-xnnpack-custom' 2025-06-05T23:36:19.3628562Z renamed 'artifacts-to-be-uploaded/library_test_dir' -> '/home/ec2-user/actions-runner/_work/_temp/artifacts/library_test_dir' 2025-06-05T23:36:19.3629460Z renamed 'artifacts-to-be-uploaded/llm_demo' -> '/home/ec2-user/actions-runner/_work/_temp/artifacts/llm_demo' 2025-06-05T23:36:19.3691131Z ##[group]Run seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a 2025-06-05T23:36:19.3691602Z with: 2025-06-05T23:36:19.3691810Z retention-days: 14 2025-06-05T23:36:19.3692043Z s3-bucket: gha-artifacts 2025-06-05T23:36:19.3692359Z s3-prefix: pytorch/executorch/15475023378/artifacts 2025-06-05T23:36:19.3692772Z path: /home/ec2-user/actions-runner/_work/_temp/artifacts/ 2025-06-05T23:36:19.3693139Z name: artifact 2025-06-05T23:36:19.3693357Z if-no-files-found: warn 2025-06-05T23:36:19.3693611Z region: us-east-1 2025-06-05T23:36:19.3693822Z env: 2025-06-05T23:36:19.3694088Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:36:19.3694463Z REPOSITORY: pytorch/executorch 2025-06-05T23:36:19.3694723Z PR_NUMBER: 2025-06-05T23:36:19.3702237Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:36:19.3710300Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:36:19.3710879Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:36:19.3711406Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:36:19.3711791Z ##[endgroup] 2025-06-05T23:36:19.7280853Z NOTE: s3-prefix specified, ignoring name parameter 2025-06-05T23:36:19.7281663Z With the provided path, there will be 5 files uploaded 2025-06-05T23:36:19.7282528Z Uploading to s3 prefix: pytorch/executorch/15475023378/artifacts 2025-06-05T23:36:19.8785346Z Starting upload of executorch.aar 2025-06-05T23:36:20.1870875Z Finished upload of executorch.aar 2025-06-05T23:36:20.1872315Z Starting upload of fp32-xnnpack-custom/model.zip 2025-06-05T23:36:21.6317092Z Finished upload of fp32-xnnpack-custom/model.zip 2025-06-05T23:36:21.6322302Z Starting upload of library_test_dir/executorch_android-debug-androidTest.apk 2025-06-05T23:36:22.7103285Z Finished upload of library_test_dir/executorch_android-debug-androidTest.apk 2025-06-05T23:36:22.7108932Z Starting upload of llm_demo/app-debug-androidTest.apk 2025-06-05T23:36:22.8103748Z Finished upload of llm_demo/app-debug-androidTest.apk 2025-06-05T23:36:22.8105385Z Starting upload of llm_demo/app-debug.apk 2025-06-05T23:36:23.3219968Z Finished upload of llm_demo/app-debug.apk 2025-06-05T23:36:23.3397011Z Prepare all required actions 2025-06-05T23:36:23.3439418Z ##[group]Run ./test-infra/.github/actions/teardown-linux 2025-06-05T23:36:23.3439758Z with: 2025-06-05T23:36:23.3439953Z env: 2025-06-05T23:36:23.3440211Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:36:23.3440601Z REPOSITORY: pytorch/executorch 2025-06-05T23:36:23.3440860Z PR_NUMBER: 2025-06-05T23:36:23.3448567Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:36:23.3456570Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:36:23.3457137Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:36:23.3457680Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:36:23.3458047Z ##[endgroup] 2025-06-05T23:36:23.3482474Z ##[group]Run set -eou pipefail 2025-06-05T23:36:23.3482797Z set -eou pipefail 2025-06-05T23:36:23.3483054Z  2025-06-05T23:36:23.3483399Z echo "Holding runner for 2 hours until all ssh sessions have logged out" 2025-06-05T23:36:23.3483856Z for _ in $(seq 1440); do 2025-06-05T23:36:23.3484173Z  # Break if no ssh session exists anymore 2025-06-05T23:36:23.3484513Z  if [ "$(who)" = "" ]; then 2025-06-05T23:36:23.3484786Z  break 2025-06-05T23:36:23.3485005Z  fi 2025-06-05T23:36:23.3485206Z  echo "." 2025-06-05T23:36:23.3485438Z  sleep 5 2025-06-05T23:36:23.3485747Z done 2025-06-05T23:36:23.3491369Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:36:23.3491726Z env: 2025-06-05T23:36:23.3492014Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:36:23.3492396Z REPOSITORY: pytorch/executorch 2025-06-05T23:36:23.3492661Z PR_NUMBER: 2025-06-05T23:36:23.3500292Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:36:23.3508410Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:36:23.3508982Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:36:23.3509525Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:36:23.3509908Z ##[endgroup] 2025-06-05T23:36:23.3533404Z Holding runner for 2 hours until all ssh sessions have logged out 2025-06-05T23:36:23.3619072Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:36:23.3619635Z # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:36:23.3620049Z # shellcheck disable=SC2046 2025-06-05T23:36:23.3620378Z docker stop $(docker ps -q) || true 2025-06-05T23:36:23.3620713Z # Prune all of the docker images 2025-06-05T23:36:23.3621020Z docker system prune -af 2025-06-05T23:36:23.3626271Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:36:23.3626628Z env: 2025-06-05T23:36:23.3626910Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:36:23.3627275Z REPOSITORY: pytorch/executorch 2025-06-05T23:36:23.3627550Z PR_NUMBER: 2025-06-05T23:36:23.3635183Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:36:23.3643144Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:36:23.3643715Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:36:23.3644260Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:36:23.3644628Z ##[endgroup] 2025-06-05T23:36:34.0280438Z 451a3abfb1b7 2025-06-05T23:36:35.7561290Z Deleted Containers: 2025-06-05T23:36:35.7561776Z 451a3abfb1b7b290fdf79d3aa56d51a045e03ba84d23d0fbc8d6c4ca0017446c 2025-06-05T23:36:35.7562139Z 2025-06-05T23:36:42.4543711Z Deleted Images: 2025-06-05T23:36:42.4545035Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:36:42.4547022Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12-android@sha256:883bc5ac8f23ea7b8d68f6f51a24e9141cd2c7421ebed61e61ec481d0814f84e 2025-06-05T23:36:42.4548096Z deleted: sha256:73f1d8946919d6b6f686269f008b399c96e920ba0b7da809fc5037c91fbf376c 2025-06-05T23:36:42.4548747Z deleted: sha256:2a9866afaf2313dbb6cd9fdbc59e62f2d54f5e58fbf0d49111cdb6be36cedc51 2025-06-05T23:36:42.4549374Z deleted: sha256:76e35f69f60d1dc215c6188473e31396821aa82a115c18208906c4090cbd99f0 2025-06-05T23:36:42.4550029Z deleted: sha256:b8d1a75de835bce45eb7afeac38f78f08c36e76141b20708bebd207b05bc002d 2025-06-05T23:36:42.4550670Z deleted: sha256:0f4c6d443f390505f0880949d0fa3a817e36873d3eee022113c2dd65ebe46116 2025-06-05T23:36:42.4551285Z deleted: sha256:862017ee2a54d9072e48df3e7df9d46209e74456a3a4fff71eb0aa8d9b34ec1b 2025-06-05T23:36:42.4551933Z deleted: sha256:ab6ddb95f24a7f3d0e0b5808b8b98fa9baf2cf96f6e05c21c42b095c48725ebc 2025-06-05T23:36:42.4552573Z deleted: sha256:d010ee814308128fad263b83adcced84df02a7c88a18019425ee5adc4702d612 2025-06-05T23:36:42.4553196Z deleted: sha256:025696f4a86190488b03d3800032118be06b6265fb7793265c8302a87aa70adf 2025-06-05T23:36:42.4553791Z deleted: sha256:4eb28823f3329c718f55114918c33978f5f5220615f16e7b7eaaf03d3208a73f 2025-06-05T23:36:42.4554422Z deleted: sha256:62a7dda2e8459460a3d9f63caf9bbfe9ef485c7829b180b3567223a7bf21fec9 2025-06-05T23:36:42.4555070Z deleted: sha256:df2cee503d6c0937c54d57de357b986cb0d8cb7ecc25a502b17a4bbeb8b9c655 2025-06-05T23:36:42.4555701Z deleted: sha256:55059ef3e6606e3ae92958e58d5466c98f66b29b2eea9ef50a5c0a72908d7a56 2025-06-05T23:36:42.4556340Z deleted: sha256:492f9b7d74bb8a0733244e6ac50bf6ef4a693ecf13aff2bea1e1e8dfe7c7a759 2025-06-05T23:36:42.4556973Z deleted: sha256:fbf20538713a07fe162ae739e6d59ffd20440ec0ab3806c6be1cd422c7e44667 2025-06-05T23:36:42.4557736Z deleted: sha256:25dfdb39278fb74c1784e5f8b41a79332faa3b2e2cde88b2d89d9130bf692068 2025-06-05T23:36:42.4558361Z deleted: sha256:711d170fa6003075fb4c6d81c11e0ab6a04062e47c551373f63ca655c98cbcfb 2025-06-05T23:36:42.4559008Z deleted: sha256:9245f6ba49c89b5ca47c29b081a27dc693f4b93d56b5bf8cd2c5646029426a05 2025-06-05T23:36:42.4559641Z deleted: sha256:9e064716f086077f3a384e0755164ddf47ba056bbe368d672a3e319886052d26 2025-06-05T23:36:42.4560263Z deleted: sha256:7f3da256583091052c148caa86d98e78faecf9d08c333781db2e5edca229b2cc 2025-06-05T23:36:42.4560896Z deleted: sha256:59c87855698f96c1f033ac38657f85b80e83106af896aaacee3b4b6af7b35f2a 2025-06-05T23:36:42.4561635Z deleted: sha256:7de0c3027949dd56b2ea02e3270c3ea5a1d916a8baa47339ebc28b6ab8ae6052 2025-06-05T23:36:42.4562279Z deleted: sha256:7c950106eec407f97bac134b5b580bf07f2bcc495f4f70c16e52454c10c6e4be 2025-06-05T23:36:42.4562921Z deleted: sha256:97d935373da09cee2361cafc48cf1ee4cedb496647d603a7d7bb3dc06f70771e 2025-06-05T23:36:42.4563546Z deleted: sha256:c4a5b4831fc398983b94e9aecf825e52609184980f5ac0ef40c364fab4eaa4a5 2025-06-05T23:36:42.4564182Z deleted: sha256:fa298be20b861b70e52532ea7f123062e5db5f59561fbf3387c96ac4854ac34b 2025-06-05T23:36:42.4564800Z deleted: sha256:1bca6b998f8b492df62b41693b086021945ca17fc265548d532525ae738e8e6b 2025-06-05T23:36:42.4566062Z deleted: sha256:ad97f2e10d51c5ab02e7fc0d946e642f3b83e58dd4215718e9ae4de352dfc148 2025-06-05T23:36:42.4566703Z deleted: sha256:bab607d1c78e7dce325e70b0f6be3b0aee398d2523394b2bd974e47ce84a9a99 2025-06-05T23:36:42.4567335Z deleted: sha256:6e9274df3f3354c5271a8411966e4a8940843ae2433d65182dcc7893104ebab9 2025-06-05T23:36:42.4567976Z deleted: sha256:8c754a66976ebd6078d3846ef8eecb74f0e44eaccfdf6ea1a2098b7a84e44f1f 2025-06-05T23:36:42.4568608Z deleted: sha256:a892fda6d98e33e367d1aa0483d94c296ab2a4c44f724fa16ebef38faeb72fab 2025-06-05T23:36:42.4569248Z deleted: sha256:2845d39d1ee010af6c144adbe3b7184296fab243212040dc7e491c76b630f207 2025-06-05T23:36:42.4569877Z deleted: sha256:e2b2edfa525ebe8045a9db193c32ec1d1a3775897f81d327dfa9c9f72e198a5c 2025-06-05T23:36:42.4570525Z deleted: sha256:d441a3b96bc09d5bf5273b66f4fd1dc8e17487d6f060a4063bfa5b0728b1edbb 2025-06-05T23:36:42.4571207Z deleted: sha256:bb80166d4410f46deb56858f88f277bfc87b8c6f912d802aa80ac611299bc1d9 2025-06-05T23:36:42.4571905Z deleted: sha256:f862e1968e4b4c3c3af141e37d2ec22b19ec0fd50d6a8aaf683de6729e296226 2025-06-05T23:36:42.4572518Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2025-06-05T23:36:42.4573366Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2025-06-05T23:36:42.4574258Z deleted: sha256:6dbb9cc54074106d46d4ccb330f2a40a682d49dda5f4844962b7dce9fe44aaec 2025-06-05T23:36:42.4574899Z deleted: sha256:b2d5eeeaba3a22b9b8aa97261957974a6bd65274ebd43e1d81d0a7b8b752b116 2025-06-05T23:36:42.4575296Z 2025-06-05T23:36:42.4648774Z Total reclaimed space: 21.38GB 2025-06-05T23:36:42.4695414Z ##[group]Run set +e 2025-06-05T23:36:42.4695700Z set +e 2025-06-05T23:36:42.4695948Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-06-05T23:36:42.4696352Z  sudo rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-06-05T23:36:42.4696708Z else 2025-06-05T23:36:42.4696980Z  rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-06-05T23:36:42.4697306Z fi 2025-06-05T23:36:42.4697513Z set -e 2025-06-05T23:36:42.4702986Z shell: /usr/bin/bash -e {0} 2025-06-05T23:36:42.4703248Z env: 2025-06-05T23:36:42.4703520Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12-android 2025-06-05T23:36:42.4703900Z REPOSITORY: pytorch/executorch 2025-06-05T23:36:42.4704163Z PR_NUMBER: 2025-06-05T23:36:42.4711956Z SCRIPT: set -eux # Use sccache for NDK compiler as well export CMAKE_CXX_COMPILER_LAUNCHER=sccache export CMAKE_C_COMPILER_LAUNCHER=sccache # The generic Linux job chooses to use base env, not the one setup by the image CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") conda activate "${CONDA_ENV}" PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool buck2 export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded mkdir -p ${ARTIFACTS_DIR_NAME}/ # Build LLM Demo for Android export BUILD_AAR_DIR=aar-out mkdir -p $BUILD_AAR_DIR bash scripts/build_android_library.sh cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir bash extension/android/executorch_android/android_test_setup.sh (cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest) cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir" mkdir -p ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom bash examples/models/llama/install_requirements.sh bash ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable -upload ${ARTIFACTS_DIR_NAME}/fp32-xnnpack-custom mkdir -p examples/demo-apps/android/LlamaDemo/app/libs cp aar-out/executorch.aar examples/demo-apps/android/LlamaDemo/app/libs pushd examples/demo-apps/android/LlamaDemo ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew build assembleAndroidTest popd DEMO_APP_DIR="${ARTIFACTS_DIR_NAME}/llm_demo" # The app directory is named using its build flavor as a suffix. mkdir -p "${DEMO_APP_DIR}" # Collect the app and its test suite cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/debug/*.apk "${DEMO_APP_DIR}" cp examples/demo-apps/android/LlamaDemo/app/build/outputs/apk/androidTest/debug/*.apk "${DEMO_APP_DIR}" 2025-06-05T23:36:42.4719997Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:36:42.4720581Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:36:42.4721111Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:36:42.4721498Z NO_SUDO: false 2025-06-05T23:36:42.4721707Z ##[endgroup] 2025-06-05T23:36:44.6673237Z Post job cleanup. 2025-06-05T23:36:44.7700302Z Post job cleanup. 2025-06-05T23:36:44.8663360Z [command]/usr/bin/git version 2025-06-05T23:36:44.8726080Z git version 2.47.1 2025-06-05T23:36:44.8769326Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/f972bae3-0abb-42ab-8263-29f7588fccc8' before making global git config changes 2025-06-05T23:36:44.8770414Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:36:44.8774413Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:36:44.8803625Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:36:44.8839038Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-06-05T23:36:44.9144551Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:36:44.9162399Z http.https://github.com/.extraheader 2025-06-05T23:36:44.9172175Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-06-05T23:36:44.9196095Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-06-05T23:36:44.9496403Z A job completed hook has been configured by the self-hosted runner administrator 2025-06-05T23:36:44.9523079Z ##[group]Run '/home/ec2-user/runner-scripts/after_job.sh' 2025-06-05T23:36:44.9528184Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:36:44.9528550Z ##[endgroup] 2025-06-05T23:36:52.5648299Z Cleaning up orphan processes