2025-12-05T22:21:13.6904897Z Current runner version: '2.330.0' 2025-12-05T22:21:13.6911721Z Runner name: 'i-09fcd4a5295f514d8' 2025-12-05T22:21:13.6912543Z Runner group name: 'default' 2025-12-05T22:21:13.6913397Z Machine name: 'ip-10-0-8-50' 2025-12-05T22:21:13.6916341Z ##[group]GITHUB_TOKEN Permissions 2025-12-05T22:21:13.6919038Z Contents: read 2025-12-05T22:21:13.6919714Z Metadata: read 2025-12-05T22:21:13.6920280Z ##[endgroup] 2025-12-05T22:21:13.6923062Z Secret source: Actions 2025-12-05T22:21:13.6924007Z Prepare workflow directory 2025-12-05T22:21:13.7498289Z Prepare all required actions 2025-12-05T22:21:13.7539708Z Getting action download info 2025-12-05T22:21:14.1247304Z Download action repository 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-12-05T22:21:14.4877276Z Download action repository 'pytorch/pytorch@main' (SHA:86ac754a4d6e166583a360580ecbc24abe22f4e1) 2025-12-05T22:21:27.6981256Z Download action repository 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-12-05T22:21:28.0489655Z Download action repository 'pmeier/pytest-results-action@a2c1430e2bddadbad9f49a6f9b879f062c6b19b1' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2025-12-05T22:21:28.1758857Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-12-05T22:21:28.6978873Z Getting action download info 2025-12-05T22:21:28.8710563Z Download action repository 'aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722' (SHA:ececac1a45f3b08a01d2dd070d28d111c5fe6722) 2025-12-05T22:21:29.1028781Z Download action repository 'aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076' (SHA:062b18b96a7aff071d4dc91bc00c4c1a7945b076) 2025-12-05T22:21:29.3590728Z Uses: pytorch/test-infra/.github/workflows/linux_job_v2.yml@refs/heads/main (7ed3eb80413643799c85a421a3adb45306346d8c) 2025-12-05T22:21:29.3595286Z ##[group] Inputs 2025-12-05T22:21:29.3605479Z script: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:29.3616254Z timeout: 90 2025-12-05T22:21:29.3616492Z runner: linux.2xlarge 2025-12-05T22:21:29.3616749Z upload-artifact: 2025-12-05T22:21:29.3617336Z upload-artifact-to-s3: false 2025-12-05T22:21:29.3617645Z download-artifact: 2025-12-05T22:21:29.3617883Z repository: 2025-12-05T22:21:29.3618124Z fetch-depth: 1 2025-12-05T22:21:29.3618701Z submodules: recursive 2025-12-05T22:21:29.3619048Z ref: 42e32227bd4daaffac1ffadc75a629568b7150d6 2025-12-05T22:21:29.3619435Z test-infra-repository: pytorch/test-infra 2025-12-05T22:21:29.3619783Z test-infra-ref: 2025-12-05T22:21:29.3620045Z use-custom-docker-registry: true 2025-12-05T22:21:29.3620428Z docker-image: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:29.3620823Z docker-build-dir: .ci/docker 2025-12-05T22:21:29.3621105Z gpu-arch-type: cpu 2025-12-05T22:21:29.3621350Z gpu-arch-version: 2025-12-05T22:21:29.3621582Z job-name: linux-job 2025-12-05T22:21:29.3621837Z continue-on-error: false 2025-12-05T22:21:29.3622103Z binary-matrix: 2025-12-05T22:21:29.3622369Z run-with-docker: true 2025-12-05T22:21:29.3622619Z secrets-env: 2025-12-05T22:21:29.3622828Z no-sudo: false 2025-12-05T22:21:29.3623075Z ##[endgroup] 2025-12-05T22:21:29.3623469Z Complete job name: test-arm-cortex-m-size-test (zephyr-preset) / linux-job 2025-12-05T22:21:29.4078515Z A job started hook has been configured by the self-hosted runner administrator 2025-12-05T22:21:29.4189995Z ##[group]Run '/home/ec2-user/runner-scripts/before_job.sh' 2025-12-05T22:21:29.4200176Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:21:29.4200904Z ##[endgroup] 2025-12-05T22:21:30.7923969Z Runner Type: linux.2xlarge 2025-12-05T22:21:30.7924382Z Instance Type: c5.2xlarge 2025-12-05T22:21:30.7924770Z AMI Name: unknown 2025-12-05T22:21:30.7954070Z AMI ID: ami-08982f1c5bf93d976 2025-12-05T22:21:37.0500036Z ##[group]Run set -euxo pipefail 2025-12-05T22:21:37.0500464Z set -euxo pipefail 2025-12-05T22:21:37.0500765Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-12-05T22:21:37.0501162Z  echo "::group::Cleanup with-sudo debug output" 2025-12-05T22:21:37.0501544Z  sudo rm -rfv "${GITHUB_WORKSPACE}" 2025-12-05T22:21:37.0501864Z else 2025-12-05T22:21:37.0502138Z  echo "::group::Cleanup no-sudo debug output" 2025-12-05T22:21:37.0502499Z  rm -rfv "${GITHUB_WORKSPACE}" 2025-12-05T22:21:37.0502801Z fi 2025-12-05T22:21:37.0502996Z  2025-12-05T22:21:37.0503237Z mkdir -p "${GITHUB_WORKSPACE}" 2025-12-05T22:21:37.0503588Z echo "::endgroup::" 2025-12-05T22:21:37.0512502Z shell: /usr/bin/bash -e {0} 2025-12-05T22:21:37.0512787Z env: 2025-12-05T22:21:37.0513081Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:37.0513470Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:37.0513828Z PR_NUMBER: 2025-12-05T22:21:37.0523818Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:37.0534308Z NO_SUDO: false 2025-12-05T22:21:37.0534541Z ##[endgroup] 2025-12-05T22:21:37.0566819Z + [[ false == \f\a\l\s\e ]] 2025-12-05T22:21:37.0582059Z ##[group]Cleanup with-sudo debug output 2025-12-05T22:21:37.0585773Z + echo '::group::Cleanup with-sudo debug output' 2025-12-05T22:21:37.0586300Z + sudo rm -rfv /home/ec2-user/actions-runner/_work/executorch/executorch 2025-12-05T22:21:37.2072947Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch' 2025-12-05T22:21:37.2091368Z + mkdir -p /home/ec2-user/actions-runner/_work/executorch/executorch 2025-12-05T22:21:37.2107106Z + echo ::endgroup:: 2025-12-05T22:21:37.2108196Z ##[endgroup] 2025-12-05T22:21:37.2276826Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-12-05T22:21:37.2277300Z with: 2025-12-05T22:21:37.2277550Z repository: pytorch/test-infra 2025-12-05T22:21:37.2277848Z path: test-infra 2025-12-05T22:21:37.2278094Z submodules: recursive 2025-12-05T22:21:37.2278637Z token: *** 2025-12-05T22:21:37.2278849Z ssh-strict: true 2025-12-05T22:21:37.2279084Z ssh-user: git 2025-12-05T22:21:37.2279313Z persist-credentials: true 2025-12-05T22:21:37.2279610Z clean: true 2025-12-05T22:21:37.2279843Z sparse-checkout-cone-mode: true 2025-12-05T22:21:37.2280143Z fetch-depth: 1 2025-12-05T22:21:37.2280365Z fetch-tags: false 2025-12-05T22:21:37.2280606Z show-progress: true 2025-12-05T22:21:37.2280835Z lfs: false 2025-12-05T22:21:37.2281063Z set-safe-directory: true 2025-12-05T22:21:37.2281327Z env: 2025-12-05T22:21:37.2281596Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:37.2281988Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:37.2282328Z PR_NUMBER: 2025-12-05T22:21:37.2292128Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:37.2302374Z ##[endgroup] 2025-12-05T22:21:37.3525392Z Syncing repository: pytorch/test-infra 2025-12-05T22:21:37.3526252Z ##[group]Getting Git version info 2025-12-05T22:21:37.3526802Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra' 2025-12-05T22:21:37.3527538Z [command]/usr/bin/git version 2025-12-05T22:21:37.3527812Z git version 2.50.1 2025-12-05T22:21:37.3539426Z ##[endgroup] 2025-12-05T22:21:37.3553695Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/c99d5b6d-986e-429e-bd21-a6504151759f' before making global git config changes 2025-12-05T22:21:37.3554890Z Adding repository directory to the temporary git global config as a safe directory 2025-12-05T22:21:37.3559489Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-12-05T22:21:37.3591524Z ##[group]Initializing the repository 2025-12-05T22:21:37.3596568Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-12-05T22:21:37.3629417Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-12-05T22:21:37.3630134Z hint: is subject to change. To configure the initial branch name to use in all 2025-12-05T22:21:37.3630724Z hint: of your new repositories, which will suppress this warning, call: 2025-12-05T22:21:37.3631211Z hint: 2025-12-05T22:21:37.3631716Z hint: git config --global init.defaultBranch 2025-12-05T22:21:37.3632323Z hint: 2025-12-05T22:21:37.3632654Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-12-05T22:21:37.3633254Z hint: 'development'. The just-created branch can be renamed via this command: 2025-12-05T22:21:37.3633708Z hint: 2025-12-05T22:21:37.3633942Z hint: git branch -m 2025-12-05T22:21:37.3634211Z hint: 2025-12-05T22:21:37.3634727Z hint: Disable this message with "git config set advice.defaultBranchName false" 2025-12-05T22:21:37.3635814Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/ 2025-12-05T22:21:37.3640208Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2025-12-05T22:21:37.3666765Z ##[endgroup] 2025-12-05T22:21:37.3667245Z ##[group]Disabling automatic garbage collection 2025-12-05T22:21:37.3672128Z [command]/usr/bin/git config --local gc.auto 0 2025-12-05T22:21:37.3697914Z ##[endgroup] 2025-12-05T22:21:37.3698336Z ##[group]Setting up auth 2025-12-05T22:21:37.3704429Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-12-05T22:21:37.3732984Z [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-12-05T22:21:37.4023944Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-12-05T22:21:37.4050731Z [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-12-05T22:21:37.4321552Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-12-05T22:21:37.4364678Z ##[endgroup] 2025-12-05T22:21:37.4365461Z ##[group]Determining the default branch 2025-12-05T22:21:37.4367463Z Retrieving the default branch name 2025-12-05T22:21:37.7080726Z Default branch 'main' 2025-12-05T22:21:37.7081468Z ##[endgroup] 2025-12-05T22:21:37.7081909Z ##[group]Fetching the repository 2025-12-05T22:21:37.7089199Z [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-12-05T22:21:38.0730728Z From https://github.com/pytorch/test-infra 2025-12-05T22:21:38.0731164Z * [new branch] main -> origin/main 2025-12-05T22:21:38.0754368Z ##[endgroup] 2025-12-05T22:21:38.0754826Z ##[group]Determining the checkout info 2025-12-05T22:21:38.0755278Z ##[endgroup] 2025-12-05T22:21:38.0759044Z [command]/usr/bin/git sparse-checkout disable 2025-12-05T22:21:38.0795820Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-12-05T22:21:38.0824214Z ##[group]Checking out the ref 2025-12-05T22:21:38.0828537Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2025-12-05T22:21:38.2154001Z Switched to a new branch 'main' 2025-12-05T22:21:38.2155056Z branch 'main' set up to track 'origin/main'. 2025-12-05T22:21:38.2162280Z ##[endgroup] 2025-12-05T22:21:38.2162715Z ##[group]Setting up auth for fetching submodules 2025-12-05T22:21:38.2168186Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-12-05T22:21:38.2209460Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-12-05T22:21:38.2241060Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-12-05T22:21:38.2271265Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-12-05T22:21:38.2296711Z ##[endgroup] 2025-12-05T22:21:38.2297385Z ##[group]Fetching submodules 2025-12-05T22:21:38.2301649Z [command]/usr/bin/git submodule sync --recursive 2025-12-05T22:21:38.2581610Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-12-05T22:21:38.2861179Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-12-05T22:21:38.3134464Z ##[endgroup] 2025-12-05T22:21:38.3134917Z ##[group]Persisting credentials for submodules 2025-12-05T22:21:38.3139641Z [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-12-05T22:21:38.3417442Z [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-12-05T22:21:38.3697628Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-12-05T22:21:38.3977705Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-12-05T22:21:38.4251135Z ##[endgroup] 2025-12-05T22:21:38.4286368Z [command]/usr/bin/git log -1 --format=%H 2025-12-05T22:21:38.4309310Z 7ed3eb80413643799c85a421a3adb45306346d8c 2025-12-05T22:21:38.4543632Z Prepare all required actions 2025-12-05T22:21:38.4544374Z Getting action download info 2025-12-05T22:21:38.5640297Z Download action repository 'pytorch/test-infra@main' (SHA:7ed3eb80413643799c85a421a3adb45306346d8c) 2025-12-05T22:21:40.7195621Z Getting action download info 2025-12-05T22:21:40.8047999Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2025-12-05T22:21:41.0024203Z ##[group]Run ./test-infra/.github/actions/setup-linux 2025-12-05T22:21:41.0024571Z env: 2025-12-05T22:21:41.0024853Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:41.0025234Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:41.0025516Z PR_NUMBER: 2025-12-05T22:21:41.0035136Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:41.0044855Z ##[endgroup] 2025-12-05T22:21:41.0135254Z ##[group]Run set -euo pipefail 2025-12-05T22:21:41.0135793Z set -euo pipefail 2025-12-05T22:21:41.0136085Z function get_ec2_metadata() { 2025-12-05T22:21:41.0136451Z  # Pulled from instance metadata endpoint for EC2 2025-12-05T22:21:41.0137108Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-12-05T22:21:41.0137676Z  category=$1 2025-12-05T22:21:41.0138569Z  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-12-05T22:21:41.0139510Z } 2025-12-05T22:21:41.0139917Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-12-05T22:21:41.0140353Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-12-05T22:21:41.0140840Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-12-05T22:21:41.0141254Z echo "system info $(uname -a)" 2025-12-05T22:21:41.0147549Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:21:41.0147917Z env: 2025-12-05T22:21:41.0148202Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:41.0148704Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:41.0148994Z PR_NUMBER: 2025-12-05T22:21:41.0158484Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:41.0168227Z ##[endgroup] 2025-12-05T22:21:41.0301699Z ami-id: ami-08982f1c5bf93d976 2025-12-05T22:21:41.0406317Z instance-id: i-09fcd4a5295f514d8 2025-12-05T22:21:41.0538094Z instance-type: c5.2xlarge 2025-12-05T22:21:41.0549935Z system info Linux ip-10-0-8-50.ec2.internal 6.1.150-174.273.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Sep 9 12:21:26 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux 2025-12-05T22:21:41.0590015Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-12-05T22:21:41.0591009Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-12-05T22:21:41.0597846Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:21:41.0598215Z env: 2025-12-05T22:21:41.0598719Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:41.0599108Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:41.0599396Z PR_NUMBER: 2025-12-05T22:21:41.0608889Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:41.0618977Z ##[endgroup] 2025-12-05T22:21:41.0700288Z ##[group]Run if systemctl is-active --quiet docker; then 2025-12-05T22:21:41.0700779Z if systemctl is-active --quiet docker; then 2025-12-05T22:21:41.0701168Z  echo "Docker daemon is running..."; 2025-12-05T22:21:41.0701479Z else 2025-12-05T22:21:41.0701860Z  echo "Starting docker deamon..." && sudo systemctl start docker; 2025-12-05T22:21:41.0702272Z fi 2025-12-05T22:21:41.0708129Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:21:41.0708625Z env: 2025-12-05T22:21:41.0708913Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:41.0709289Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:41.0709761Z PR_NUMBER: 2025-12-05T22:21:41.0719607Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:41.0729441Z ##[endgroup] 2025-12-05T22:21:41.0809700Z Docker daemon is running... 2025-12-05T22:21:41.0841779Z ##[group]Run AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-12-05T22:21:41.0842466Z AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-12-05T22:21:41.0843149Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2025-12-05T22:21:41.0843848Z retry aws ecr get-login-password --region "$AWS_DEFAULT_REGION" | docker login --username AWS \ 2025-12-05T22:21:41.0844669Z  --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com" 2025-12-05T22:21:41.0850952Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:21:41.0851347Z env: 2025-12-05T22:21:41.0851624Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:41.0852013Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:41.0852288Z PR_NUMBER: 2025-12-05T22:21:41.0862067Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:41.0872115Z AWS_RETRY_MODE: standard 2025-12-05T22:21:41.0872433Z AWS_MAX_ATTEMPTS: 5 2025-12-05T22:21:41.0872693Z AWS_DEFAULT_REGION: us-east-1 2025-12-05T22:21:41.0872958Z ##[endgroup] 2025-12-05T22:21:42.3469901Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-12-05T22:21:42.3470660Z Configure a credential helper to remove this warning. See 2025-12-05T22:21:42.3471530Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-12-05T22:21:42.3472267Z 2025-12-05T22:21:42.3472449Z Login Succeeded 2025-12-05T22:21:42.3530294Z ##[group]Run env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-12-05T22:21:42.3531344Z env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-12-05T22:21:42.3532224Z env | grep '^CI' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-12-05T22:21:42.3533094Z env | grep '^RUNNER' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-12-05T22:21:42.3543750Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:21:42.3544400Z env: 2025-12-05T22:21:42.3544877Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:42.3545524Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:42.3545990Z PR_NUMBER: 2025-12-05T22:21:42.3563904Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:42.3581954Z ##[endgroup] 2025-12-05T22:21:42.3690136Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-12-05T22:21:42.3690655Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-12-05T22:21:42.3691072Z sudo rm -rf "${RUNNER_ARTIFACT_DIR}" 2025-12-05T22:21:42.3691455Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2025-12-05T22:21:42.3691922Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2025-12-05T22:21:42.3692371Z  2025-12-05T22:21:42.3692669Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2025-12-05T22:21:42.3693110Z sudo rm -rf "${RUNNER_TEST_RESULTS_DIR}" 2025-12-05T22:21:42.3693480Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2025-12-05T22:21:42.3693975Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2025-12-05T22:21:42.3694432Z  2025-12-05T22:21:42.3694693Z RUNNER_DOCS_DIR="${RUNNER_TEMP}/docs" 2025-12-05T22:21:42.3695048Z sudo rm -rf "${RUNNER_DOCS_DIR}" 2025-12-05T22:21:42.3695372Z mkdir -p "${RUNNER_DOCS_DIR}" 2025-12-05T22:21:42.3695783Z echo "RUNNER_DOCS_DIR=${RUNNER_DOCS_DIR}" >> "${GITHUB_ENV}" 2025-12-05T22:21:42.3701884Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:21:42.3702287Z env: 2025-12-05T22:21:42.3702579Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:42.3702974Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:42.3703248Z PR_NUMBER: 2025-12-05T22:21:42.3713079Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:42.3723163Z ##[endgroup] 2025-12-05T22:21:42.8755418Z ##[group]Run needs=0 2025-12-05T22:21:42.8755785Z needs=0 2025-12-05T22:21:42.8756271Z if lspci -v | grep -e 'controller.*NVIDIA' >/dev/null 2>/dev/null; then 2025-12-05T22:21:42.8756861Z  needs=1 2025-12-05T22:21:42.8757156Z fi 2025-12-05T22:21:42.8757478Z echo "does=${needs}" >> $GITHUB_OUTPUT 2025-12-05T22:21:42.8765098Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:21:42.8765595Z env: 2025-12-05T22:21:42.8765975Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:42.8766480Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:42.8766854Z PR_NUMBER: 2025-12-05T22:21:42.8779892Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:42.8793598Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:21:42.8794428Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:21:42.8795172Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:21:42.8795700Z ##[endgroup] 2025-12-05T22:21:42.9057959Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-12-05T22:21:42.9058579Z # ignore expansion of "docker ps -q" since it could be empty 2025-12-05T22:21:42.9059026Z # shellcheck disable=SC2046 2025-12-05T22:21:42.9059358Z docker stop $(docker ps -q) || true 2025-12-05T22:21:42.9059801Z # Prune all of the docker images 2025-12-05T22:21:42.9060148Z docker system prune -af 2025-12-05T22:21:42.9066697Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:21:42.9067069Z env: 2025-12-05T22:21:42.9067361Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:42.9067739Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:42.9068041Z PR_NUMBER: 2025-12-05T22:21:42.9077701Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:42.9087843Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:21:42.9088557Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:21:42.9089117Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:21:42.9089525Z ##[endgroup] 2025-12-05T22:21:42.9327959Z "docker stop" requires at least 1 argument. 2025-12-05T22:21:42.9328677Z See 'docker stop --help'. 2025-12-05T22:21:42.9329120Z 2025-12-05T22:21:42.9329506Z Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...] 2025-12-05T22:21:42.9329800Z 2025-12-05T22:21:42.9329910Z Stop one or more running containers 2025-12-05T22:21:42.9748803Z Total reclaimed space: 0B 2025-12-05T22:21:42.9829505Z ##[group]Run ./test-infra/.github/actions/setup-ssh 2025-12-05T22:21:42.9829906Z with: 2025-12-05T22:21:42.9830635Z github-secret: *** 2025-12-05T22:21:42.9831358Z instructions: All testing is done inside the container, to start an interactive session run: docker exec -it $(docker container ps --format '{{.ID}}') bash 2025-12-05T22:21:42.9832142Z activate-with-label: false 2025-12-05T22:21:42.9832406Z label: with-ssh 2025-12-05T22:21:42.9832650Z remove-existing-keys: true 2025-12-05T22:21:42.9832915Z fail-silently: true 2025-12-05T22:21:42.9833150Z env: 2025-12-05T22:21:42.9833413Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:42.9833807Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:42.9834087Z PR_NUMBER: 2025-12-05T22:21:42.9843620Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:42.9853691Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:21:42.9854302Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:21:42.9854855Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:21:42.9855249Z ##[endgroup] 2025-12-05T22:21:43.0978210Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-12-05T22:21:43.0979885Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-12-05T22:21:43.1127897Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-12-05T22:21:43.1128334Z with: 2025-12-05T22:21:43.1128564Z repository: pytorch/executorch 2025-12-05T22:21:43.1128874Z ref: 42e32227bd4daaffac1ffadc75a629568b7150d6 2025-12-05T22:21:43.1129219Z path: pytorch/executorch 2025-12-05T22:21:43.1129465Z fetch-depth: 1 2025-12-05T22:21:43.1129692Z submodules: recursive 2025-12-05T22:21:43.1130137Z token: *** 2025-12-05T22:21:43.1130340Z ssh-strict: true 2025-12-05T22:21:43.1130564Z ssh-user: git 2025-12-05T22:21:43.1130785Z persist-credentials: true 2025-12-05T22:21:43.1131050Z clean: true 2025-12-05T22:21:43.1131273Z sparse-checkout-cone-mode: true 2025-12-05T22:21:43.1131573Z fetch-tags: false 2025-12-05T22:21:43.1131798Z show-progress: true 2025-12-05T22:21:43.1132035Z lfs: false 2025-12-05T22:21:43.1132256Z set-safe-directory: true 2025-12-05T22:21:43.1132498Z env: 2025-12-05T22:21:43.1132831Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:21:43.1133206Z REPOSITORY: pytorch/executorch 2025-12-05T22:21:43.1133483Z PR_NUMBER: 2025-12-05T22:21:43.1142905Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:21:43.1153044Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:21:43.1153660Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:21:43.1154210Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:21:43.1154614Z ##[endgroup] 2025-12-05T22:21:43.2169343Z Syncing repository: pytorch/executorch 2025-12-05T22:21:43.2178505Z ##[group]Getting Git version info 2025-12-05T22:21:43.2179111Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch' 2025-12-05T22:21:43.2205772Z [command]/usr/bin/git version 2025-12-05T22:21:43.2242947Z git version 2.50.1 2025-12-05T22:21:43.2268408Z ##[endgroup] 2025-12-05T22:21:43.2281579Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/44754e81-918a-49ce-90af-b8275f3bc287' before making global git config changes 2025-12-05T22:21:43.2282575Z Adding repository directory to the temporary git global config as a safe directory 2025-12-05T22:21:43.2287275Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-12-05T22:21:43.2316581Z ##[group]Initializing the repository 2025-12-05T22:21:43.2322247Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-12-05T22:21:43.2354611Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-12-05T22:21:43.2355699Z hint: is subject to change. To configure the initial branch name to use in all 2025-12-05T22:21:43.2356630Z hint: of your new repositories, which will suppress this warning, call: 2025-12-05T22:21:43.2357351Z hint: 2025-12-05T22:21:43.2357816Z hint: git config --global init.defaultBranch 2025-12-05T22:21:43.2358411Z hint: 2025-12-05T22:21:43.2358969Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-12-05T22:21:43.2359879Z hint: 'development'. The just-created branch can be renamed via this command: 2025-12-05T22:21:43.2360589Z hint: 2025-12-05T22:21:43.2360934Z hint: git branch -m 2025-12-05T22:21:43.2361298Z hint: 2025-12-05T22:21:43.2361862Z hint: Disable this message with "git config set advice.defaultBranchName false" 2025-12-05T22:21:43.2363285Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/ 2025-12-05T22:21:43.2368791Z [command]/usr/bin/git remote add origin https://github.com/pytorch/executorch 2025-12-05T22:21:43.2397332Z ##[endgroup] 2025-12-05T22:21:43.2398082Z ##[group]Disabling automatic garbage collection 2025-12-05T22:21:43.2403409Z [command]/usr/bin/git config --local gc.auto 0 2025-12-05T22:21:43.2431113Z ##[endgroup] 2025-12-05T22:21:43.2431749Z ##[group]Setting up auth 2025-12-05T22:21:43.2438860Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-12-05T22:21:43.2468152Z [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-12-05T22:21:43.2742933Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-12-05T22:21:43.2771303Z [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-12-05T22:21:43.3049760Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-12-05T22:21:43.3093396Z ##[endgroup] 2025-12-05T22:21:43.3093839Z ##[group]Fetching the repository 2025-12-05T22:21:43.3101592Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin 42e32227bd4daaffac1ffadc75a629568b7150d6 2025-12-05T22:21:44.7250149Z From https://github.com/pytorch/executorch 2025-12-05T22:21:44.7250672Z * branch 42e32227bd4daaffac1ffadc75a629568b7150d6 -> FETCH_HEAD 2025-12-05T22:21:44.7274243Z ##[endgroup] 2025-12-05T22:21:44.7274922Z ##[group]Determining the checkout info 2025-12-05T22:21:44.7276687Z ##[endgroup] 2025-12-05T22:21:44.7281138Z [command]/usr/bin/git sparse-checkout disable 2025-12-05T22:21:44.7315564Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-12-05T22:21:44.7343505Z ##[group]Checking out the ref 2025-12-05T22:21:44.7347356Z [command]/usr/bin/git checkout --progress --force 42e32227bd4daaffac1ffadc75a629568b7150d6 2025-12-05T22:21:45.3628590Z Note: switching to '42e32227bd4daaffac1ffadc75a629568b7150d6'. 2025-12-05T22:21:45.3629167Z 2025-12-05T22:21:45.3629507Z You are in 'detached HEAD' state. You can look around, make experimental 2025-12-05T22:21:45.3630414Z changes and commit them, and you can discard any commits you make in this 2025-12-05T22:21:45.3631479Z state without impacting any branches by switching back to a branch. 2025-12-05T22:21:45.3632127Z 2025-12-05T22:21:45.3632529Z If you want to create a new branch to retain commits you create, you may 2025-12-05T22:21:45.3633499Z do so (now or later) by using -c with the switch command. Example: 2025-12-05T22:21:45.3634050Z 2025-12-05T22:21:45.3634212Z git switch -c 2025-12-05T22:21:45.3634546Z 2025-12-05T22:21:45.3634772Z Or undo this operation with: 2025-12-05T22:21:45.3635153Z 2025-12-05T22:21:45.3635319Z git switch - 2025-12-05T22:21:45.3635562Z 2025-12-05T22:21:45.3636033Z Turn off this advice by setting config variable advice.detachedHead to false 2025-12-05T22:21:45.3636724Z 2025-12-05T22:21:45.3637008Z HEAD is now at 42e3222 Re-land cve security fix (#16103) 2025-12-05T22:21:45.3669068Z ##[endgroup] 2025-12-05T22:21:45.3669492Z ##[group]Setting up auth for fetching submodules 2025-12-05T22:21:45.3674882Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-12-05T22:21:45.3718495Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-12-05T22:21:45.3745589Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-12-05T22:21:45.3776326Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-12-05T22:21:45.3800414Z ##[endgroup] 2025-12-05T22:21:45.3800872Z ##[group]Fetching submodules 2025-12-05T22:21:45.3804490Z [command]/usr/bin/git submodule sync --recursive 2025-12-05T22:21:45.4091311Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-12-05T22:21:45.4373943Z 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-12-05T22:21:45.4596004Z Submodule 'backends/cadence/utils/FACTO' (https://github.com/pytorch-labs/FACTO.git) registered for path 'backends/cadence/utils/FACTO' 2025-12-05T22:21:45.4597431Z Submodule 'backends/vulkan/third-party/Vulkan-Headers' (https://github.com/KhronosGroup/Vulkan-Headers) registered for path 'backends/vulkan/third-party/Vulkan-Headers' 2025-12-05T22:21:45.4601352Z Submodule 'backends/vulkan/third-party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-12-05T22:21:45.4616457Z Submodule 'backends/vulkan/third-party/volk' (https://github.com/zeux/volk) registered for path 'backends/vulkan/third-party/volk' 2025-12-05T22:21:45.4620287Z Submodule 'backends/xnnpack/third-party/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'backends/xnnpack/third-party/FP16' 2025-12-05T22:21:45.4624283Z Submodule 'backends/xnnpack/third-party/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'backends/xnnpack/third-party/FXdiv' 2025-12-05T22:21:45.4639622Z Submodule 'backends/xnnpack/third-party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'backends/xnnpack/third-party/XNNPACK' 2025-12-05T22:21:45.4642981Z Submodule 'backends/xnnpack/third-party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'backends/xnnpack/third-party/cpuinfo' 2025-12-05T22:21:45.4646871Z Submodule 'backends/xnnpack/third-party/pthreadpool' (https://github.com/google/pthreadpool.git) registered for path 'backends/xnnpack/third-party/pthreadpool' 2025-12-05T22:21:45.4662078Z Submodule 'extension/llm/tokenizers' (https://github.com/meta-pytorch/tokenizers.git) registered for path 'extension/llm/tokenizers' 2025-12-05T22:21:45.4666285Z Submodule 'kernels/optimized/third-party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'kernels/optimized/third-party/eigen' 2025-12-05T22:21:45.4670133Z Submodule 'shim' (https://github.com/facebook/buck2-shims-meta) registered for path 'shim' 2025-12-05T22:21:45.4685949Z Submodule 'third-party/ao' (https://github.com/pytorch/ao.git) registered for path 'third-party/ao' 2025-12-05T22:21:45.4690023Z Submodule 'third-party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third-party/flatbuffers' 2025-12-05T22:21:45.4694801Z Submodule 'third-party/flatcc' (https://github.com/dvidelabs/flatcc.git) registered for path 'third-party/flatcc' 2025-12-05T22:21:45.4710061Z Submodule 'third-party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third-party/gflags' 2025-12-05T22:21:45.4716012Z Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/googletest' 2025-12-05T22:21:45.4720885Z Submodule 'third-party/ios-cmake' (https://github.com/leetal/ios-cmake) registered for path 'third-party/ios-cmake' 2025-12-05T22:21:45.4736677Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'third-party/json' 2025-12-05T22:21:45.4741304Z Submodule 'third-party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third-party/pocketfft' 2025-12-05T22:21:45.4746134Z Submodule 'third-party/prelude' (https://github.com/facebook/buck2-prelude.git) registered for path 'third-party/prelude' 2025-12-05T22:21:45.4762063Z Submodule 'third-party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third-party/pybind11' 2025-12-05T22:21:45.4793946Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/ethos-u-core-driver'... 2025-12-05T22:21:46.3927723Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/cadence/utils/FACTO'... 2025-12-05T22:21:46.5519188Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/Vulkan-Headers'... 2025-12-05T22:21:46.9409141Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/VulkanMemoryAllocator'... 2025-12-05T22:21:47.1412086Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/volk'... 2025-12-05T22:21:47.2894050Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FP16'... 2025-12-05T22:21:47.4411250Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FXdiv'... 2025-12-05T22:21:47.5898704Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/XNNPACK'... 2025-12-05T22:21:48.2624992Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/cpuinfo'... 2025-12-05T22:21:48.5512854Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/pthreadpool'... 2025-12-05T22:21:48.7628724Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers'... 2025-12-05T22:21:49.0749262Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/kernels/optimized/third-party/eigen'... 2025-12-05T22:21:49.7639767Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/shim'... 2025-12-05T22:21:49.9383790Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao'... 2025-12-05T22:21:50.3368662Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatbuffers'... 2025-12-05T22:21:50.6074992Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatcc'... 2025-12-05T22:21:50.7732494Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/gflags'... 2025-12-05T22:21:50.9196720Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/googletest'... 2025-12-05T22:21:51.1115972Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ios-cmake'... 2025-12-05T22:21:51.2670044Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/json'... 2025-12-05T22:21:51.6060999Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pocketfft'... 2025-12-05T22:21:51.7655923Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/prelude'... 2025-12-05T22:21:52.1040894Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pybind11'... 2025-12-05T22:21:53.7478032Z From https://git.gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-core-driver 2025-12-05T22:21:53.7478705Z * branch 7bf44c54527e718b99d588ce520cf2f96343adb1 -> FETCH_HEAD 2025-12-05T22:21:53.7597956Z Submodule path 'backends/arm/third-party/ethos-u-core-driver': checked out '7bf44c54527e718b99d588ce520cf2f96343adb1' 2025-12-05T22:21:54.1241751Z From https://github.com/pytorch-labs/FACTO 2025-12-05T22:21:54.1242282Z * branch 1db37fc79d0d59638cbb794fa49d878aafc24461 -> FETCH_HEAD 2025-12-05T22:21:54.1330893Z Submodule path 'backends/cadence/utils/FACTO': checked out '1db37fc79d0d59638cbb794fa49d878aafc24461' 2025-12-05T22:21:54.9031860Z From https://github.com/KhronosGroup/Vulkan-Headers 2025-12-05T22:21:54.9032828Z * branch 10739e8e00a7b6f74d22dd0a547f1406ff1f5eb9 -> FETCH_HEAD 2025-12-05T22:21:54.9972171Z Submodule path 'backends/vulkan/third-party/Vulkan-Headers': checked out '10739e8e00a7b6f74d22dd0a547f1406ff1f5eb9' 2025-12-05T22:21:55.5616035Z From https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator 2025-12-05T22:21:55.5616657Z * branch a6bfc237255a6bac1513f7c1ebde6d8aed6b5191 -> FETCH_HEAD 2025-12-05T22:21:55.5959297Z Submodule path 'backends/vulkan/third-party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' 2025-12-05T22:21:55.9002842Z From https://github.com/zeux/volk 2025-12-05T22:21:55.9003314Z * branch 49ba6858c13516019d699d94c31d5814025dd005 -> FETCH_HEAD 2025-12-05T22:21:55.9084599Z Submodule path 'backends/vulkan/third-party/volk': checked out '49ba6858c13516019d699d94c31d5814025dd005' 2025-12-05T22:21:56.2638116Z From https://github.com/Maratyszcza/FP16 2025-12-05T22:21:56.2638627Z * branch 4dfe081cf6bcd15db339cf2680b9281b8451eeb3 -> FETCH_HEAD 2025-12-05T22:21:56.2729664Z Submodule path 'backends/xnnpack/third-party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-12-05T22:21:56.5851897Z From https://github.com/Maratyszcza/FXdiv 2025-12-05T22:21:56.5852390Z * branch b408327ac2a15ec3e43352421954f5b1967701d1 -> FETCH_HEAD 2025-12-05T22:21:56.5912342Z Submodule path 'backends/xnnpack/third-party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-12-05T22:21:57.6327489Z From https://github.com/google/XNNPACK 2025-12-05T22:21:57.6327990Z * branch 3131afead790c5c69a9aa12273dfc40399789ad7 -> FETCH_HEAD 2025-12-05T22:21:58.2069006Z Submodule path 'backends/xnnpack/third-party/XNNPACK': checked out '3131afead790c5c69a9aa12273dfc40399789ad7' 2025-12-05T22:21:58.5433217Z From https://github.com/pytorch/cpuinfo 2025-12-05T22:21:58.5433966Z * branch 8a9210069b5a37dd89ed118a783945502a30a4ae -> FETCH_HEAD 2025-12-05T22:21:58.6318909Z Submodule path 'backends/xnnpack/third-party/cpuinfo': checked out '8a9210069b5a37dd89ed118a783945502a30a4ae' 2025-12-05T22:21:58.9763409Z From https://github.com/google/pthreadpool 2025-12-05T22:21:58.9763932Z * branch c2ba5c50bb58d1397b693740cf75fad836a0d1bf -> FETCH_HEAD 2025-12-05T22:21:58.9862990Z Submodule path 'backends/xnnpack/third-party/pthreadpool': checked out 'c2ba5c50bb58d1397b693740cf75fad836a0d1bf' 2025-12-05T22:21:59.3168243Z From https://github.com/meta-pytorch/tokenizers 2025-12-05T22:21:59.3168759Z * branch 3aada3fe28c945d14d5ec62254eb56ccdf10eb11 -> FETCH_HEAD 2025-12-05T22:21:59.3894998Z Submodule path 'extension/llm/tokenizers': checked out '3aada3fe28c945d14d5ec62254eb56ccdf10eb11' 2025-12-05T22:21:59.3913356Z Submodule 'third-party/abseil-cpp' (https://github.com/abseil/abseil-cpp.git) registered for path 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-12-05T22:21:59.3916017Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'extension/llm/tokenizers/third-party/json' 2025-12-05T22:21:59.3919318Z Submodule 'third-party/pcre2' (https://github.com/PCRE2Project/pcre2.git) registered for path 'extension/llm/tokenizers/third-party/pcre2' 2025-12-05T22:21:59.4241842Z Submodule 'third-party/re2' (https://github.com/google/re2.git) registered for path 'extension/llm/tokenizers/third-party/re2' 2025-12-05T22:21:59.4245160Z Submodule 'third-party/sentencepiece' (https://github.com/google/sentencepiece.git) registered for path 'extension/llm/tokenizers/third-party/sentencepiece' 2025-12-05T22:21:59.4274765Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/abseil-cpp'... 2025-12-05T22:21:59.6934958Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/json'... 2025-12-05T22:21:59.9992618Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2'... 2025-12-05T22:22:00.2815523Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/re2'... 2025-12-05T22:22:00.4642272Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece'... 2025-12-05T22:22:01.5632857Z From https://github.com/abseil/abseil-cpp 2025-12-05T22:22:01.5633378Z * branch 7d96b2e93d9a84530748b68abd2f97595c51ecf4 -> FETCH_HEAD 2025-12-05T22:22:01.6705623Z Submodule path 'extension/llm/tokenizers/third-party/abseil-cpp': checked out '7d96b2e93d9a84530748b68abd2f97595c51ecf4' 2025-12-05T22:22:02.2110756Z From https://github.com/nlohmann/json 2025-12-05T22:22:02.2111257Z * branch e6cafa573aac6ed9227f752a5371c0b3f436307d -> FETCH_HEAD 2025-12-05T22:22:02.3144943Z Submodule path 'extension/llm/tokenizers/third-party/json': checked out 'e6cafa573aac6ed9227f752a5371c0b3f436307d' 2025-12-05T22:22:03.0002502Z From https://github.com/PCRE2Project/pcre2 2025-12-05T22:22:03.0003303Z * branch 2e03e323339ab692640626f02f8d8d6f95bff9c6 -> FETCH_HEAD 2025-12-05T22:22:03.0834778Z Submodule path 'extension/llm/tokenizers/third-party/pcre2': checked out '2e03e323339ab692640626f02f8d8d6f95bff9c6' 2025-12-05T22:22:03.0853246Z Submodule 'deps/sljit' (https://github.com/zherczeg/sljit.git) registered for path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-12-05T22:22:03.0881929Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2/deps/sljit'... 2025-12-05T22:22:03.6276221Z From https://github.com/zherczeg/sljit 2025-12-05T22:22:03.6276735Z * branch 98802d939be3f0ccc2c538d611ec4c728564e8cf -> FETCH_HEAD 2025-12-05T22:22:03.6489738Z Submodule path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit': checked out '98802d939be3f0ccc2c538d611ec4c728564e8cf' 2025-12-05T22:22:04.0113468Z From https://github.com/google/re2 2025-12-05T22:22:04.0113982Z * branch 6dcd83d60f7944926bfd308cc13979fc53dd69ca -> FETCH_HEAD 2025-12-05T22:22:04.0302885Z Submodule path 'extension/llm/tokenizers/third-party/re2': checked out '6dcd83d60f7944926bfd308cc13979fc53dd69ca' 2025-12-05T22:22:05.1850384Z From https://github.com/google/sentencepiece 2025-12-05T22:22:05.1850906Z * branch d8f741853847553169444afc12c00f4bbff3e9ce -> FETCH_HEAD 2025-12-05T22:22:05.3781636Z Submodule path 'extension/llm/tokenizers/third-party/sentencepiece': checked out 'd8f741853847553169444afc12c00f4bbff3e9ce' 2025-12-05T22:22:07.0397922Z From https://gitlab.com/libeigen/eigen 2025-12-05T22:22:07.0398418Z * branch 729443409942a1816ddf74b95224003b83f4925c -> FETCH_HEAD 2025-12-05T22:22:07.2421039Z Submodule path 'kernels/optimized/third-party/eigen': checked out '729443409942a1816ddf74b95224003b83f4925c' 2025-12-05T22:22:07.7565146Z From https://github.com/facebook/buck2-shims-meta 2025-12-05T22:22:07.7565671Z * branch cf6a954aae4bee7b4515e13475878460115027d1 -> FETCH_HEAD 2025-12-05T22:22:07.8052702Z Submodule path 'shim': checked out 'cf6a954aae4bee7b4515e13475878460115027d1' 2025-12-05T22:22:08.3958911Z From https://github.com/pytorch/ao 2025-12-05T22:22:08.3959668Z * branch 01849b2b19cb923cb739a1fc02297ba418ddf715 -> FETCH_HEAD 2025-12-05T22:22:08.5973234Z Submodule path 'third-party/ao': checked out '01849b2b19cb923cb739a1fc02297ba418ddf715' 2025-12-05T22:22:08.5993946Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass) registered for path 'third-party/ao/third_party/cutlass' 2025-12-05T22:22:08.6023850Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao/third_party/cutlass'... 2025-12-05T22:22:10.9403591Z From https://github.com/NVIDIA/cutlass 2025-12-05T22:22:10.9404246Z * branch e51efbfe18fe4f4cbb66ab814c55bf4aa0185491 -> FETCH_HEAD 2025-12-05T22:22:11.5749663Z Submodule path 'third-party/ao/third_party/cutlass': checked out 'e51efbfe18fe4f4cbb66ab814c55bf4aa0185491' 2025-12-05T22:22:12.1466859Z From https://github.com/google/flatbuffers 2025-12-05T22:22:12.1467357Z * branch 595bf0007ab1929570c7671f091313c8fc20644e -> FETCH_HEAD 2025-12-05T22:22:12.2649347Z Submodule path 'third-party/flatbuffers': checked out '595bf0007ab1929570c7671f091313c8fc20644e' 2025-12-05T22:22:12.6248653Z From https://github.com/dvidelabs/flatcc 2025-12-05T22:22:12.6249169Z * branch 896db54787e8b730a6be482c69324751f3f5f117 -> FETCH_HEAD 2025-12-05T22:22:12.6530072Z Submodule path 'third-party/flatcc': checked out '896db54787e8b730a6be482c69324751f3f5f117' 2025-12-05T22:22:12.9832615Z From https://github.com/gflags/gflags 2025-12-05T22:22:12.9833283Z * branch a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd -> FETCH_HEAD 2025-12-05T22:22:12.9933175Z Submodule path 'third-party/gflags': checked out 'a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd' 2025-12-05T22:22:13.4611219Z From https://github.com/google/googletest 2025-12-05T22:22:13.4611728Z * branch e2239ee6043f73722e7aa812a459f54a28552929 -> FETCH_HEAD 2025-12-05T22:22:13.4970871Z Submodule path 'third-party/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-12-05T22:22:13.8241711Z From https://github.com/leetal/ios-cmake 2025-12-05T22:22:13.8242204Z * branch 06465b27698424cf4a04a5ca4904d50a3c966c45 -> FETCH_HEAD 2025-12-05T22:22:13.8319639Z Submodule path 'third-party/ios-cmake': checked out '06465b27698424cf4a04a5ca4904d50a3c966c45' 2025-12-05T22:22:14.2713685Z From https://github.com/nlohmann/json 2025-12-05T22:22:14.2714193Z * branch ac0133ea89a8fd730a9cc9649c5226a9995dc3e1 -> FETCH_HEAD 2025-12-05T22:22:14.3712831Z Submodule path 'third-party/json': checked out 'ac0133ea89a8fd730a9cc9649c5226a9995dc3e1' 2025-12-05T22:22:14.6645437Z From https://github.com/mreineck/pocketfft 2025-12-05T22:22:14.6646166Z * branch 0fa0ef591e38c2758e3184c6c23e497b9f732ffa -> FETCH_HEAD 2025-12-05T22:22:14.6702455Z Submodule path 'third-party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-12-05T22:22:15.3916262Z From https://github.com/facebook/buck2-prelude 2025-12-05T22:22:15.3916764Z * branch 48c249f8c7b99ff501d6e857754760315072b306 -> FETCH_HEAD 2025-12-05T22:22:15.5492782Z Submodule path 'third-party/prelude': checked out '48c249f8c7b99ff501d6e857754760315072b306' 2025-12-05T22:22:15.9619952Z From https://github.com/pybind/pybind11 2025-12-05T22:22:15.9620456Z * branch a2e59f0e7065404b44dfe92a28aca47ba1378dc4 -> FETCH_HEAD 2025-12-05T22:22:15.9935323Z Submodule path 'third-party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-12-05T22:22:15.9968483Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-12-05T22:22:16.0271170Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-12-05T22:22:16.0312406Z Entering 'backends/cadence/utils/FACTO' 2025-12-05T22:22:16.0354896Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-12-05T22:22:16.0398514Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-12-05T22:22:16.0441405Z Entering 'backends/vulkan/third-party/volk' 2025-12-05T22:22:16.0482341Z Entering 'backends/xnnpack/third-party/FP16' 2025-12-05T22:22:16.0525107Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-12-05T22:22:16.0566365Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-12-05T22:22:16.0623740Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-12-05T22:22:16.0667249Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-12-05T22:22:16.0708703Z Entering 'extension/llm/tokenizers' 2025-12-05T22:22:16.0751032Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-12-05T22:22:16.0793848Z Entering 'extension/llm/tokenizers/third-party/json' 2025-12-05T22:22:16.0836148Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-12-05T22:22:16.0884438Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-12-05T22:22:16.0930819Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-12-05T22:22:16.0971279Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-12-05T22:22:16.1014948Z Entering 'kernels/optimized/third-party/eigen' 2025-12-05T22:22:16.1061206Z Entering 'shim' 2025-12-05T22:22:16.1103194Z Entering 'third-party/ao' 2025-12-05T22:22:16.1146058Z Entering 'third-party/ao/third_party/cutlass' 2025-12-05T22:22:16.1199562Z Entering 'third-party/flatbuffers' 2025-12-05T22:22:16.1245403Z Entering 'third-party/flatcc' 2025-12-05T22:22:16.1287948Z Entering 'third-party/gflags' 2025-12-05T22:22:16.1330907Z Entering 'third-party/googletest' 2025-12-05T22:22:16.1373054Z Entering 'third-party/ios-cmake' 2025-12-05T22:22:16.1413506Z Entering 'third-party/json' 2025-12-05T22:22:16.1457554Z Entering 'third-party/pocketfft' 2025-12-05T22:22:16.1498829Z Entering 'third-party/prelude' 2025-12-05T22:22:16.1543033Z Entering 'third-party/pybind11' 2025-12-05T22:22:16.1592949Z ##[endgroup] 2025-12-05T22:22:16.1593379Z ##[group]Persisting credentials for submodules 2025-12-05T22:22:16.1600162Z [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-12-05T22:22:16.1899724Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-12-05T22:22:16.1959477Z Entering 'backends/cadence/utils/FACTO' 2025-12-05T22:22:16.2016474Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-12-05T22:22:16.2073091Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-12-05T22:22:16.2128698Z Entering 'backends/vulkan/third-party/volk' 2025-12-05T22:22:16.2184885Z Entering 'backends/xnnpack/third-party/FP16' 2025-12-05T22:22:16.2240120Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-12-05T22:22:16.2295202Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-12-05T22:22:16.2367752Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-12-05T22:22:16.2424031Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-12-05T22:22:16.2479569Z Entering 'extension/llm/tokenizers' 2025-12-05T22:22:16.2533191Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-12-05T22:22:16.2594728Z Entering 'extension/llm/tokenizers/third-party/json' 2025-12-05T22:22:16.2651622Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-12-05T22:22:16.2705288Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-12-05T22:22:16.2762762Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-12-05T22:22:16.2817684Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-12-05T22:22:16.2874516Z Entering 'kernels/optimized/third-party/eigen' 2025-12-05T22:22:16.2932093Z Entering 'shim' 2025-12-05T22:22:16.2987641Z Entering 'third-party/ao' 2025-12-05T22:22:16.3043002Z Entering 'third-party/ao/third_party/cutlass' 2025-12-05T22:22:16.3108141Z Entering 'third-party/flatbuffers' 2025-12-05T22:22:16.3167648Z Entering 'third-party/flatcc' 2025-12-05T22:22:16.3221070Z Entering 'third-party/gflags' 2025-12-05T22:22:16.3275996Z Entering 'third-party/googletest' 2025-12-05T22:22:16.3334457Z Entering 'third-party/ios-cmake' 2025-12-05T22:22:16.3397107Z Entering 'third-party/json' 2025-12-05T22:22:16.3455158Z Entering 'third-party/pocketfft' 2025-12-05T22:22:16.3508881Z Entering 'third-party/prelude' 2025-12-05T22:22:16.3567559Z Entering 'third-party/pybind11' 2025-12-05T22:22:16.3638157Z [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-12-05T22:22:16.3909257Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-12-05T22:22:16.3961820Z 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-12-05T22:22:16.3978050Z Entering 'backends/cadence/utils/FACTO' 2025-12-05T22:22:16.4031364Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/cadence/utils/FACTO/config remote.origin.url 2025-12-05T22:22:16.4047589Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-12-05T22:22:16.4103289Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/vulkan/third-party/Vulkan-Headers/config remote.origin.url 2025-12-05T22:22:16.4119729Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-12-05T22:22:16.4171904Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/vulkan/third-party/VulkanMemoryAllocator/config remote.origin.url 2025-12-05T22:22:16.4187677Z Entering 'backends/vulkan/third-party/volk' 2025-12-05T22:22:16.4240488Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/vulkan/third-party/volk/config remote.origin.url 2025-12-05T22:22:16.4256108Z Entering 'backends/xnnpack/third-party/FP16' 2025-12-05T22:22:16.4307448Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/FP16/config remote.origin.url 2025-12-05T22:22:16.4325075Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-12-05T22:22:16.4384505Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/FXdiv/config remote.origin.url 2025-12-05T22:22:16.4399888Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-12-05T22:22:16.4452016Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/XNNPACK/config remote.origin.url 2025-12-05T22:22:16.4484048Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-12-05T22:22:16.4535785Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/cpuinfo/config remote.origin.url 2025-12-05T22:22:16.4552335Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-12-05T22:22:16.4606824Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/backends/xnnpack/third-party/pthreadpool/config remote.origin.url 2025-12-05T22:22:16.4622304Z Entering 'extension/llm/tokenizers' 2025-12-05T22:22:16.4673056Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/config remote.origin.url 2025-12-05T22:22:16.4687827Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-12-05T22:22:16.4741358Z 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-12-05T22:22:16.4759016Z Entering 'extension/llm/tokenizers/third-party/json' 2025-12-05T22:22:16.4809968Z 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-12-05T22:22:16.4826185Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-12-05T22:22:16.4877298Z 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-12-05T22:22:16.4891265Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-12-05T22:22:16.4945671Z 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-12-05T22:22:16.4962559Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-12-05T22:22:16.5013176Z 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-12-05T22:22:16.5029506Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-12-05T22:22:16.5081549Z 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-12-05T22:22:16.5098040Z Entering 'kernels/optimized/third-party/eigen' 2025-12-05T22:22:16.5150015Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/kernels/optimized/third-party/eigen/config remote.origin.url 2025-12-05T22:22:16.5168345Z Entering 'shim' 2025-12-05T22:22:16.5219158Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/shim/config remote.origin.url 2025-12-05T22:22:16.5237821Z Entering 'third-party/ao' 2025-12-05T22:22:16.5288533Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ao/config remote.origin.url 2025-12-05T22:22:16.5304345Z Entering 'third-party/ao/third_party/cutlass' 2025-12-05T22:22:16.5360814Z 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-12-05T22:22:16.5386794Z Entering 'third-party/flatbuffers' 2025-12-05T22:22:16.5439747Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatbuffers/config remote.origin.url 2025-12-05T22:22:16.5457878Z Entering 'third-party/flatcc' 2025-12-05T22:22:16.5509485Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatcc/config remote.origin.url 2025-12-05T22:22:16.5523883Z Entering 'third-party/gflags' 2025-12-05T22:22:16.5575052Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/gflags/config remote.origin.url 2025-12-05T22:22:16.5590928Z Entering 'third-party/googletest' 2025-12-05T22:22:16.5642462Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/googletest/config remote.origin.url 2025-12-05T22:22:16.5658246Z Entering 'third-party/ios-cmake' 2025-12-05T22:22:16.5709105Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ios-cmake/config remote.origin.url 2025-12-05T22:22:16.5724725Z Entering 'third-party/json' 2025-12-05T22:22:16.5775076Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/json/config remote.origin.url 2025-12-05T22:22:16.5792307Z Entering 'third-party/pocketfft' 2025-12-05T22:22:16.5842689Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pocketfft/config remote.origin.url 2025-12-05T22:22:16.5857865Z Entering 'third-party/prelude' 2025-12-05T22:22:16.5908286Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/prelude/config remote.origin.url 2025-12-05T22:22:16.5927577Z Entering 'third-party/pybind11' 2025-12-05T22:22:16.6006665Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pybind11/config remote.origin.url 2025-12-05T22:22:16.6490324Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-12-05T22:22:16.6768111Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-12-05T22:22:16.6809592Z Entering 'backends/cadence/utils/FACTO' 2025-12-05T22:22:16.6851228Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-12-05T22:22:16.6895391Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-12-05T22:22:16.6937153Z Entering 'backends/vulkan/third-party/volk' 2025-12-05T22:22:16.6977800Z Entering 'backends/xnnpack/third-party/FP16' 2025-12-05T22:22:16.7019114Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-12-05T22:22:16.7062882Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-12-05T22:22:16.7119755Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-12-05T22:22:16.7161456Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-12-05T22:22:16.7202027Z Entering 'extension/llm/tokenizers' 2025-12-05T22:22:16.7241999Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-12-05T22:22:16.7284121Z Entering 'extension/llm/tokenizers/third-party/json' 2025-12-05T22:22:16.7328399Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-12-05T22:22:16.7370255Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-12-05T22:22:16.7413617Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-12-05T22:22:16.7455157Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-12-05T22:22:16.7497577Z Entering 'kernels/optimized/third-party/eigen' 2025-12-05T22:22:16.7545663Z Entering 'shim' 2025-12-05T22:22:16.7586325Z Entering 'third-party/ao' 2025-12-05T22:22:16.7629762Z Entering 'third-party/ao/third_party/cutlass' 2025-12-05T22:22:16.7681027Z Entering 'third-party/flatbuffers' 2025-12-05T22:22:16.7724979Z Entering 'third-party/flatcc' 2025-12-05T22:22:16.7765957Z Entering 'third-party/gflags' 2025-12-05T22:22:16.7807712Z Entering 'third-party/googletest' 2025-12-05T22:22:16.7851283Z Entering 'third-party/ios-cmake' 2025-12-05T22:22:16.7892280Z Entering 'third-party/json' 2025-12-05T22:22:16.7935193Z Entering 'third-party/pocketfft' 2025-12-05T22:22:16.7975237Z Entering 'third-party/prelude' 2025-12-05T22:22:16.8018823Z Entering 'third-party/pybind11' 2025-12-05T22:22:16.8072169Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-12-05T22:22:16.8346169Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-12-05T22:22:16.8387062Z Entering 'backends/cadence/utils/FACTO' 2025-12-05T22:22:16.8427588Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-12-05T22:22:16.8467956Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-12-05T22:22:16.8509003Z Entering 'backends/vulkan/third-party/volk' 2025-12-05T22:22:16.8549878Z Entering 'backends/xnnpack/third-party/FP16' 2025-12-05T22:22:16.8590610Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-12-05T22:22:16.8632627Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-12-05T22:22:16.8689126Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-12-05T22:22:16.8731154Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-12-05T22:22:16.8772488Z Entering 'extension/llm/tokenizers' 2025-12-05T22:22:16.8812648Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-12-05T22:22:16.8855417Z Entering 'extension/llm/tokenizers/third-party/json' 2025-12-05T22:22:16.8898325Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-12-05T22:22:16.8938582Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-12-05T22:22:16.8981719Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-12-05T22:22:16.9023363Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-12-05T22:22:16.9066015Z Entering 'kernels/optimized/third-party/eigen' 2025-12-05T22:22:16.9109428Z Entering 'shim' 2025-12-05T22:22:16.9150984Z Entering 'third-party/ao' 2025-12-05T22:22:16.9192035Z Entering 'third-party/ao/third_party/cutlass' 2025-12-05T22:22:16.9243701Z Entering 'third-party/flatbuffers' 2025-12-05T22:22:16.9286977Z Entering 'third-party/flatcc' 2025-12-05T22:22:16.9331155Z Entering 'third-party/gflags' 2025-12-05T22:22:16.9374008Z Entering 'third-party/googletest' 2025-12-05T22:22:16.9416300Z Entering 'third-party/ios-cmake' 2025-12-05T22:22:16.9457151Z Entering 'third-party/json' 2025-12-05T22:22:16.9499043Z Entering 'third-party/pocketfft' 2025-12-05T22:22:16.9539739Z Entering 'third-party/prelude' 2025-12-05T22:22:16.9583693Z Entering 'third-party/pybind11' 2025-12-05T22:22:16.9661714Z ##[endgroup] 2025-12-05T22:22:16.9693287Z [command]/usr/bin/git log -1 --format=%H 2025-12-05T22:22:16.9713316Z 42e32227bd4daaffac1ffadc75a629568b7150d6 2025-12-05T22:22:16.9913978Z Prepare all required actions 2025-12-05T22:22:16.9914525Z Getting action download info 2025-12-05T22:22:17.0965394Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-12-05T22:22:17.3217111Z ##[group]Run ./test-infra/.github/actions/calculate-docker-image 2025-12-05T22:22:17.3217515Z with: 2025-12-05T22:22:17.3217751Z use-custom-docker-registry: true 2025-12-05T22:22:17.3218136Z docker-image-name: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:22:17.3218776Z docker-build-dir: .ci/docker 2025-12-05T22:22:17.3219070Z working-directory: pytorch/executorch 2025-12-05T22:22:17.3219399Z docker-build-script: ./build.sh 2025-12-05T22:22:17.3219774Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-12-05T22:22:17.3220173Z force-push: false 2025-12-05T22:22:17.3220387Z env: 2025-12-05T22:22:17.3220659Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:22:17.3221081Z REPOSITORY: pytorch/executorch 2025-12-05T22:22:17.3221498Z PR_NUMBER: 2025-12-05T22:22:17.3230988Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:22:17.3240888Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:22:17.3241475Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:22:17.3242033Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:22:17.3242406Z ##[endgroup] 2025-12-05T22:22:17.3271367Z ##[group]Run set -ex 2025-12-05T22:22:17.3271655Z set -ex 2025-12-05T22:22:17.3272042Z  2025-12-05T22:22:17.3272440Z # If the docker build directory or the build script doesn't exist, the action will 2025-12-05T22:22:17.3273123Z # gracefully return the docker image name as it is. Pulling docker image in Linux 2025-12-05T22:22:17.3273690Z # job could then download the pre-built image as usual 2025-12-05T22:22:17.3274392Z if [[ -d "${DOCKER_BUILD_DIR}" ]] && [[ -f "${DOCKER_BUILD_DIR}/${DOCKER_BUILD_SCRIPT}" ]] && [[ "${USE_CUSTOM_DOCKER_REGISTRY}" == "true" ]]; then 2025-12-05T22:22:17.3275050Z  echo "skip=false" >> "${GITHUB_OUTPUT}" 2025-12-05T22:22:17.3275365Z else 2025-12-05T22:22:17.3275619Z  echo "skip=true" >> "${GITHUB_OUTPUT}" 2025-12-05T22:22:17.3276053Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-12-05T22:22:17.3276460Z  2025-12-05T22:22:17.3277026Z  echo "Not using custom ECR registry. Either it was not requested or there is no Docker build script in the ${REPO_NAME} repo..." 2025-12-05T22:22:17.3277729Z  exit 0 2025-12-05T22:22:17.3277943Z fi 2025-12-05T22:22:17.3278129Z  2025-12-05T22:22:17.3278465Z if [[ "${DOCKER_IMAGE_NAME}" == *"${DOCKER_REGISTRY}/${REPO_NAME}"* ]]; then 2025-12-05T22:22:17.3279063Z  # The docker image name already includes the ECR prefix and tag, so we can just 2025-12-05T22:22:17.3279604Z  # use it as it is, but first let's extract the tag 2025-12-05T22:22:17.3280084Z  DOCKER_TAG=$(echo "${DOCKER_IMAGE_NAME}" | awk -F '[:,]' '{print $2}') 2025-12-05T22:22:17.3280584Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-12-05T22:22:17.3281078Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-12-05T22:22:17.3281472Z else 2025-12-05T22:22:17.3281733Z  if [[ "${DOCKER_IMAGE_NAME}" == *:* ]]; then 2025-12-05T22:22:17.3282110Z  CUSTOM_TAG_PREFIX=${DOCKER_IMAGE_NAME#*:} 2025-12-05T22:22:17.3282508Z  DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME%%:*} 2025-12-05T22:22:17.3282847Z  fi 2025-12-05T22:22:17.3283291Z  DOCKER_TAG=${CUSTOM_TAG_PREFIX:+${CUSTOM_TAG_PREFIX}-}$(git rev-parse HEAD:"${DOCKER_BUILD_DIR}") 2025-12-05T22:22:17.3283917Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-12-05T22:22:17.3284553Z  echo "docker-image=${DOCKER_REGISTRY}/${REPO_NAME}/${DOCKER_IMAGE_NAME}:${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-12-05T22:22:17.3285265Z  echo "custom-tag-prefix=${CUSTOM_TAG_PREFIX}" >> "${GITHUB_OUTPUT}" 2025-12-05T22:22:17.3285693Z fi 2025-12-05T22:22:17.3291562Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:22:17.3291942Z env: 2025-12-05T22:22:17.3292212Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:22:17.3292597Z REPOSITORY: pytorch/executorch 2025-12-05T22:22:17.3292863Z PR_NUMBER: 2025-12-05T22:22:17.3302471Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:22:17.3312475Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:22:17.3313082Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:22:17.3313641Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:22:17.3314028Z REPO_NAME: executorch 2025-12-05T22:22:17.3314366Z DOCKER_IMAGE_NAME: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:22:17.3314748Z DOCKER_BUILD_DIR: .ci/docker 2025-12-05T22:22:17.3315034Z DOCKER_BUILD_SCRIPT: ./build.sh 2025-12-05T22:22:17.3315401Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-12-05T22:22:17.3315803Z USE_CUSTOM_DOCKER_REGISTRY: true 2025-12-05T22:22:17.3316092Z CUSTOM_TAG_PREFIX: 2025-12-05T22:22:17.3316315Z ##[endgroup] 2025-12-05T22:22:17.3353669Z + [[ -d .ci/docker ]] 2025-12-05T22:22:17.3354137Z + [[ -f .ci/docker/./build.sh ]] 2025-12-05T22:22:17.3354535Z + [[ true == \t\r\u\e ]] 2025-12-05T22:22:17.3354883Z + echo skip=false 2025-12-05T22:22:17.3355776Z + [[ ci-image:executorch-ubuntu-22.04-arm-sdk == *\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-12-05T22:22:17.3356430Z + [[ ci-image:executorch-ubuntu-22.04-arm-sdk == *:* ]] 2025-12-05T22:22:17.3356833Z + CUSTOM_TAG_PREFIX=executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:22:17.3357196Z + DOCKER_IMAGE_NAME=ci-image 2025-12-05T22:22:17.3360662Z ++ git rev-parse HEAD:.ci/docker 2025-12-05T22:22:17.3377530Z + DOCKER_TAG=executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:22:17.3378769Z + echo docker-tag=executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:22:17.3380124Z + echo docker-image=308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:22:17.3381052Z + echo custom-tag-prefix=executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:22:17.3417018Z ##[group]Run set +e 2025-12-05T22:22:17.3417301Z set +e 2025-12-05T22:22:17.3417528Z set -x 2025-12-05T22:22:17.3417743Z  2025-12-05T22:22:17.3417935Z login() { 2025-12-05T22:22:17.3418854Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-12-05T22:22:17.3419375Z } 2025-12-05T22:22:17.3419581Z  2025-12-05T22:22:17.3419771Z retry () { 2025-12-05T22:22:17.3420030Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-12-05T22:22:17.3420470Z } 2025-12-05T22:22:17.3420676Z  2025-12-05T22:22:17.3420905Z retry login "${DOCKER_REGISTRY}" 2025-12-05T22:22:17.3421192Z  2025-12-05T22:22:17.3421401Z START_TIME=$(date +%s) 2025-12-05T22:22:17.3421675Z # Wait up to 120 minutes 2025-12-05T22:22:17.3422035Z while [[ $(( $(date +%s) - 7200 )) -lt $START_TIME ]]; do 2025-12-05T22:22:17.3422517Z  # Check if image already exists, if it does then skip building it 2025-12-05T22:22:17.3423011Z  if docker manifest inspect "${DOCKER_IMAGE}"; then 2025-12-05T22:22:17.3423373Z  exit 0 2025-12-05T22:22:17.3423585Z  fi 2025-12-05T22:22:17.3423789Z  2025-12-05T22:22:17.3424153Z  # NB: This flag is used by Docker build workflow to push the image to ECR, so we can 2025-12-05T22:22:17.3424826Z  # use this to differentiate between the Docker build and regular build jobs. For the 2025-12-05T22:22:17.3425489Z  # latter, it will wait for the Docker images to become available before continuing 2025-12-05T22:22:17.3426112Z  if [ "${DOCKER_PUSH:-false}" == "true" ]; then 2025-12-05T22:22:17.3426514Z  # It's a Docker build job, let's build the image 2025-12-05T22:22:17.3426848Z  break 2025-12-05T22:22:17.3427074Z  else 2025-12-05T22:22:17.3427397Z  # It's a regular build job, wait for the image to become available 2025-12-05T22:22:17.3427811Z  sleep 300 2025-12-05T22:22:17.3428040Z  fi 2025-12-05T22:22:17.3428347Z done 2025-12-05T22:22:17.3428542Z  2025-12-05T22:22:17.3428893Z # NB: This part requires a full checkout. Otherwise, the merge base will 2025-12-05T22:22:17.3429468Z # be empty. The default action would be to continue rebuild the image 2025-12-05T22:22:17.3429971Z if [[ "$BASE_REVISION" = "$(git rev-parse HEAD)" ]]; then 2025-12-05T22:22:17.3430450Z  # if we're on the base branch then use the parent commit 2025-12-05T22:22:17.3430855Z  MERGE_BASE=$(git rev-parse HEAD~) 2025-12-05T22:22:17.3431154Z else 2025-12-05T22:22:17.3431479Z  # otherwise we're on a PR, so use the most recent base commit 2025-12-05T22:22:17.3431963Z  MERGE_BASE=$(git merge-base HEAD "$BASE_REVISION") 2025-12-05T22:22:17.3432310Z fi 2025-12-05T22:22:17.3432511Z  2025-12-05T22:22:17.3432721Z if [[ -z "${MERGE_BASE}" ]]; then 2025-12-05T22:22:17.3433075Z  echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-12-05T22:22:17.3433392Z  2025-12-05T22:22:17.3433857Z  echo "Finding merge base only works with full checkout, please set fetch-depth to 0, continuing ..." 2025-12-05T22:22:17.3434415Z  exit 0 2025-12-05T22:22:17.3434617Z fi 2025-12-05T22:22:17.3434816Z  2025-12-05T22:22:17.3435108Z if ! git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}"; then 2025-12-05T22:22:17.3435804Z  echo "Directory '${DOCKER_BUILD_DIR}' not found in commit $MERGE_BASE, you should rebase onto a more recent commit" 2025-12-05T22:22:17.3436392Z  exit 1 2025-12-05T22:22:17.3436608Z fi 2025-12-05T22:22:17.3436797Z  2025-12-05T22:22:17.3437154Z PREVIOUS_DOCKER_TAG=$(git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}") 2025-12-05T22:22:17.3437822Z # If no image exists but the hash is the same as the previous hash then we should error out here 2025-12-05T22:22:17.3438409Z if [[ "${PREVIOUS_DOCKER_TAG}" == "${DOCKER_TAG}" ]]; then 2025-12-05T22:22:17.3439102Z  echo "WARNING: Something has gone wrong and the previous image isn't available for the merge-base of your branch" 2025-12-05T22:22:17.3439885Z  echo " Will re-build docker image to store in local cache, TTS may be longer" 2025-12-05T22:22:17.3440335Z fi 2025-12-05T22:22:17.3440622Z  2025-12-05T22:22:17.3440868Z echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-12-05T22:22:17.3446631Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:22:17.3446995Z env: 2025-12-05T22:22:17.3447707Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:22:17.3448504Z REPOSITORY: pytorch/executorch 2025-12-05T22:22:17.3448780Z PR_NUMBER: 2025-12-05T22:22:17.3458187Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:22:17.3468094Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:22:17.3468788Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:22:17.3469333Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:22:17.3469736Z DOCKER_BUILD_DIR: .ci/docker 2025-12-05T22:22:17.3470064Z BASE_REVISION: 42e32227bd4daaffac1ffadc75a629568b7150d6 2025-12-05T22:22:17.3470629Z DOCKER_TAG: executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:22:17.3471230Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-12-05T22:22:17.3471604Z DOCKER_PUSH: 2025-12-05T22:22:17.3471825Z ##[endgroup] 2025-12-05T22:22:17.3496108Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-12-05T22:22:17.3496792Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-12-05T22:22:17.3498890Z + aws ecr get-login-password --region us-east-1 2025-12-05T22:22:17.3500511Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-12-05T22:22:17.9295456Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-12-05T22:22:17.9296085Z Configure a credential helper to remove this warning. See 2025-12-05T22:22:17.9296783Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-12-05T22:22:17.9297534Z 2025-12-05T22:22:17.9297721Z Login Succeeded 2025-12-05T22:22:17.9311818Z ++ date +%s 2025-12-05T22:22:17.9321662Z + START_TIME=1764973337 2025-12-05T22:22:17.9325221Z ++ date +%s 2025-12-05T22:22:17.9334200Z + [[ 1764966137 -lt 1764973337 ]] 2025-12-05T22:22:17.9335681Z + docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:22:18.1531421Z { 2025-12-05T22:22:18.1531864Z "schemaVersion": 2, 2025-12-05T22:22:18.1532535Z "mediaType": "application/vnd.docker.distribution.manifest.v2+json", 2025-12-05T22:22:18.1533275Z "config": { 2025-12-05T22:22:18.1533888Z "mediaType": "application/vnd.docker.container.image.v1+json", 2025-12-05T22:22:18.1534294Z "size": 17815, 2025-12-05T22:22:18.1534696Z "digest": "sha256:3784ddaba658307bd40557c8b6f4da221f2f3319a6e738217f1568f3da20bda1" 2025-12-05T22:22:18.1535172Z }, 2025-12-05T22:22:18.1535347Z "layers": [ 2025-12-05T22:22:18.1535543Z { 2025-12-05T22:22:18.1535853Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1536273Z "size": 30447951, 2025-12-05T22:22:18.1536676Z "digest": "sha256:63e5bc7682b85ae57a1221210f64d62e7a90b0a30f19af4ca734b8242ae49d63" 2025-12-05T22:22:18.1537146Z }, 2025-12-05T22:22:18.1537327Z { 2025-12-05T22:22:18.1537632Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1538044Z "size": 632, 2025-12-05T22:22:18.1538429Z "digest": "sha256:f21477d54730520cd6fbd87de2eb3077110b216108c0fcba9f73062634c8222a" 2025-12-05T22:22:18.1538893Z }, 2025-12-05T22:22:18.1539069Z { 2025-12-05T22:22:18.1539393Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1539795Z "size": 150108547, 2025-12-05T22:22:18.1540204Z "digest": "sha256:23833ae7388127ad44246bd24ec215857060f11593a4ffd8d93b47a3f6ee9195" 2025-12-05T22:22:18.1540654Z }, 2025-12-05T22:22:18.1540836Z { 2025-12-05T22:22:18.1541154Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1541552Z "size": 621, 2025-12-05T22:22:18.1541965Z "digest": "sha256:89cea1c706dbddedd8493f196c49b5bc6bfe4addb010afec90984020fe3b94e6" 2025-12-05T22:22:18.1542460Z }, 2025-12-05T22:22:18.1542725Z { 2025-12-05T22:22:18.1543186Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1543806Z "size": 19309367, 2025-12-05T22:22:18.1544488Z "digest": "sha256:9452d3d7296b81dbc3eebfec9ef3989fa399282afa663b97b5ea90fb0dc2f591" 2025-12-05T22:22:18.1545285Z }, 2025-12-05T22:22:18.1545549Z { 2025-12-05T22:22:18.1546209Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1546661Z "size": 736, 2025-12-05T22:22:18.1547165Z "digest": "sha256:a568baf292485bebd52570a5c8e6e3f15313266ad0a002908d54f19fbebb95a2" 2025-12-05T22:22:18.1547821Z }, 2025-12-05T22:22:18.1548068Z { 2025-12-05T22:22:18.1548686Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1549321Z "size": 131419180, 2025-12-05T22:22:18.1549955Z "digest": "sha256:13e4821f3bf2eb82cea65592e87d467ba9db9df9881cebf89200072d52880636" 2025-12-05T22:22:18.1550672Z }, 2025-12-05T22:22:18.1550939Z { 2025-12-05T22:22:18.1551424Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1552059Z "size": 448, 2025-12-05T22:22:18.1552626Z "digest": "sha256:320266977a6412738280938256866ade27a47cc2e919e42d926ef2ca7119b4ae" 2025-12-05T22:22:18.1553290Z }, 2025-12-05T22:22:18.1553586Z { 2025-12-05T22:22:18.1554366Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1555079Z "size": 104, 2025-12-05T22:22:18.1555749Z "digest": "sha256:fc4f5eb6a379ec2a16802dea75bcf08dc77b56646deb3fb6b2ad4e3778fda6ba" 2025-12-05T22:22:18.1556581Z }, 2025-12-05T22:22:18.1556889Z { 2025-12-05T22:22:18.1557409Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1558124Z "size": 636, 2025-12-05T22:22:18.1558782Z "digest": "sha256:0679be8b0049a8462057d18257b539188acf875dbce954f78d603bb9d7b1c58d" 2025-12-05T22:22:18.1559604Z }, 2025-12-05T22:22:18.1559901Z { 2025-12-05T22:22:18.1560419Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1561068Z "size": 35165451, 2025-12-05T22:22:18.1561729Z "digest": "sha256:35f0df09fd68ea9b586a3d65dd86ad86a51882241d7703a47461424c902743d2" 2025-12-05T22:22:18.1562514Z }, 2025-12-05T22:22:18.1562810Z { 2025-12-05T22:22:18.1563361Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1564264Z "size": 319, 2025-12-05T22:22:18.1564939Z "digest": "sha256:024f9c770f0e94198b7714a4295cff361842d4831024c4119932c6aa09b64832" 2025-12-05T22:22:18.1565760Z }, 2025-12-05T22:22:18.1566057Z { 2025-12-05T22:22:18.1566573Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1567076Z "size": 256673601, 2025-12-05T22:22:18.1567486Z "digest": "sha256:16e0654eb589789bf5247132adf58fda0ba40d2c89f1f61805a9d28954b85c59" 2025-12-05T22:22:18.1567960Z }, 2025-12-05T22:22:18.1568144Z { 2025-12-05T22:22:18.1568455Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1568871Z "size": 473, 2025-12-05T22:22:18.1569260Z "digest": "sha256:6342d15641e748363806e8680cbca29a8abeb4c508c20fd5dad3dbd025a3ad0e" 2025-12-05T22:22:18.1569729Z }, 2025-12-05T22:22:18.1569900Z { 2025-12-05T22:22:18.1570219Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1570635Z "size": 1042, 2025-12-05T22:22:18.1571047Z "digest": "sha256:f2e2455d42d2154bf3d843b4200dc32ed10e367d96c62502306ad1cd3a6d76c3" 2025-12-05T22:22:18.1571558Z }, 2025-12-05T22:22:18.1571728Z { 2025-12-05T22:22:18.1572048Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1572451Z "size": 611, 2025-12-05T22:22:18.1572841Z "digest": "sha256:4203f8b60e54fa4b936102e2101810a658359e4791ea3255d85c59b18a89736a" 2025-12-05T22:22:18.1573290Z }, 2025-12-05T22:22:18.1573470Z { 2025-12-05T22:22:18.1573774Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1574187Z "size": 77584056, 2025-12-05T22:22:18.1574594Z "digest": "sha256:dd10ca6ea21aa0a08624f6cb8c9667e9e8a1153d57dfb524b310f53a35d72fd0" 2025-12-05T22:22:18.1575066Z }, 2025-12-05T22:22:18.1575245Z { 2025-12-05T22:22:18.1575551Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1575960Z "size": 689, 2025-12-05T22:22:18.1576355Z "digest": "sha256:875945a81541d2b9cedd9d34f5c58f07976178c04cbb833de2c7e25763334437" 2025-12-05T22:22:18.1576826Z }, 2025-12-05T22:22:18.1576995Z { 2025-12-05T22:22:18.1577311Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1577708Z "size": 209, 2025-12-05T22:22:18.1578103Z "digest": "sha256:bd60018c918c41db270a40f55cfacc6486f831951b0978125c9c28ec7fbe6c28" 2025-12-05T22:22:18.1578567Z }, 2025-12-05T22:22:18.1578736Z { 2025-12-05T22:22:18.1579051Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1579447Z "size": 1250, 2025-12-05T22:22:18.1579852Z "digest": "sha256:6f28ff044c6c69d7d84755df3d44d30f3ffa5487c4b1e1bd2d412b0b9784981d" 2025-12-05T22:22:18.1580309Z }, 2025-12-05T22:22:18.1580488Z { 2025-12-05T22:22:18.1580792Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1581204Z "size": 679, 2025-12-05T22:22:18.1581733Z "digest": "sha256:3f204381cb41391b9a39748f64b4e98cb06d49f2fe4b7ee9e04a9241499283f5" 2025-12-05T22:22:18.1582211Z }, 2025-12-05T22:22:18.1582394Z { 2025-12-05T22:22:18.1582702Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1583120Z "size": 6904682387, 2025-12-05T22:22:18.1583383Z + exit 0 2025-12-05T22:22:18.1583770Z "digest": "sha256:76528f6cf90a0257cab9d2ab2e746637b34e65399af291d0ec71622ee3607fde" 2025-12-05T22:22:18.1584238Z }, 2025-12-05T22:22:18.1584409Z { 2025-12-05T22:22:18.1584727Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1585127Z "size": 1383, 2025-12-05T22:22:18.1585536Z "digest": "sha256:1a3b372dd1e27bc0753387243d0c95b6ddad126da499e5cc5a0f18cfd57132db" 2025-12-05T22:22:18.1585995Z }, 2025-12-05T22:22:18.1586174Z { 2025-12-05T22:22:18.1586480Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1586892Z "size": 679, 2025-12-05T22:22:18.1587279Z "digest": "sha256:3f204381cb41391b9a39748f64b4e98cb06d49f2fe4b7ee9e04a9241499283f5" 2025-12-05T22:22:18.1587837Z }, 2025-12-05T22:22:18.1588023Z { 2025-12-05T22:22:18.1588441Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1588861Z "size": 237531559, 2025-12-05T22:22:18.1589273Z "digest": "sha256:4a550c692d5dfbeeedb763686c1e2f3b076d47c5bd04a38714318a79ff3b2cec" 2025-12-05T22:22:18.1589755Z }, 2025-12-05T22:22:18.1589926Z { 2025-12-05T22:22:18.1590248Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1590649Z "size": 828, 2025-12-05T22:22:18.1591056Z "digest": "sha256:d659058ded3854e4f84c6eebd11b1e255f2878d35e63379fbdb4f725885f3747" 2025-12-05T22:22:18.1591532Z }, 2025-12-05T22:22:18.1591703Z { 2025-12-05T22:22:18.1592025Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1592429Z "size": 679, 2025-12-05T22:22:18.1592831Z "digest": "sha256:3f204381cb41391b9a39748f64b4e98cb06d49f2fe4b7ee9e04a9241499283f5" 2025-12-05T22:22:18.1593296Z }, 2025-12-05T22:22:18.1593483Z { 2025-12-05T22:22:18.1593795Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1594214Z "size": 186425397, 2025-12-05T22:22:18.1594621Z "digest": "sha256:76355abea91ac9f9843d8fd79504f652a09b51279cb5185e73cad962c24adc7d" 2025-12-05T22:22:18.1595089Z }, 2025-12-05T22:22:18.1595269Z { 2025-12-05T22:22:18.1595572Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1595979Z "size": 531, 2025-12-05T22:22:18.1596356Z "digest": "sha256:82c6e368aa4d91921f8657d918a0c28583f225a5a1ec26229bb31e09b10a6f2e" 2025-12-05T22:22:18.1596821Z }, 2025-12-05T22:22:18.1596986Z { 2025-12-05T22:22:18.1597300Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1597698Z "size": 679, 2025-12-05T22:22:18.1598092Z "digest": "sha256:3f204381cb41391b9a39748f64b4e98cb06d49f2fe4b7ee9e04a9241499283f5" 2025-12-05T22:22:18.1598555Z }, 2025-12-05T22:22:18.1598738Z { 2025-12-05T22:22:18.1599055Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1599454Z "size": 334, 2025-12-05T22:22:18.1599864Z "digest": "sha256:32a1331a5fca44ced9a0f7f41044d527f8cf05877fdbdcd3da691dc14b22df0e" 2025-12-05T22:22:18.1600330Z }, 2025-12-05T22:22:18.1600511Z { 2025-12-05T22:22:18.1600819Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1601231Z "size": 32, 2025-12-05T22:22:18.1601625Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-12-05T22:22:18.1602101Z }, 2025-12-05T22:22:18.1602282Z { 2025-12-05T22:22:18.1602586Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1602999Z "size": 165, 2025-12-05T22:22:18.1603381Z "digest": "sha256:3d7b08e84392b5a85c729c51965d9cf785159b9445d3e96f2180ba758a03abd9" 2025-12-05T22:22:18.1603847Z }, 2025-12-05T22:22:18.1604013Z { 2025-12-05T22:22:18.1604415Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1604824Z "size": 1110, 2025-12-05T22:22:18.1605229Z "digest": "sha256:cab25b3bc0672983085e787ded7ff74047ce23233114f3bd2539b4848f3fadf0" 2025-12-05T22:22:18.1605687Z }, 2025-12-05T22:22:18.1605878Z { 2025-12-05T22:22:18.1606200Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1606605Z "size": 32, 2025-12-05T22:22:18.1607014Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-12-05T22:22:18.1607479Z }, 2025-12-05T22:22:18.1607659Z { 2025-12-05T22:22:18.1607963Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1608379Z "size": 108, 2025-12-05T22:22:18.1608768Z "digest": "sha256:906994c1fffcb10a60d5c599bff10de654b00fd556bb34a361a866339ead5846" 2025-12-05T22:22:18.1609237Z }, 2025-12-05T22:22:18.1609404Z { 2025-12-05T22:22:18.1609723Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1610232Z "size": 399, 2025-12-05T22:22:18.1610620Z "digest": "sha256:7caff1a7eef958d467c207097231030ba5a3f894552933ca787dc6e69e2309a4" 2025-12-05T22:22:18.1611090Z }, 2025-12-05T22:22:18.1611271Z { 2025-12-05T22:22:18.1611592Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1611990Z "size": 20175056, 2025-12-05T22:22:18.1612396Z "digest": "sha256:284af708791b97bb4a72c027768c473a66f36e08c991604f52f0709fbb4a18ce" 2025-12-05T22:22:18.1612845Z }, 2025-12-05T22:22:18.1613027Z { 2025-12-05T22:22:18.1613353Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1613750Z "size": 104, 2025-12-05T22:22:18.1614150Z "digest": "sha256:fb6a43630492cace086a72d947f633bfc53be672f930deeb98b71deb557e3839" 2025-12-05T22:22:18.1614610Z }, 2025-12-05T22:22:18.1614789Z { 2025-12-05T22:22:18.1615092Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1615509Z "size": 1152, 2025-12-05T22:22:18.1615902Z "digest": "sha256:809af63f95abae8dd2ab757dfd7016070ad298385882f59dde43ad75ae004b17" 2025-12-05T22:22:18.1616380Z }, 2025-12-05T22:22:18.1616551Z { 2025-12-05T22:22:18.1616874Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1617285Z "size": 679, 2025-12-05T22:22:18.1617669Z "digest": "sha256:3f204381cb41391b9a39748f64b4e98cb06d49f2fe4b7ee9e04a9241499283f5" 2025-12-05T22:22:18.1618131Z }, 2025-12-05T22:22:18.1618555Z { 2025-12-05T22:22:18.1618879Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1619281Z "size": 32, 2025-12-05T22:22:18.1619691Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-12-05T22:22:18.1620158Z }, 2025-12-05T22:22:18.1620343Z { 2025-12-05T22:22:18.1620652Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-12-05T22:22:18.1621062Z "size": 136, 2025-12-05T22:22:18.1621470Z "digest": "sha256:140ca1fc253845f521a0e640c980fdae7dc57ab2490df6251b3c7df8fbd852ff" 2025-12-05T22:22:18.1621936Z } 2025-12-05T22:22:18.1622118Z ] 2025-12-05T22:22:18.1622285Z } 2025-12-05T22:22:18.1673662Z ##[group]Run set -eux 2025-12-05T22:22:18.1674120Z set -eux 2025-12-05T22:22:18.1674862Z # It's ok if this steps fails, it would then be an anonymous user like what we used to have 2025-12-05T22:22:18.1677011Z 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 || true 2025-12-05T22:22:18.1687510Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:22:18.1688194Z env: 2025-12-05T22:22:18.1688674Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:22:18.1689394Z REPOSITORY: pytorch/executorch 2025-12-05T22:22:18.1689889Z PR_NUMBER: 2025-12-05T22:22:18.1702218Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:22:18.1712330Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:22:18.1712935Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:22:18.1713497Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:22:18.1713874Z ##[endgroup] 2025-12-05T22:22:18.1749149Z + aws secretsmanager get-secret-value --secret-id docker_hub_readonly_token 2025-12-05T22:22:18.1750053Z + jq --raw-output .SecretString 2025-12-05T22:22:18.1750958Z + jq -r .docker_hub_readonly_token 2025-12-05T22:22:18.1753040Z + docker login --username pytorchbot --password-stdin 2025-12-05T22:22:18.7380198Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-12-05T22:22:18.7380841Z Configure a credential helper to remove this warning. See 2025-12-05T22:22:18.7381459Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-12-05T22:22:18.7381997Z 2025-12-05T22:22:18.7382176Z Login Succeeded 2025-12-05T22:22:18.7465277Z Prepare all required actions 2025-12-05T22:22:18.7506131Z ##[group]Run ./test-infra/.github/actions/pull-docker-image 2025-12-05T22:22:18.7506498Z with: 2025-12-05T22:22:18.7507219Z docker-image: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:22:18.7508120Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-12-05T22:22:18.7508609Z env: 2025-12-05T22:22:18.7508888Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:22:18.7509279Z REPOSITORY: pytorch/executorch 2025-12-05T22:22:18.7509564Z PR_NUMBER: 2025-12-05T22:22:18.7519252Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:22:18.7529287Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:22:18.7529896Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:22:18.7530459Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:22:18.7530835Z ##[endgroup] 2025-12-05T22:22:18.7556120Z ##[group]Run set -x 2025-12-05T22:22:18.7556379Z set -x 2025-12-05T22:22:18.7556612Z set +e 2025-12-05T22:22:18.7556819Z  2025-12-05T22:22:18.7570085Z login() { 2025-12-05T22:22:18.7570587Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-12-05T22:22:18.7571117Z } 2025-12-05T22:22:18.7571310Z  2025-12-05T22:22:18.7571512Z retry () { 2025-12-05T22:22:18.7571936Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-12-05T22:22:18.7572258Z } 2025-12-05T22:22:18.7572447Z  2025-12-05T22:22:18.7572676Z retry login "${DOCKER_REGISTRY}" 2025-12-05T22:22:18.7572971Z  2025-12-05T22:22:18.7573463Z IMAGE_SIZE=$(docker manifest inspect "${DOCKER_IMAGE}" | jq '[.layers[].size, .config.size] | add / 1024 / 1024') 2025-12-05T22:22:18.7574141Z echo "Compressed size of image in MB: ${IMAGE_SIZE}" 2025-12-05T22:22:18.7574506Z  2025-12-05T22:22:18.7574702Z set -e 2025-12-05T22:22:18.7575037Z # ignore output since only exit code is used for conditional 2025-12-05T22:22:18.7575535Z # only pull docker image if it's not available locally 2025-12-05T22:22:18.7576069Z if ! docker inspect --type=image "${DOCKER_IMAGE}" >/dev/null 2>/dev/null; then 2025-12-05T22:22:18.7576574Z  retry docker pull "${DOCKER_IMAGE}" 2025-12-05T22:22:18.7576887Z fi 2025-12-05T22:22:18.7582751Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:22:18.7583112Z env: 2025-12-05T22:22:18.7583818Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:22:18.7584631Z REPOSITORY: pytorch/executorch 2025-12-05T22:22:18.7584898Z PR_NUMBER: 2025-12-05T22:22:18.7594383Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:22:18.7604421Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:22:18.7605112Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:22:18.7605676Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:22:18.7606154Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-12-05T22:22:18.7606542Z ##[endgroup] 2025-12-05T22:22:18.7631723Z + set +e 2025-12-05T22:22:18.7632234Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-12-05T22:22:18.7632920Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-12-05T22:22:18.7635646Z + aws ecr get-login-password --region us-east-1 2025-12-05T22:22:18.7637158Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-12-05T22:22:19.3435760Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-12-05T22:22:19.3437065Z Configure a credential helper to remove this warning. See 2025-12-05T22:22:19.3438303Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-12-05T22:22:19.3439191Z 2025-12-05T22:22:19.3439390Z Login Succeeded 2025-12-05T22:22:19.3452809Z ++ docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:22:19.3453755Z ++ jq '[.layers[].size, .config.size] | add / 1024 / 1024' 2025-12-05T22:22:19.5563616Z + IMAGE_SIZE=7676.656606674194 2025-12-05T22:22:19.5564037Z + echo 'Compressed size of image in MB: 7676.656606674194' 2025-12-05T22:22:19.5564398Z + set -e 2025-12-05T22:22:19.5565182Z + docker inspect --type=image 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:22:19.5566368Z Compressed size of image in MB: 7676.656606674194 2025-12-05T22:22:19.5705244Z + retry docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:22:19.5706605Z + docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:22:19.7982301Z executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4: Pulling from executorch/ci-image 2025-12-05T22:22:19.7993327Z 63e5bc7682b8: Pulling fs layer 2025-12-05T22:22:19.7993808Z f21477d54730: Pulling fs layer 2025-12-05T22:22:19.7994237Z 23833ae73881: Pulling fs layer 2025-12-05T22:22:19.7994630Z 89cea1c706db: Pulling fs layer 2025-12-05T22:22:19.7994915Z 9452d3d7296b: Pulling fs layer 2025-12-05T22:22:19.7995302Z a568baf29248: Pulling fs layer 2025-12-05T22:22:19.7995579Z 13e4821f3bf2: Pulling fs layer 2025-12-05T22:22:19.7995856Z 320266977a64: Pulling fs layer 2025-12-05T22:22:19.7996191Z fc4f5eb6a379: Pulling fs layer 2025-12-05T22:22:19.7996456Z 0679be8b0049: Pulling fs layer 2025-12-05T22:22:19.7996804Z 35f0df09fd68: Pulling fs layer 2025-12-05T22:22:19.7997064Z 89cea1c706db: Waiting 2025-12-05T22:22:19.7997316Z 024f9c770f0e: Pulling fs layer 2025-12-05T22:22:19.7997638Z 16e0654eb589: Pulling fs layer 2025-12-05T22:22:19.7997905Z 6342d15641e7: Pulling fs layer 2025-12-05T22:22:19.7998161Z f2e2455d42d2: Pulling fs layer 2025-12-05T22:22:19.7998497Z 9452d3d7296b: Waiting 2025-12-05T22:22:19.7998733Z 4203f8b60e54: Pulling fs layer 2025-12-05T22:22:19.7998995Z dd10ca6ea21a: Pulling fs layer 2025-12-05T22:22:19.7999260Z a568baf29248: Waiting 2025-12-05T22:22:19.7999482Z 875945a81541: Pulling fs layer 2025-12-05T22:22:19.7999750Z bd60018c918c: Pulling fs layer 2025-12-05T22:22:19.8000006Z 13e4821f3bf2: Waiting 2025-12-05T22:22:19.8000248Z 6f28ff044c6c: Pulling fs layer 2025-12-05T22:22:19.8000497Z 16e0654eb589: Waiting 2025-12-05T22:22:19.8000736Z 3f204381cb41: Pulling fs layer 2025-12-05T22:22:19.8001025Z 320266977a64: Waiting 2025-12-05T22:22:19.8001249Z 76528f6cf90a: Pulling fs layer 2025-12-05T22:22:19.8001510Z 6342d15641e7: Waiting 2025-12-05T22:22:19.8001735Z 1a3b372dd1e2: Pulling fs layer 2025-12-05T22:22:19.8002209Z fc4f5eb6a379: Waiting 2025-12-05T22:22:19.8002434Z 35f0df09fd68: Waiting 2025-12-05T22:22:19.8002664Z 024f9c770f0e: Waiting 2025-12-05T22:22:19.8002877Z 0679be8b0049: Waiting 2025-12-05T22:22:19.8003118Z 4a550c692d5d: Pulling fs layer 2025-12-05T22:22:19.8003379Z d659058ded38: Pulling fs layer 2025-12-05T22:22:19.8003643Z dd10ca6ea21a: Waiting 2025-12-05T22:22:19.8003872Z 875945a81541: Waiting 2025-12-05T22:22:19.8004084Z f2e2455d42d2: Waiting 2025-12-05T22:22:19.8004322Z 76355abea91a: Pulling fs layer 2025-12-05T22:22:19.8004571Z 4203f8b60e54: Waiting 2025-12-05T22:22:19.8004815Z 82c6e368aa4d: Pulling fs layer 2025-12-05T22:22:19.8005065Z bd60018c918c: Waiting 2025-12-05T22:22:19.8005301Z 32a1331a5fca: Pulling fs layer 2025-12-05T22:22:19.8005548Z 76528f6cf90a: Waiting 2025-12-05T22:22:19.8005785Z 4f4fb700ef54: Pulling fs layer 2025-12-05T22:22:19.8006036Z d659058ded38: Waiting 2025-12-05T22:22:19.8006265Z 6f28ff044c6c: Waiting 2025-12-05T22:22:19.8006613Z 3d7b08e84392: Pulling fs layer 2025-12-05T22:22:19.8006941Z 3f204381cb41: Waiting 2025-12-05T22:22:19.8007319Z cab25b3bc067: Pulling fs layer 2025-12-05T22:22:19.8007753Z 4a550c692d5d: Waiting 2025-12-05T22:22:19.8008171Z 1a3b372dd1e2: Waiting 2025-12-05T22:22:19.8008569Z 4f4fb700ef54: Waiting 2025-12-05T22:22:19.8008921Z 3d7b08e84392: Waiting 2025-12-05T22:22:19.8009227Z 906994c1fffc: Pulling fs layer 2025-12-05T22:22:19.8009493Z 76355abea91a: Waiting 2025-12-05T22:22:19.8009712Z 82c6e368aa4d: Waiting 2025-12-05T22:22:19.8009940Z 32a1331a5fca: Waiting 2025-12-05T22:22:19.8010173Z 7caff1a7eef9: Pulling fs layer 2025-12-05T22:22:19.8010612Z cab25b3bc067: Waiting 2025-12-05T22:22:19.8010856Z 284af708791b: Pulling fs layer 2025-12-05T22:22:19.8011106Z 906994c1fffc: Waiting 2025-12-05T22:22:19.8011346Z fb6a43630492: Pulling fs layer 2025-12-05T22:22:19.8011597Z 7caff1a7eef9: Waiting 2025-12-05T22:22:19.8011841Z 809af63f95ab: Pulling fs layer 2025-12-05T22:22:19.8012089Z 284af708791b: Waiting 2025-12-05T22:22:19.8012311Z fb6a43630492: Waiting 2025-12-05T22:22:19.8012534Z 809af63f95ab: Waiting 2025-12-05T22:22:19.8012773Z 140ca1fc2538: Pulling fs layer 2025-12-05T22:22:19.8013023Z 140ca1fc2538: Waiting 2025-12-05T22:22:19.8743267Z f21477d54730: Verifying Checksum 2025-12-05T22:22:19.8743783Z f21477d54730: Download complete 2025-12-05T22:22:19.9530462Z 89cea1c706db: Verifying Checksum 2025-12-05T22:22:19.9530982Z 89cea1c706db: Download complete 2025-12-05T22:22:20.1448281Z 63e5bc7682b8: Verifying Checksum 2025-12-05T22:22:20.1448758Z 63e5bc7682b8: Download complete 2025-12-05T22:22:20.2248597Z a568baf29248: Download complete 2025-12-05T22:22:20.2599127Z 9452d3d7296b: Verifying Checksum 2025-12-05T22:22:20.2599540Z 9452d3d7296b: Download complete 2025-12-05T22:22:20.3475287Z 320266977a64: Verifying Checksum 2025-12-05T22:22:20.3475693Z 320266977a64: Download complete 2025-12-05T22:22:20.4159068Z fc4f5eb6a379: Verifying Checksum 2025-12-05T22:22:20.4159480Z fc4f5eb6a379: Download complete 2025-12-05T22:22:20.5102937Z 0679be8b0049: Download complete 2025-12-05T22:22:20.9514392Z 35f0df09fd68: Verifying Checksum 2025-12-05T22:22:20.9514914Z 35f0df09fd68: Download complete 2025-12-05T22:22:21.0297068Z 024f9c770f0e: Verifying Checksum 2025-12-05T22:22:21.1200805Z 024f9c770f0e: Download complete 2025-12-05T22:22:21.1201156Z 63e5bc7682b8: Pull complete 2025-12-05T22:22:21.1415437Z f21477d54730: Pull complete 2025-12-05T22:22:21.3521554Z 23833ae73881: Verifying Checksum 2025-12-05T22:22:21.3522164Z 23833ae73881: Download complete 2025-12-05T22:22:21.4401942Z 6342d15641e7: Verifying Checksum 2025-12-05T22:22:21.4403155Z 6342d15641e7: Download complete 2025-12-05T22:22:21.5250180Z f2e2455d42d2: Verifying Checksum 2025-12-05T22:22:21.5250725Z f2e2455d42d2: Download complete 2025-12-05T22:22:21.5981573Z 4203f8b60e54: Verifying Checksum 2025-12-05T22:22:21.5982296Z 4203f8b60e54: Download complete 2025-12-05T22:22:21.6725412Z 13e4821f3bf2: Verifying Checksum 2025-12-05T22:22:21.6725820Z 13e4821f3bf2: Download complete 2025-12-05T22:22:21.7587951Z 875945a81541: Download complete 2025-12-05T22:22:21.8459143Z bd60018c918c: Verifying Checksum 2025-12-05T22:22:21.8459703Z bd60018c918c: Download complete 2025-12-05T22:22:21.9103400Z 6f28ff044c6c: Download complete 2025-12-05T22:22:22.0149345Z 3f204381cb41: Download complete 2025-12-05T22:22:22.4187248Z dd10ca6ea21a: Verifying Checksum 2025-12-05T22:22:22.4187670Z dd10ca6ea21a: Download complete 2025-12-05T22:22:22.5079921Z 1a3b372dd1e2: Verifying Checksum 2025-12-05T22:22:22.5080436Z 1a3b372dd1e2: Download complete 2025-12-05T22:22:23.6683298Z 16e0654eb589: Verifying Checksum 2025-12-05T22:22:23.6683876Z 16e0654eb589: Download complete 2025-12-05T22:22:23.7447403Z d659058ded38: Download complete 2025-12-05T22:22:25.3692732Z 4a550c692d5d: Verifying Checksum 2025-12-05T22:22:25.3693325Z 4a550c692d5d: Download complete 2025-12-05T22:22:25.4547809Z 82c6e368aa4d: Verifying Checksum 2025-12-05T22:22:25.4548179Z 82c6e368aa4d: Download complete 2025-12-05T22:22:25.4919934Z 23833ae73881: Pull complete 2025-12-05T22:22:25.5646276Z 32a1331a5fca: Download complete 2025-12-05T22:22:25.5723452Z 4f4fb700ef54: Download complete 2025-12-05T22:22:25.6400517Z 89cea1c706db: Pull complete 2025-12-05T22:22:25.6563263Z 3d7b08e84392: Verifying Checksum 2025-12-05T22:22:25.6563612Z 3d7b08e84392: Download complete 2025-12-05T22:22:25.6606127Z 76355abea91a: Verifying Checksum 2025-12-05T22:22:25.6606460Z 76355abea91a: Download complete 2025-12-05T22:22:25.7453094Z 906994c1fffc: Verifying Checksum 2025-12-05T22:22:25.7453680Z 906994c1fffc: Download complete 2025-12-05T22:22:25.7467513Z cab25b3bc067: Verifying Checksum 2025-12-05T22:22:25.7468168Z cab25b3bc067: Download complete 2025-12-05T22:22:25.8211877Z 7caff1a7eef9: Download complete 2025-12-05T22:22:25.9266661Z fb6a43630492: Verifying Checksum 2025-12-05T22:22:26.0053943Z fb6a43630492: Download complete 2025-12-05T22:22:26.0054433Z 809af63f95ab: Verifying Checksum 2025-12-05T22:22:26.0054865Z 809af63f95ab: Download complete 2025-12-05T22:22:26.0751205Z 284af708791b: Verifying Checksum 2025-12-05T22:22:26.0751604Z 284af708791b: Download complete 2025-12-05T22:22:26.0835501Z 140ca1fc2538: Verifying Checksum 2025-12-05T22:22:26.0835813Z 140ca1fc2538: Download complete 2025-12-05T22:22:26.0879688Z 9452d3d7296b: Pull complete 2025-12-05T22:22:26.2846246Z a568baf29248: Pull complete 2025-12-05T22:22:28.9616291Z 13e4821f3bf2: Pull complete 2025-12-05T22:22:29.0498920Z 320266977a64: Pull complete 2025-12-05T22:22:29.1155849Z fc4f5eb6a379: Pull complete 2025-12-05T22:22:29.1531715Z 0679be8b0049: Pull complete 2025-12-05T22:22:29.8102964Z 35f0df09fd68: Pull complete 2025-12-05T22:22:29.9410206Z 024f9c770f0e: Pull complete 2025-12-05T22:22:35.8476687Z 16e0654eb589: Pull complete 2025-12-05T22:22:36.0524555Z 6342d15641e7: Pull complete 2025-12-05T22:22:36.2602916Z f2e2455d42d2: Pull complete 2025-12-05T22:22:36.4756956Z 4203f8b60e54: Pull complete 2025-12-05T22:22:38.5317568Z dd10ca6ea21a: Pull complete 2025-12-05T22:22:38.6916532Z 875945a81541: Pull complete 2025-12-05T22:22:38.9044770Z bd60018c918c: Pull complete 2025-12-05T22:22:39.0847573Z 6f28ff044c6c: Pull complete 2025-12-05T22:22:39.2450152Z 3f204381cb41: Pull complete 2025-12-05T22:23:31.1401777Z 76528f6cf90a: Verifying Checksum 2025-12-05T22:23:31.1402174Z 76528f6cf90a: Download complete 2025-12-05T22:24:45.6291983Z 76528f6cf90a: Pull complete 2025-12-05T22:24:45.7805389Z 1a3b372dd1e2: Pull complete 2025-12-05T22:24:53.7548729Z 4a550c692d5d: Pull complete 2025-12-05T22:24:53.8006318Z d659058ded38: Pull complete 2025-12-05T22:25:01.4062487Z 76355abea91a: Pull complete 2025-12-05T22:25:01.5831561Z 82c6e368aa4d: Pull complete 2025-12-05T22:25:01.9377646Z 32a1331a5fca: Pull complete 2025-12-05T22:25:02.0170751Z 4f4fb700ef54: Pull complete 2025-12-05T22:25:02.0654555Z 3d7b08e84392: Pull complete 2025-12-05T22:25:02.0914555Z cab25b3bc067: Pull complete 2025-12-05T22:25:02.1531939Z 906994c1fffc: Pull complete 2025-12-05T22:25:02.1796039Z 7caff1a7eef9: Pull complete 2025-12-05T22:25:02.9459243Z 284af708791b: Pull complete 2025-12-05T22:25:03.1329651Z fb6a43630492: Pull complete 2025-12-05T22:25:03.2314311Z 809af63f95ab: Pull complete 2025-12-05T22:25:03.6857375Z 140ca1fc2538: Pull complete 2025-12-05T22:25:03.7707472Z Digest: sha256:27d0b2020eae9446c53cace7bff0a89d412712cee742f2507060604c83fc4fdf 2025-12-05T22:25:03.8122529Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:25:03.8348922Z 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:25:03.8392266Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-12-05T22:25:03.8393265Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-12-05T22:25:03.8402043Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:25:03.8402435Z env: 2025-12-05T22:25:03.8402716Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:25:03.8403138Z REPOSITORY: pytorch/executorch 2025-12-05T22:25:03.8403417Z PR_NUMBER: 2025-12-05T22:25:03.8412930Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:25:03.8423207Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:25:03.8423834Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:25:03.8424407Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:25:03.8424795Z ##[endgroup] 2025-12-05T22:25:03.8593579Z ##[group]Run set -ex 2025-12-05T22:25:03.8593870Z set -ex 2025-12-05T22:25:03.8594090Z { 2025-12-05T22:25:03.8594301Z  echo "#!/usr/bin/env bash"; 2025-12-05T22:25:03.8594625Z  echo "set -eou pipefail"; 2025-12-05T22:25:03.8594930Z  # shellcheck disable=SC2016 2025-12-05T22:25:03.8595275Z  echo 'eval "$(conda shell.bash hook)"'; 2025-12-05T22:25:03.8595612Z  echo "set -x"; 2025-12-05T22:25:03.8595865Z  echo "${SCRIPT}"; 2025-12-05T22:25:03.8596162Z } > "${RUNNER_TEMP}/exec_script" 2025-12-05T22:25:03.8596491Z chmod +x "${RUNNER_TEMP}/exec_script" 2025-12-05T22:25:03.8597229Z python3 "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py" "" 2025-12-05T22:25:03.8602838Z shell: /usr/bin/bash -e {0} 2025-12-05T22:25:03.8603104Z env: 2025-12-05T22:25:03.8603839Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:25:03.8604650Z REPOSITORY: pytorch/executorch 2025-12-05T22:25:03.8604932Z PR_NUMBER: 2025-12-05T22:25:03.8614388Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:25:03.8624605Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:25:03.8625217Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:25:03.8625763Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:25:03.8626551Z ALL_SECRETS: { "github_token": "***" } 2025-12-05T22:25:03.8626866Z ##[endgroup] 2025-12-05T22:25:03.8650459Z + echo '#!/usr/bin/env bash' 2025-12-05T22:25:03.8650759Z + echo 'set -eou pipefail' 2025-12-05T22:25:03.8651056Z + echo 'eval "$(conda shell.bash hook)"' 2025-12-05T22:25:03.8652095Z + echo 'set -x' 2025-12-05T22:25:03.8652508Z + echo '# The generic Linux job chooses to use base env, not the one setup by the image 2025-12-05T22:25:03.8653042Z CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") 2025-12-05T22:25:03.8653426Z conda activate "${CONDA_ENV}" 2025-12-05T22:25:03.8653710Z 2025-12-05T22:25:03.8654287Z cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" 2025-12-05T22:25:03.8655140Z setup_script_args="" 2025-12-05T22:25:03.8655535Z if [[ zephyr-preset == "bare_metal" ]]; then 2025-12-05T22:25:03.8656065Z toolchain_prefix=arm-none-eabi- 2025-12-05T22:25:03.8656631Z threshold="110592" # 108 KiB 2025-12-05T22:25:03.8657042Z toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake 2025-12-05T22:25:03.8657518Z elif [[ zephyr-preset == "zephyr-preset" ]]; then 2025-12-05T22:25:03.8657902Z setup_script_args="--target-toolchain zephyr" 2025-12-05T22:25:03.8658270Z toolchain_prefix=arm-zephyr-eabi- 2025-12-05T22:25:03.8658569Z threshold="135768" # 136 KiB 2025-12-05T22:25:03.8658970Z toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake 2025-12-05T22:25:03.8659404Z else 2025-12-05T22:25:03.8659640Z echo "Fail unsupport OS selection zephyr-preset" 2025-12-05T22:25:03.8660111Z exit 1 2025-12-05T22:25:03.8660307Z fi 2025-12-05T22:25:03.8660408Z 2025-12-05T22:25:03.8660505Z source .ci/scripts/utils.sh 2025-12-05T22:25:03.8660812Z install_executorch "--use-pt-pinned-commit" 2025-12-05T22:25:03.8661238Z .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} 2025-12-05T22:25:03.8661696Z source examples/arm/ethos-u-scratch/setup_path.sh 2025-12-05T22:25:03.8661947Z 2025-12-05T22:25:03.8662035Z # User toolchain 2025-12-05T22:25:03.8662277Z ${toolchain_prefix}c++ --version 2025-12-05T22:25:03.8662464Z 2025-12-05T22:25:03.8662574Z # Setup cmake target to desired toolchain 2025-12-05T22:25:03.8663039Z toolchain_cmake=$(realpath ${toolchain_cmake}) 2025-12-05T22:25:03.8663510Z 2025-12-05T22:25:03.8663696Z # Build and run size test 2025-12-05T22:25:03.8663983Z if [[ zephyr-preset == "bare_metal" ]]; then 2025-12-05T22:25:03.8664583Z bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" 2025-12-05T22:25:03.8665203Z elif [[ zephyr-preset == "zephyr-preset" ]]; then 2025-12-05T22:25:03.8666188Z CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . 2025-12-05T22:25:03.8667211Z cmake --build cmake-out -j9 --target install --config Release 2025-12-05T22:25:03.8668068Z CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test 2025-12-05T22:25:03.8668955Z cmake --build cmake-out/test -j9 --config Release 2025-12-05T22:25:03.8669279Z else 2025-12-05T22:25:03.8669533Z echo "Fail unsupport OS selection zephyr-preset" 2025-12-05T22:25:03.8669865Z exit 1 2025-12-05T22:25:03.8670059Z fi 2025-12-05T22:25:03.8670162Z 2025-12-05T22:25:03.8670262Z elf="cmake-out/test/size_test" 2025-12-05T22:25:03.8670461Z 2025-12-05T22:25:03.8670549Z # Dump basic info 2025-12-05T22:25:03.8670778Z ls -al ${elf} 2025-12-05T22:25:03.8670996Z ${toolchain_prefix}size ${elf} 2025-12-05T22:25:03.8671178Z 2025-12-05T22:25:03.8671273Z # Dump symbol 2025-12-05T22:25:03.8671509Z python .github/scripts/run_nm.py -e ${elf} 2025-12-05T22:25:03.8672006Z python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" 2025-12-05T22:25:03.8672651Z python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" 2025-12-05T22:25:03.8673146Z 2025-12-05T22:25:03.8673256Z # Add basic guard - TODO: refine this! 2025-12-05T22:25:03.8673561Z ${toolchain_prefix}strip ${elf} 2025-12-05T22:25:03.8673845Z output=$(ls -la ${elf}) 2025-12-05T22:25:03.8674086Z arr=($output) 2025-12-05T22:25:03.8674281Z size=${arr[4]} 2025-12-05T22:25:03.8674524Z echo "size: $size, threshold: $threshold" 2025-12-05T22:25:03.8674842Z if [[ "$size" -le "$threshold" ]]; then 2025-12-05T22:25:03.8675155Z echo "Success $size <= $threshold" 2025-12-05T22:25:03.8675419Z else 2025-12-05T22:25:03.8675623Z echo "Fail $size > $threshold" 2025-12-05T22:25:03.8675881Z exit 1 2025-12-05T22:25:03.8676075Z fi 2025-12-05T22:25:03.8676246Z ' 2025-12-05T22:25:03.8676535Z + chmod +x /home/ec2-user/actions-runner/_work/_temp/exec_script 2025-12-05T22:25:03.8677307Z + python3 /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py '' 2025-12-05T22:25:22.9225802Z Running command: 2025-12-05T22:25:22.9232139Z 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_19977408189" `# 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_23675c2a-6ef5-4baf-99c3-6fc3d72056ca":"/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_23675c2a-6ef5-4baf-99c3-6fc3d72056ca" -w /pytorch/executorch "308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4" 2025-12-05T22:25:22.9238506Z 2025-12-05T22:25:22.9238825Z a725f1c22e3858929068cfe9dfcce09290af494fb1bd013ec9c6f317e7180479 2025-12-05T22:25:22.9239609Z Running command: docker exec -t a725f1c22e3858929068cfe9dfcce09290af494fb1bd013ec9c6f317e7180479 /exec 2025-12-05T22:25:22.9240194Z ++ conda env list --json 2025-12-05T22:25:22.9240437Z ++ local cmd=env 2025-12-05T22:25:22.9240705Z ++ case "$cmd" in 2025-12-05T22:25:22.9240949Z ++ __conda_exe env list --json 2025-12-05T22:25:22.9241210Z ++ jq -r '.envs | .[-1]' 2025-12-05T22:25:22.9241482Z ++ /opt/conda/bin/conda env list --json 2025-12-05T22:25:22.9241791Z + CONDA_ENV=/opt/conda/envs/py_3.10 2025-12-05T22:25:22.9242106Z + conda activate /opt/conda/envs/py_3.10 2025-12-05T22:25:22.9242401Z + local cmd=activate 2025-12-05T22:25:22.9242631Z + case "$cmd" in 2025-12-05T22:25:22.9242889Z + __conda_activate activate /opt/conda/envs/py_3.10 2025-12-05T22:25:22.9243229Z + '[' -n '' ']' 2025-12-05T22:25:22.9243435Z + local ask_conda 2025-12-05T22:25:22.9243665Z ++ PS1='(base) ' 2025-12-05T22:25:22.9243964Z ++ __conda_exe shell.posix activate /opt/conda/envs/py_3.10 2025-12-05T22:25:22.9244509Z ++ /opt/conda/bin/conda shell.posix activate /opt/conda/envs/py_3.10 2025-12-05T22:25:22.9244941Z + ask_conda='PS1='\''(py_3.10) '\'' 2025-12-05T22:25:22.9245965Z 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-12-05T22:25:22.9246914Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-12-05T22:25:22.9247259Z export CONDA_SHLVL='\''2'\'' 2025-12-05T22:25:22.9247556Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-12-05T22:25:22.9247914Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-12-05T22:25:22.9248256Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-12-05T22:25:22.9248596Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-12-05T22:25:22.9248909Z export _CE_M='\'''\'' 2025-12-05T22:25:22.9249162Z export _CE_CONDA='\'''\'' 2025-12-05T22:25:22.9249470Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-12-05T22:25:22.9249837Z + eval 'PS1='\''(py_3.10) '\'' 2025-12-05T22:25:22.9250684Z 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-12-05T22:25:22.9251621Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-12-05T22:25:22.9251980Z export CONDA_SHLVL='\''2'\'' 2025-12-05T22:25:22.9252259Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-12-05T22:25:22.9252607Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-12-05T22:25:22.9252948Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-12-05T22:25:22.9253288Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-12-05T22:25:22.9253598Z export _CE_M='\'''\'' 2025-12-05T22:25:22.9253842Z export _CE_CONDA='\'''\'' 2025-12-05T22:25:22.9254148Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-12-05T22:25:22.9254575Z ++ PS1='(py_3.10) ' 2025-12-05T22:25:22.9255373Z ++ 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-12-05T22:25:22.9256765Z ++ 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-12-05T22:25:22.9257639Z ++ export CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-12-05T22:25:22.9257971Z ++ CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-12-05T22:25:22.9258275Z ++ export CONDA_SHLVL=2 2025-12-05T22:25:22.9258502Z ++ CONDA_SHLVL=2 2025-12-05T22:25:22.9258740Z ++ export CONDA_DEFAULT_ENV=py_3.10 2025-12-05T22:25:22.9259045Z ++ CONDA_DEFAULT_ENV=py_3.10 2025-12-05T22:25:22.9259333Z ++ export 'CONDA_PROMPT_MODIFIER=(py_3.10) ' 2025-12-05T22:25:22.9259668Z ++ CONDA_PROMPT_MODIFIER='(py_3.10) ' 2025-12-05T22:25:22.9259971Z ++ export CONDA_PREFIX_1=/opt/conda 2025-12-05T22:25:22.9260270Z ++ CONDA_PREFIX_1=/opt/conda 2025-12-05T22:25:22.9260541Z ++ export CONDA_EXE=/opt/conda/bin/conda 2025-12-05T22:25:22.9260858Z ++ CONDA_EXE=/opt/conda/bin/conda 2025-12-05T22:25:22.9261121Z ++ export _CE_M= 2025-12-05T22:25:22.9261334Z ++ _CE_M= 2025-12-05T22:25:22.9261524Z ++ export _CE_CONDA= 2025-12-05T22:25:22.9261749Z ++ _CE_CONDA= 2025-12-05T22:25:22.9262003Z ++ export CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-12-05T22:25:22.9262350Z ++ CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-12-05T22:25:22.9262654Z + __conda_hashr 2025-12-05T22:25:22.9262856Z + '[' -n '' ']' 2025-12-05T22:25:22.9263065Z + '[' -n '' ']' 2025-12-05T22:25:22.9263263Z + hash -r 2025-12-05T22:25:22.9263701Z + cxx_flags='-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0' 2025-12-05T22:25:22.9264221Z + setup_script_args= 2025-12-05T22:25:22.9264495Z + [[ zephyr-preset == \b\a\r\e\_\m\e\t\a\l ]] 2025-12-05T22:25:22.9264847Z + [[ zephyr-preset == \z\e\p\h\y\r\-\p\r\e\s\e\t ]] 2025-12-05T22:25:22.9265231Z + setup_script_args='--target-toolchain zephyr' 2025-12-05T22:25:22.9265586Z + toolchain_prefix=arm-zephyr-eabi- 2025-12-05T22:25:22.9265869Z + threshold=135768 2025-12-05T22:25:22.9266246Z + toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake 2025-12-05T22:25:22.9266695Z + source .ci/scripts/utils.sh 2025-12-05T22:25:22.9267002Z + install_executorch --use-pt-pinned-commit 2025-12-05T22:25:22.9267387Z + which pip 2025-12-05T22:25:22.9267615Z /opt/conda/envs/py_3.10/bin/pip 2025-12-05T22:25:22.9267926Z + ./install_executorch.sh --use-pt-pinned-commit 2025-12-05T22:25:22.9268395Z 2025-12-05 22:25:22,100 [ExecuTorch] INFO: All required submodules are present. 2025-12-05T22:25:22.9268952Z Attempting to detect CUDA via nvcc... 2025-12-05T22:25:22.9269542Z CUDA detection failed (nvcc (CUDA compiler) is not found in PATH. Install the CUDA toolkit.), using CPU-only PyTorch 2025-12-05T22:25:22.9270377Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-12-05T22:25:22.9271219Z Requirement already satisfied: torch in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (2.10.0a0+gitb31bad1) 2025-12-05T22:25:22.9271967Z Collecting cmake<4.0.0,>=3.29 (from -r requirements-dev.txt (line 3)) 2025-12-05T22:25:22.9272617Z Downloading cmake-3.31.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.3 kB) 2025-12-05T22:25:22.9273631Z Requirement already satisfied: packaging>=24.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 4)) (25.0) 2025-12-05T22:25:22.9274809Z Requirement already satisfied: pip>=23 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 5)) (25.2) 2025-12-05T22:25:22.9275949Z Requirement already satisfied: pyyaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 6)) (6.0.1) 2025-12-05T22:25:22.9277157Z Requirement already satisfied: setuptools>=77.0.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 7)) (80.9.0) 2025-12-05T22:25:22.9278426Z Requirement already satisfied: wheel in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 8)) (0.45.1) 2025-12-05T22:25:22.9279568Z Requirement already satisfied: zstd in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 9)) (1.5.5.1) 2025-12-05T22:25:22.9280761Z Requirement already satisfied: certifi in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 10)) (2025.11.12) 2025-12-05T22:25:22.9281641Z Collecting lintrunner==0.12.7 (from -r requirements-dev.txt (line 11)) 2025-12-05T22:25:22.9282352Z Downloading lintrunner-0.12.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.2 kB) 2025-12-05T22:25:22.9283105Z Collecting lintrunner-adapters==0.12.6 (from -r requirements-dev.txt (line 12)) 2025-12-05T22:25:22.9283742Z Downloading lintrunner_adapters-0.12.6-py3-none-any.whl.metadata (3.4 kB) 2025-12-05T22:25:22.9284804Z Requirement already satisfied: click<9.0.0,>=8.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from lintrunner-adapters==0.12.6->-r requirements-dev.txt (line 12)) (8.3.0) 2025-12-05T22:25:22.9285995Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.20.0) 2025-12-05T22:25:22.9287017Z Requirement already satisfied: typing-extensions>=4.10.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (4.15.0) 2025-12-05T22:25:22.9288036Z 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-12-05T22:25:22.9288989Z Requirement already satisfied: networkx>=2.5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.4.2) 2025-12-05T22:25:22.9289941Z Requirement already satisfied: jinja2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.1.6) 2025-12-05T22:25:22.9290896Z Requirement already satisfied: fsspec>=0.8.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (2025.10.0) 2025-12-05T22:25:22.9291908Z 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-12-05T22:26:13.2905489Z Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from jinja2->torch) (3.0.3) 2025-12-05T22:26:13.2907069Z Downloading lintrunner-0.12.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB) 2025-12-05T22:26:13.2908742Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.2 MB ? eta -:--:-- 2025-12-05T22:26:13.2909495Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.2/2.2 MB 94.5 MB/s 0:00:00 2025-12-05T22:26:13.2910195Z [?25hDownloading lintrunner_adapters-0.12.6-py3-none-any.whl (62 kB) 2025-12-05T22:26:13.2910888Z Downloading cmake-3.31.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.8 MB) 2025-12-05T22:26:13.2911738Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/27.8 MB ? eta -:--:-- 2025-12-05T22:26:13.2912514Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 27.8/27.8 MB 164.8 MB/s eta 0:00:01 2025-12-05T22:26:13.2913322Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27.8/27.8 MB 130.2 MB/s 0:00:00 2025-12-05T22:26:13.2914049Z [?25hInstalling collected packages: lintrunner-adapters, lintrunner, cmake 2025-12-05T22:26:13.2914521Z [?25l 2025-12-05T22:26:13.2914992Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 2/3 [cmake] 2025-12-05T22:26:13.2915634Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 2/3 [cmake] 2025-12-05T22:26:13.2916271Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 2/3 [cmake] 2025-12-05T22:26:13.2917090Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 2/3 [cmake] 2025-12-05T22:26:13.2917667Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 2/3 [cmake] 2025-12-05T22:26:13.2918480Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 2/3 [cmake] 2025-12-05T22:26:13.2919056Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3/3 [cmake] 2025-12-05T22:26:13.2919468Z [?25h 2025-12-05T22:26:13.2920010Z Successfully installed cmake-3.31.10 lintrunner-0.12.7 lintrunner-adapters-0.12.6 2025-12-05T22:26:13.2920536Z Processing ./third-party/ao 2025-12-05T22:26:13.2920978Z Preparing metadata (setup.py) ... [?25l- done 2025-12-05T22:26:13.2921447Z [?25hProcessing ./extension/llm/tokenizers 2025-12-05T22:26:13.2921925Z Preparing metadata (pyproject.toml) ... [?25l- \ done 2025-12-05T22:26:13.2922501Z [?25hCollecting tiktoken (from pytorch_tokenizers==1.0.1) 2025-12-05T22:26:13.2923138Z Downloading tiktoken-0.12.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (6.7 kB) 2025-12-05T22:26:13.2924102Z Requirement already satisfied: tokenizers in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytorch_tokenizers==1.0.1) (0.22.1) 2025-12-05T22:26:13.2925005Z Collecting sentencepiece (from pytorch_tokenizers==1.0.1) 2025-12-05T22:26:13.2925759Z Downloading sentencepiece-0.2.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (10 kB) 2025-12-05T22:26:13.2926951Z Requirement already satisfied: regex>=2022.1.18 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tiktoken->pytorch_tokenizers==1.0.1) (2025.11.3) 2025-12-05T22:26:13.2928314Z Requirement already satisfied: requests>=2.26.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tiktoken->pytorch_tokenizers==1.0.1) (2.32.5) 2025-12-05T22:26:13.2929720Z 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==1.0.1) (3.4.4) 2025-12-05T22:26:13.2931189Z 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==1.0.1) (3.11) 2025-12-05T22:26:13.2932769Z 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==1.0.1) (2.5.0) 2025-12-05T22:26:13.2934260Z 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==1.0.1) (2025.11.12) 2025-12-05T22:26:13.2935734Z Requirement already satisfied: huggingface-hub<2.0,>=0.16.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tokenizers->pytorch_tokenizers==1.0.1) (0.36.0) 2025-12-05T22:26:13.2937244Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<2.0,>=0.16.4->tokenizers->pytorch_tokenizers==1.0.1) (3.20.0) 2025-12-05T22:26:13.2938830Z Requirement already satisfied: fsspec>=2023.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<2.0,>=0.16.4->tokenizers->pytorch_tokenizers==1.0.1) (2025.10.0) 2025-12-05T22:26:13.2940361Z Requirement already satisfied: packaging>=20.9 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<2.0,>=0.16.4->tokenizers->pytorch_tokenizers==1.0.1) (25.0) 2025-12-05T22:26:13.2941909Z Requirement already satisfied: pyyaml>=5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<2.0,>=0.16.4->tokenizers->pytorch_tokenizers==1.0.1) (6.0.1) 2025-12-05T22:26:13.2943692Z Requirement already satisfied: tqdm>=4.42.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<2.0,>=0.16.4->tokenizers->pytorch_tokenizers==1.0.1) (4.67.1) 2025-12-05T22:26:13.2945363Z Requirement already satisfied: typing-extensions>=3.7.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<2.0,>=0.16.4->tokenizers->pytorch_tokenizers==1.0.1) (4.15.0) 2025-12-05T22:26:13.2947001Z Requirement already satisfied: hf-xet<2.0.0,>=1.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<2.0,>=0.16.4->tokenizers->pytorch_tokenizers==1.0.1) (1.2.0) 2025-12-05T22:26:13.2948139Z Downloading sentencepiece-0.2.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.4 MB) 2025-12-05T22:26:13.2949107Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.4 MB ? eta -:--:-- 2025-12-05T22:26:13.2949777Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 64.0 MB/s 0:00:00 2025-12-05T22:26:13.2950435Z [?25hDownloading tiktoken-0.12.0-cp310-cp310-manylinux_2_28_x86_64.whl (1.2 MB) 2025-12-05T22:26:13.2951134Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.2 MB ? eta -:--:-- 2025-12-05T22:26:13.2951788Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 67.2 MB/s 0:00:00 2025-12-05T22:26:13.2952417Z [?25hBuilding wheels for collected packages: torchao, pytorch_tokenizers 2025-12-05T22:26:13.2954971Z  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-12-05T22:26:13.2957160Z  Building wheel for torchao (setup.py) ... [?25l- \ | / done 2025-12-05T22:26:13.2958275Z [?25h Created wheel for torchao: filename=torchao-0.14.0+git01849b2-py3-none-any.whl size=1052596 sha256=1cde6beb5ceac0f3357f0ceef3e79462d9154661108af7661d4ee6beea224886 2025-12-05T22:26:13.2959531Z Stored in directory: /tmp/pip-ephem-wheel-cache-xhnsrt8l/wheels/0b/23/ff/2261dc1c4a27252503fe159d9fc88676b133e0e8d621abf36f 2025-12-05T22:26:16.1266123Z Building wheel for pytorch_tokenizers (pyproject.toml) ... [?25l- \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - done 2025-12-05T22:26:16.1268393Z [?25h Created wheel for pytorch_tokenizers: filename=pytorch_tokenizers-1.0.1-cp310-cp310-linux_x86_64.whl size=1292200 sha256=5f20a686160f338719c1bfd73b49a8c62370a6e61e8b2f1d33af1c8f42fd81a9 2025-12-05T22:26:16.1269719Z Stored in directory: /tmp/pip-ephem-wheel-cache-xhnsrt8l/wheels/27/7b/a1/358699b32a468639d6f9ef263f9676280bc5ee318b0bd9a0b2 2025-12-05T22:26:16.1270491Z Successfully built torchao pytorch_tokenizers 2025-12-05T22:26:16.1271027Z Installing collected packages: torchao, sentencepiece, tiktoken, pytorch_tokenizers 2025-12-05T22:26:16.1271548Z [?25l 2025-12-05T22:26:16.1271950Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/4 [torchao] 2025-12-05T22:26:16.1272468Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/4 [torchao] 2025-12-05T22:26:16.1272969Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/4 [torchao] 2025-12-05T22:26:16.1273492Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/4 [torchao] 2025-12-05T22:26:16.1274020Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4/4 [pytorch_tokenizers] 2025-12-05T22:26:16.1274414Z [?25h 2025-12-05T22:26:16.1275071Z Successfully installed pytorch_tokenizers-1.0.1 sentencepiece-0.2.1 tiktoken-0.12.0 torchao-0.14.0+git01849b2 2025-12-05T22:26:16.1275883Z Using pip 25.2 from /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pip (python 3.10) 2025-12-05T22:26:16.1276407Z Processing /pytorch/executorch 2025-12-05T22:26:16.1276744Z Running command Preparing metadata (pyproject.toml) 2025-12-05T22:26:16.1277749Z /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-12-05T22:26:16.1278667Z !! 2025-12-05T22:26:16.1278786Z 2025-12-05T22:26:16.1278913Z ******************************************************************************** 2025-12-05T22:26:16.1279771Z 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-12-05T22:26:16.1280494Z 2025-12-05T22:26:16.1280715Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-12-05T22:26:16.1281322Z or your builds will no longer be supported. 2025-12-05T22:26:16.1281565Z 2025-12-05T22:26:16.1281934Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-12-05T22:26:16.1282526Z ******************************************************************************** 2025-12-05T22:26:16.1282763Z 2025-12-05T22:26:16.1282852Z !! 2025-12-05T22:26:16.1294197Z corresp(dist, value, root_dir) 2025-12-05T22:26:16.1295622Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:55: SetuptoolsDeprecationWarning: 'tool.setuptools.license-files' is deprecated in favor of 'project.license-files' (available on setuptools>=77.0.0). 2025-12-05T22:26:16.1297010Z !! 2025-12-05T22:26:16.1297120Z 2025-12-05T22:26:16.1297240Z ******************************************************************************** 2025-12-05T22:26:16.1297482Z 2025-12-05T22:26:16.1297792Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-12-05T22:26:16.1298268Z or your builds will no longer be supported. 2025-12-05T22:26:16.1298590Z 2025-12-05T22:26:16.1298988Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license-files for details. 2025-12-05T22:26:16.1299681Z ******************************************************************************** 2025-12-05T22:26:16.1299918Z 2025-12-05T22:26:16.1299995Z !! 2025-12-05T22:26:16.1300228Z _apply_tool_table(dist, config, filename) 2025-12-05T22:26:16.1300723Z 2025-12-05 22:26:15,245 [INFO] running dist_info 2025-12-05T22:26:16.1301295Z 2025-12-05 22:26:15,256 [INFO] creating /tmp/pip-modern-metadata-hyz_o_r1/executorch.egg-info 2025-12-05T22:26:16.1302004Z 2025-12-05 22:26:15,256 [INFO] writing /tmp/pip-modern-metadata-hyz_o_r1/executorch.egg-info/PKG-INFO 2025-12-05T22:26:16.1302919Z 2025-12-05 22:26:15,257 [INFO] writing dependency_links to /tmp/pip-modern-metadata-hyz_o_r1/executorch.egg-info/dependency_links.txt 2025-12-05T22:26:16.1303927Z 2025-12-05 22:26:15,257 [INFO] writing entry points to /tmp/pip-modern-metadata-hyz_o_r1/executorch.egg-info/entry_points.txt 2025-12-05T22:26:16.1304832Z 2025-12-05 22:26:15,258 [INFO] writing requirements to /tmp/pip-modern-metadata-hyz_o_r1/executorch.egg-info/requires.txt 2025-12-05T22:26:16.1305747Z 2025-12-05 22:26:15,258 [INFO] writing top-level names to /tmp/pip-modern-metadata-hyz_o_r1/executorch.egg-info/top_level.txt 2025-12-05T22:26:16.1306643Z 2025-12-05 22:26:15,259 [INFO] writing manifest file '/tmp/pip-modern-metadata-hyz_o_r1/executorch.egg-info/SOURCES.txt' 2025-12-05T22:26:16.1307598Z 2025-12-05 22:26:15,847 [INFO] reading manifest file '/tmp/pip-modern-metadata-hyz_o_r1/executorch.egg-info/SOURCES.txt' 2025-12-05T22:26:16.1308258Z 2025-12-05 22:26:15,848 [INFO] adding license file 'LICENSE' 2025-12-05T22:26:16.1308991Z 2025-12-05 22:26:15,873 [INFO] writing manifest file '/tmp/pip-modern-metadata-hyz_o_r1/executorch.egg-info/SOURCES.txt' 2025-12-05T22:26:16.1309850Z 2025-12-05 22:26:15,873 [INFO] creating '/tmp/pip-modern-metadata-hyz_o_r1/executorch-1.1.0a0+42e3222.dist-info' 2025-12-05T22:26:16.1310632Z Preparing metadata (pyproject.toml) ... [?25l[?25hdone 2025-12-05T22:26:16.1311447Z Requirement already satisfied: expecttest in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (0.1.6) 2025-12-05T22:26:16.1312253Z Collecting flatbuffers (from executorch==1.1.0a0+42e3222) 2025-12-05T22:26:16.1313519Z Obtaining dependency information for flatbuffers from https://files.pythonhosted.org/packages/ee/1b/00a78aa2e8fbd63f9af08c9c19e6deb3d5d66b4dda677a0f61654680ee89/flatbuffers-25.9.23-py2.py3-none-any.whl.metadata 2025-12-05T22:26:16.1314940Z Downloading flatbuffers-25.9.23-py2.py3-none-any.whl.metadata (875 bytes) 2025-12-05T22:26:16.1315957Z Requirement already satisfied: hypothesis in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (6.84.2) 2025-12-05T22:26:16.1316725Z Collecting kgb (from executorch==1.1.0a0+42e3222) 2025-12-05T22:26:16.1317833Z Obtaining dependency information for kgb from https://files.pythonhosted.org/packages/a6/7d/002c8de97a3f65ab7c006b815252b3fcb708961af538ceaead08815de79f/kgb-7.2-py2.py3-none-any.whl.metadata 2025-12-05T22:26:16.1319156Z Downloading kgb-7.2-py2.py3-none-any.whl.metadata (21 kB) 2025-12-05T22:26:16.1319969Z Requirement already satisfied: mpmath==1.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (1.3.0) 2025-12-05T22:26:16.1321090Z Requirement already satisfied: numpy>=2.0.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (2.2.6) 2025-12-05T22:26:16.1322193Z Requirement already satisfied: packaging in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (25.0) 2025-12-05T22:26:16.1323322Z Requirement already satisfied: pandas>=2.2.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (2.3.3) 2025-12-05T22:26:16.1324457Z Requirement already satisfied: parameterized in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (0.9.0) 2025-12-05T22:26:16.1325598Z Requirement already satisfied: pytest<9.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (7.2.0) 2025-12-05T22:26:16.1326395Z Collecting pytest-xdist (from executorch==1.1.0a0+42e3222) 2025-12-05T22:26:16.1327679Z Obtaining dependency information for pytest-xdist from https://files.pythonhosted.org/packages/ca/31/d4e37e9e550c2b92a9cbc2e4d0b7420a27224968580b5a447f420847c975/pytest_xdist-3.8.0-py3-none-any.whl.metadata 2025-12-05T22:26:16.1329075Z Downloading pytest_xdist-3.8.0-py3-none-any.whl.metadata (3.0 kB) 2025-12-05T22:26:16.1329640Z Collecting pytest-rerunfailures==15.1 (from executorch==1.1.0a0+42e3222) 2025-12-05T22:26:16.1331033Z Obtaining dependency information for pytest-rerunfailures==15.1 from https://files.pythonhosted.org/packages/f3/30/11d836ff01c938969efa319b4ebe2374ed79d28043a12bfc908577aab9f3/pytest_rerunfailures-15.1-py3-none-any.whl.metadata 2025-12-05T22:26:16.1332436Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl.metadata (20 kB) 2025-12-05T22:26:16.1333006Z Collecting pytest-json-report (from executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.0455216Z Obtaining dependency information for pytest-json-report from https://files.pythonhosted.org/packages/81/35/d07400c715bf8a88aa0c1ee9c9eb6050ca7fe5b39981f0eea773feeb0681/pytest_json_report-1.5.0-py3-none-any.whl.metadata 2025-12-05T22:26:17.0456651Z Downloading pytest_json_report-1.5.0-py3-none-any.whl.metadata (15 kB) 2025-12-05T22:26:17.0457564Z Requirement already satisfied: pytorch-tokenizers in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (1.0.1) 2025-12-05T22:26:17.0458744Z Requirement already satisfied: pyyaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (6.0.1) 2025-12-05T22:26:17.0459855Z Requirement already satisfied: ruamel.yaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (0.18.15) 2025-12-05T22:26:17.0460977Z Requirement already satisfied: sympy in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (1.14.0) 2025-12-05T22:26:17.0461741Z Collecting tabulate (from executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.0462896Z Obtaining dependency information for tabulate from https://files.pythonhosted.org/packages/40/44/4a5f08c96eb108af5cb50b41f76142f0afa346dfa99d5296fe7202a11854/tabulate-0.9.0-py3-none-any.whl.metadata 2025-12-05T22:26:17.0464116Z Downloading tabulate-0.9.0-py3-none-any.whl.metadata (34 kB) 2025-12-05T22:26:17.0464994Z Requirement already satisfied: typing-extensions>=4.10.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch==1.1.0a0+42e3222) (4.15.0) 2025-12-05T22:26:17.0466084Z Collecting coremltools==9.0 (from executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.0467405Z Obtaining dependency information for coremltools==9.0 from https://files.pythonhosted.org/packages/29/4e/4dfc48820739f00dc0e6d850ac8a612d8162c89de89125022adbf2b6ac00/coremltools-9.0-cp310-none-manylinux1_x86_64.whl.metadata 2025-12-05T22:26:17.0468887Z Downloading coremltools-9.0-cp310-none-manylinux1_x86_64.whl.metadata (2.7 kB) 2025-12-05T22:26:17.0470371Z Link requires a different Python (3.10.19 not in: '>=3.11'): https://files.pythonhosted.org/packages/70/a2/b45d886895e78b4fa546d0ef49beac7c218eb4f37d879a7067ca60d35844/scikit_learn-1.8.0rc1.tar.gz (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.11) 2025-12-05T22:26:17.0471788Z Collecting scikit-learn==1.7.1 (from executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.0473222Z Obtaining dependency information for scikit-learn==1.7.1 from https://files.pythonhosted.org/packages/fb/a4/e488acdece6d413f370a9589a7193dac79cd486b2e418d3276d6ea0b9305/scikit_learn-1.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata 2025-12-05T22:26:17.0474840Z Downloading scikit_learn-1.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (11 kB) 2025-12-05T22:26:17.0475536Z Collecting hydra-core>=1.3.0 (from executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.0476751Z Obtaining dependency information for hydra-core>=1.3.0 from https://files.pythonhosted.org/packages/c6/50/e0edd38dcd63fb26a8547f13d28f7a008bc4a3fd4eb4ff030673f22ad41a/hydra_core-1.3.2-py3-none-any.whl.metadata 2025-12-05T22:26:17.0478152Z Downloading hydra_core-1.3.2-py3-none-any.whl.metadata (5.5 kB) 2025-12-05T22:26:17.0478669Z Collecting omegaconf>=2.3.0 (from executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.0479867Z Obtaining dependency information for omegaconf>=2.3.0 from https://files.pythonhosted.org/packages/e3/94/1843518e420fa3ed6919835845df698c7e27e183cb997394e4a670973a65/omegaconf-2.3.0-py3-none-any.whl.metadata 2025-12-05T22:26:17.0481112Z Downloading omegaconf-2.3.0-py3-none-any.whl.metadata (3.9 kB) 2025-12-05T22:26:17.0481673Z Collecting protobuf>=3.1.0 (from coremltools==9.0->executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.0483017Z Obtaining dependency information for protobuf>=3.1.0 from https://files.pythonhosted.org/packages/1d/2a/3c5f05a4af06649547027d288747f68525755de692a26a7720dced3652c0/protobuf-6.33.1-cp39-abi3-manylinux2014_x86_64.whl.metadata 2025-12-05T22:26:17.0484390Z Downloading protobuf-6.33.1-cp39-abi3-manylinux2014_x86_64.whl.metadata (593 bytes) 2025-12-05T22:26:17.0485346Z Requirement already satisfied: tqdm in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==9.0->executorch==1.1.0a0+42e3222) (4.67.1) 2025-12-05T22:26:17.0486612Z Requirement already satisfied: attrs>=21.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==9.0->executorch==1.1.0a0+42e3222) (25.4.0) 2025-12-05T22:26:17.0487517Z Collecting cattrs (from coremltools==9.0->executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.0488733Z Obtaining dependency information for cattrs from https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl.metadata 2025-12-05T22:26:17.0490161Z Downloading cattrs-25.3.0-py3-none-any.whl.metadata (8.4 kB) 2025-12-05T22:26:17.0490686Z Collecting pyaml (from coremltools==9.0->executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.0491889Z Obtaining dependency information for pyaml from https://files.pythonhosted.org/packages/a8/ee/a878f2ad010cbccb311f947f0f2f09d38f613938ee28c34e60fceecc75a1/pyaml-25.7.0-py3-none-any.whl.metadata 2025-12-05T22:26:17.0493077Z Downloading pyaml-25.7.0-py3-none-any.whl.metadata (12 kB) 2025-12-05T22:26:17.0493539Z Collecting pytest<9.0 (from executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.0494696Z Obtaining dependency information for pytest<9.0 from https://files.pythonhosted.org/packages/a8/a4/20da314d277121d6534b3a980b29035dcd51e6744bd79075a6ce8fa4eb8d/pytest-8.4.2-py3-none-any.whl.metadata 2025-12-05T22:26:17.0495956Z Downloading pytest-8.4.2-py3-none-any.whl.metadata (7.7 kB) 2025-12-05T22:26:17.0497312Z Link requires a different Python (3.10.19 not in: '>=3.7,<3.10'): https://files.pythonhosted.org/packages/99/f1/c00d6be56e1a718a3068079e3ec8ce044d7179345280f6a3f5066068af0d/scipy-1.6.2.tar.gz (from https://pypi.org/simple/scipy/) (requires-python:>=3.7,<3.10) 2025-12-05T22:26:17.0499485Z Link requires a different Python (3.10.19 not in: '>=3.7,<3.10'): https://files.pythonhosted.org/packages/fe/fd/8704c7b7b34cdac850485e638346025ca57c5a859934b9aa1be5399b33b7/scipy-1.6.3.tar.gz (from https://pypi.org/simple/scipy/) (requires-python:>=3.7,<3.10) 2025-12-05T22:26:17.0501659Z Link requires a different Python (3.10.19 not in: '>=3.7,<3.10'): https://files.pythonhosted.org/packages/bb/bb/944f559d554df6c9adf037aa9fc982a9706ee0e96c0d5beac701cb158900/scipy-1.7.0.tar.gz (from https://pypi.org/simple/scipy/) (requires-python:>=3.7,<3.10) 2025-12-05T22:26:17.0503847Z Link requires a different Python (3.10.19 not in: '>=3.7,<3.10'): https://files.pythonhosted.org/packages/47/33/a24aec22b7be7fdb10ec117a95e1e4099890d8bbc6646902f443fc7719d1/scipy-1.7.1.tar.gz (from https://pypi.org/simple/scipy/) (requires-python:>=3.7,<3.10) 2025-12-05T22:26:17.0506020Z Link requires a different Python (3.10.19 not in: '>=3.11'): https://files.pythonhosted.org/packages/7a/9e/2c8b1e1052151067e73b4192c0c04f355b3d31b485bd74f48bd4e9e87916/scipy-1.16.0rc1.tar.gz (from https://pypi.org/simple/scipy/) (requires-python:>=3.11) 2025-12-05T22:26:17.0508167Z Link requires a different Python (3.10.19 not in: '>=3.11'): https://files.pythonhosted.org/packages/9c/ff/c01073c71d82baeacf71b2ae7fc6d47bb4ff898b3f98ce7897098ca36c26/scipy-1.16.0rc2.tar.gz (from https://pypi.org/simple/scipy/) (requires-python:>=3.11) 2025-12-05T22:26:17.0510478Z Link requires a different Python (3.10.19 not in: '>=3.11'): https://files.pythonhosted.org/packages/81/18/b06a83f0c5ee8cddbde5e3f3d0bb9b702abfa5136ef6d4620ff67df7eee5/scipy-1.16.0.tar.gz (from https://pypi.org/simple/scipy/) (requires-python:>=3.11) 2025-12-05T22:26:17.0512628Z Link requires a different Python (3.10.19 not in: '>=3.11'): https://files.pythonhosted.org/packages/f5/4a/b927028464795439faec8eaf0b03b011005c487bb2d07409f28bf30879c4/scipy-1.16.1.tar.gz (from https://pypi.org/simple/scipy/) (requires-python:>=3.11) 2025-12-05T22:26:17.0514762Z Link requires a different Python (3.10.19 not in: '>=3.11'): https://files.pythonhosted.org/packages/4c/3b/546a6f0bfe791bbb7f8d591613454d15097e53f906308ec6f7c1ce588e8e/scipy-1.16.2.tar.gz (from https://pypi.org/simple/scipy/) (requires-python:>=3.11) 2025-12-05T22:26:17.0516895Z Link requires a different Python (3.10.19 not in: '>=3.11'): https://files.pythonhosted.org/packages/0a/ca/d8ace4f98322d01abcd52d381134344bf7b431eba7ed8b42bdea5a3c2ac9/scipy-1.16.3.tar.gz (from https://pypi.org/simple/scipy/) (requires-python:>=3.11) 2025-12-05T22:26:17.0518421Z Collecting scipy>=1.8.0 (from scikit-learn==1.7.1->executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.0519819Z Obtaining dependency information for scipy>=1.8.0 from https://files.pythonhosted.org/packages/8e/6d/41991e503e51fc1134502694c5fa7a1671501a17ffa12716a4a9151af3df/scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata 2025-12-05T22:26:17.0521307Z Downloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) 2025-12-05T22:26:17.0522008Z Collecting joblib>=1.2.0 (from scikit-learn==1.7.1->executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.0523229Z Obtaining dependency information for joblib>=1.2.0 from https://files.pythonhosted.org/packages/1e/e8/685f47e0d754320684db4425a0967f7d3fa70126bffd76110b7009a0090f/joblib-1.5.2-py3-none-any.whl.metadata 2025-12-05T22:26:17.0524427Z Downloading joblib-1.5.2-py3-none-any.whl.metadata (5.6 kB) 2025-12-05T22:26:17.8798174Z Collecting threadpoolctl>=3.1.0 (from scikit-learn==1.7.1->executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.8799927Z Obtaining dependency information for threadpoolctl>=3.1.0 from https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl.metadata 2025-12-05T22:26:17.8801250Z Downloading threadpoolctl-3.6.0-py3-none-any.whl.metadata (13 kB) 2025-12-05T22:26:17.8802216Z Requirement already satisfied: exceptiongroup>=1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest<9.0->executorch==1.1.0a0+42e3222) (1.3.0) 2025-12-05T22:26:17.8803504Z Requirement already satisfied: iniconfig>=1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest<9.0->executorch==1.1.0a0+42e3222) (2.3.0) 2025-12-05T22:26:17.8804751Z Requirement already satisfied: pluggy<2,>=1.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest<9.0->executorch==1.1.0a0+42e3222) (1.6.0) 2025-12-05T22:26:17.8805991Z Requirement already satisfied: pygments>=2.7.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest<9.0->executorch==1.1.0a0+42e3222) (2.19.2) 2025-12-05T22:26:17.8807207Z Requirement already satisfied: tomli>=1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest<9.0->executorch==1.1.0a0+42e3222) (2.0.1) 2025-12-05T22:26:17.8808200Z Collecting antlr4-python3-runtime==4.9.* (from hydra-core>=1.3.0->executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.8808826Z Downloading antlr4-python3-runtime-4.9.3.tar.gz (117 kB) 2025-12-05T22:26:17.8809235Z Running command python setup.py egg_info 2025-12-05T22:26:17.8809557Z running egg_info 2025-12-05T22:26:17.8809937Z creating /tmp/pip-pip-egg-info-95kt0uvj/antlr4_python3_runtime.egg-info 2025-12-05T22:26:17.8810650Z writing /tmp/pip-pip-egg-info-95kt0uvj/antlr4_python3_runtime.egg-info/PKG-INFO 2025-12-05T22:26:17.8811456Z writing dependency_links to /tmp/pip-pip-egg-info-95kt0uvj/antlr4_python3_runtime.egg-info/dependency_links.txt 2025-12-05T22:26:17.8812340Z writing requirements to /tmp/pip-pip-egg-info-95kt0uvj/antlr4_python3_runtime.egg-info/requires.txt 2025-12-05T22:26:17.8813192Z writing top-level names to /tmp/pip-pip-egg-info-95kt0uvj/antlr4_python3_runtime.egg-info/top_level.txt 2025-12-05T22:26:17.8814015Z writing manifest file '/tmp/pip-pip-egg-info-95kt0uvj/antlr4_python3_runtime.egg-info/SOURCES.txt' 2025-12-05T22:26:17.8814833Z reading manifest file '/tmp/pip-pip-egg-info-95kt0uvj/antlr4_python3_runtime.egg-info/SOURCES.txt' 2025-12-05T22:26:17.8815422Z reading manifest template 'MANIFEST.in' 2025-12-05T22:26:17.8815827Z warning: no files found matching '*.py' under directory 'test' 2025-12-05T22:26:17.8816313Z warning: no files found matching '*.c' under directory 'test' 2025-12-05T22:26:17.8816947Z writing manifest file '/tmp/pip-pip-egg-info-95kt0uvj/antlr4_python3_runtime.egg-info/SOURCES.txt' 2025-12-05T22:26:17.8817799Z Preparing metadata (setup.py) ... [?25l[?25hdone 2025-12-05T22:26:17.8818911Z 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==1.1.0a0+42e3222) (2.9.0.post0) 2025-12-05T22:26:17.8820229Z Requirement already satisfied: pytz>=2020.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas>=2.2.2->executorch==1.1.0a0+42e3222) (2025.2) 2025-12-05T22:26:17.8821485Z Requirement already satisfied: tzdata>=2022.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas>=2.2.2->executorch==1.1.0a0+42e3222) (2025.2) 2025-12-05T22:26:17.8822797Z 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==1.1.0a0+42e3222) (1.17.0) 2025-12-05T22:26:17.8824188Z 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==1.1.0a0+42e3222) (2.4.0) 2025-12-05T22:26:17.8825208Z Collecting pytest-metadata (from pytest-json-report->executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.8826662Z Obtaining dependency information for pytest-metadata from https://files.pythonhosted.org/packages/3e/43/7e7b2ec865caa92f67b8f0e9231a798d102724ca4c0e1f414316be1c1ef2/pytest_metadata-3.1.1-py3-none-any.whl.metadata 2025-12-05T22:26:17.8827983Z Downloading pytest_metadata-3.1.1-py3-none-any.whl.metadata (8.6 kB) 2025-12-05T22:26:17.8828634Z Collecting execnet>=2.1 (from pytest-xdist->executorch==1.1.0a0+42e3222) 2025-12-05T22:26:17.8830085Z Obtaining dependency information for execnet>=2.1 from https://files.pythonhosted.org/packages/ab/84/02fc1827e8cdded4aa65baef11296a9bbe595c474f0d6d758af082d849fd/execnet-2.1.2-py3-none-any.whl.metadata 2025-12-05T22:26:17.8831391Z Downloading execnet-2.1.2-py3-none-any.whl.metadata (2.9 kB) 2025-12-05T22:26:17.8832313Z Requirement already satisfied: tiktoken in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytorch-tokenizers->executorch==1.1.0a0+42e3222) (0.12.0) 2025-12-05T22:26:17.8833664Z Requirement already satisfied: tokenizers in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytorch-tokenizers->executorch==1.1.0a0+42e3222) (0.22.1) 2025-12-05T22:26:17.8835036Z Requirement already satisfied: sentencepiece in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytorch-tokenizers->executorch==1.1.0a0+42e3222) (0.2.1) 2025-12-05T22:26:17.8836376Z 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==1.1.0a0+42e3222) (0.2.14) 2025-12-05T22:26:17.8837762Z Requirement already satisfied: regex>=2022.1.18 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tiktoken->pytorch-tokenizers->executorch==1.1.0a0+42e3222) (2025.11.3) 2025-12-05T22:26:17.8839812Z Requirement already satisfied: requests>=2.26.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tiktoken->pytorch-tokenizers->executorch==1.1.0a0+42e3222) (2.32.5) 2025-12-05T22:26:17.8841430Z 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->executorch==1.1.0a0+42e3222) (3.4.4) 2025-12-05T22:26:17.8842987Z 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->executorch==1.1.0a0+42e3222) (3.11) 2025-12-05T22:26:17.8844501Z 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->executorch==1.1.0a0+42e3222) (2.5.0) 2025-12-05T22:26:17.8846054Z 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->executorch==1.1.0a0+42e3222) (2025.11.12) 2025-12-05T22:26:17.8847769Z Requirement already satisfied: huggingface-hub<2.0,>=0.16.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from tokenizers->pytorch-tokenizers->executorch==1.1.0a0+42e3222) (0.36.0) 2025-12-05T22:26:17.8849366Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<2.0,>=0.16.4->tokenizers->pytorch-tokenizers->executorch==1.1.0a0+42e3222) (3.20.0) 2025-12-05T22:26:17.8851016Z Requirement already satisfied: fsspec>=2023.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<2.0,>=0.16.4->tokenizers->pytorch-tokenizers->executorch==1.1.0a0+42e3222) (2025.10.0) 2025-12-05T22:26:17.8852675Z Requirement already satisfied: hf-xet<2.0.0,>=1.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<2.0,>=0.16.4->tokenizers->pytorch-tokenizers->executorch==1.1.0a0+42e3222) (1.2.0) 2025-12-05T22:26:17.8853790Z Downloading coremltools-9.0-cp310-none-manylinux1_x86_64.whl (2.3 MB) 2025-12-05T22:26:17.8854666Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-12-05T22:26:17.8855341Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 85.7 MB/s 0:00:00 2025-12-05T22:26:17.8856073Z [?25hDownloading pytest_rerunfailures-15.1-py3-none-any.whl (13 kB) 2025-12-05T22:26:17.8856773Z Downloading scikit_learn-1.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (9.7 MB) 2025-12-05T22:26:17.8857563Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/9.7 MB ? eta -:--:-- 2025-12-05T22:26:17.8858226Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.7/9.7 MB 96.8 MB/s 0:00:00 2025-12-05T22:26:17.8858834Z [?25hDownloading pytest-8.4.2-py3-none-any.whl (365 kB) 2025-12-05T22:26:17.8859299Z Downloading hydra_core-1.3.2-py3-none-any.whl (154 kB) 2025-12-05T22:26:17.8859725Z Downloading omegaconf-2.3.0-py3-none-any.whl (79 kB) 2025-12-05T22:26:17.8860149Z Downloading joblib-1.5.2-py3-none-any.whl (308 kB) 2025-12-05T22:26:17.8860644Z Downloading protobuf-6.33.1-cp39-abi3-manylinux2014_x86_64.whl (323 kB) 2025-12-05T22:26:17.8861309Z Downloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (37.7 MB) 2025-12-05T22:26:17.8862088Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/37.7 MB ? eta -:--:-- 2025-12-05T22:26:21.0652343Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 37.7/37.7 MB 289.5 MB/s 0:00:00 2025-12-05T22:26:21.0653166Z [?25hDownloading threadpoolctl-3.6.0-py3-none-any.whl (18 kB) 2025-12-05T22:26:21.0653689Z Downloading cattrs-25.3.0-py3-none-any.whl (70 kB) 2025-12-05T22:26:21.0654280Z Downloading flatbuffers-25.9.23-py2.py3-none-any.whl (30 kB) 2025-12-05T22:26:21.0655166Z Downloading kgb-7.2-py2.py3-none-any.whl (58 kB) 2025-12-05T22:26:21.0655643Z Downloading pyaml-25.7.0-py3-none-any.whl (26 kB) 2025-12-05T22:26:21.0656182Z Downloading pytest_json_report-1.5.0-py3-none-any.whl (13 kB) 2025-12-05T22:26:21.0656820Z Downloading pytest_metadata-3.1.1-py3-none-any.whl (11 kB) 2025-12-05T22:26:21.0657352Z Downloading pytest_xdist-3.8.0-py3-none-any.whl (46 kB) 2025-12-05T22:26:21.0657876Z Downloading execnet-2.1.2-py3-none-any.whl (40 kB) 2025-12-05T22:26:21.0658352Z Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) 2025-12-05T22:26:21.0658975Z Building wheels for collected packages: executorch, antlr4-python3-runtime 2025-12-05T22:26:21.0659734Z Running command Building wheel for executorch (pyproject.toml) 2025-12-05T22:26:21.0661216Z /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-12-05T22:26:21.0662813Z !! 2025-12-05T22:26:21.0663058Z 2025-12-05T22:26:21.0663280Z ******************************************************************************** 2025-12-05T22:26:21.0664292Z 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-12-05T22:26:21.0665022Z 2025-12-05T22:26:21.0665426Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-12-05T22:26:21.0665902Z or your builds will no longer be supported. 2025-12-05T22:26:21.0666144Z 2025-12-05T22:26:21.0666531Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-12-05T22:26:21.0667118Z ******************************************************************************** 2025-12-05T22:26:21.0667371Z 2025-12-05T22:26:21.0667447Z !! 2025-12-05T22:26:21.0667708Z corresp(dist, value, root_dir) 2025-12-05T22:26:21.0669735Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:55: SetuptoolsDeprecationWarning: 'tool.setuptools.license-files' is deprecated in favor of 'project.license-files' (available on setuptools>=77.0.0). 2025-12-05T22:26:21.0671991Z !! 2025-12-05T22:26:21.0672176Z 2025-12-05T22:26:21.0672382Z ******************************************************************************** 2025-12-05T22:26:21.0672793Z 2025-12-05T22:26:21.0673210Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-12-05T22:26:21.0673979Z or your builds will no longer be supported. 2025-12-05T22:26:21.0674225Z 2025-12-05T22:26:21.0674621Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license-files for details. 2025-12-05T22:26:21.0675257Z ******************************************************************************** 2025-12-05T22:26:21.0675498Z 2025-12-05T22:26:21.0675591Z !! 2025-12-05T22:26:21.0675986Z _apply_tool_table(dist, config, filename) 2025-12-05T22:26:21.0676361Z 2025-12-05 22:26:18,324 [INFO] running bdist_wheel 2025-12-05T22:26:21.0676712Z 2025-12-05 22:26:18,334 [INFO] running build 2025-12-05T22:26:21.0677116Z 2025-12-05 22:26:18,334 [INFO] command options for 'CustomBuild': 2025-12-05T22:26:21.0677543Z 2025-12-05 22:26:18,335 [INFO] build_base = pip-out 2025-12-05T22:26:21.0678033Z 2025-12-05 22:26:18,335 [INFO] build_purelib = pip-out/lib 2025-12-05T22:26:21.0678778Z 2025-12-05 22:26:18,335 [INFO] build_platlib = pip-out/lib.linux-x86_64-cpython-310 2025-12-05T22:26:21.0679367Z 2025-12-05 22:26:18,335 [INFO] build_lib = pip-out/lib.linux-x86_64-cpython-310 2025-12-05T22:26:21.0679888Z 2025-12-05 22:26:18,335 [INFO] build_scripts = pip-out/scripts-3.10 2025-12-05T22:26:21.0680396Z 2025-12-05 22:26:18,335 [INFO] build_temp = pip-out/temp.linux-x86_64-cpython-310 2025-12-05T22:26:21.0680889Z 2025-12-05 22:26:18,335 [INFO] plat_name = linux-x86_64 2025-12-05T22:26:21.0681279Z 2025-12-05 22:26:18,335 [INFO] compiler = None 2025-12-05T22:26:21.0681647Z 2025-12-05 22:26:18,335 [INFO] parallel = None 2025-12-05T22:26:21.0682029Z 2025-12-05 22:26:18,335 [INFO] debug = None 2025-12-05T22:26:21.0682550Z 2025-12-05 22:26:18,335 [INFO] force = None 2025-12-05T22:26:21.0683294Z 2025-12-05 22:26:18,335 [INFO] executable = /opt/conda/envs/py_3.10/bin/python 2025-12-05T22:26:21.0684496Z 2025-12-05 22:26:18,335 [INFO] creating /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-12-05T22:26:21.0685719Z 2025-12-05 22:26:18,335 [INFO] clearing /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-12-05T22:26:21.0686269Z Preset CMake variables: 2025-12-05T22:26:21.0686455Z 2025-12-05T22:26:21.0686569Z CMAKE_OSX_DEPLOYMENT_TARGET="12.0" 2025-12-05T22:26:21.0687074Z EXECUTORCH_BUILD_PRESET_FILE="/pytorch/executorch/tools/cmake/preset/pybind.cmake" 2025-12-05T22:26:21.0687477Z 2025-12-05T22:26:21.0687624Z -- The C compiler identification is Clang 12.0.1 2025-12-05T22:26:21.0688029Z -- The CXX compiler identification is Clang 12.0.1 2025-12-05T22:26:21.0688384Z -- Detecting C compiler ABI info 2025-12-05T22:26:21.0688711Z -- Detecting C compiler ABI info - done 2025-12-05T22:26:21.0689105Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-12-05T22:26:21.0689504Z -- Detecting C compile features 2025-12-05T22:26:21.0690049Z -- Detecting C compile features - done 2025-12-05T22:26:21.0690544Z -- Detecting CXX compiler ABI info 2025-12-05T22:26:21.0691062Z -- Detecting CXX compiler ABI info - done 2025-12-05T22:26:21.0691687Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-12-05T22:26:21.0692372Z -- Detecting CXX compile features 2025-12-05T22:26:21.0692702Z -- Detecting CXX compile features - done 2025-12-05T22:26:21.0693183Z -- Loading build preset: /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-12-05T22:26:21.0693667Z -- ccache not found, builds will not be cached 2025-12-05T22:26:21.0694183Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-12-05T22:26:21.0694942Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-12-05T22:26:21.0695610Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-12-05T22:26:21.0696045Z CMake. 2025-12-05T22:26:21.0696162Z 2025-12-05T22:26:21.0696396Z Update the VERSION argument value. Or, use the ... syntax 2025-12-05T22:26:21.0696973Z to tell CMake that the project requires at least but has been updated 2025-12-05T22:26:21.0697478Z to work with policies introduced by or earlier. 2025-12-05T22:26:21.0697743Z 2025-12-05T22:26:21.0697748Z 2025-12-05T22:26:21.0697858Z -- Looking for C++ include unistd.h 2025-12-05T22:26:21.0698193Z -- Looking for C++ include unistd.h - found 2025-12-05T22:26:21.0698522Z -- Looking for C++ include stdint.h 2025-12-05T22:26:21.0698954Z -- Looking for C++ include stdint.h - found 2025-12-05T22:26:21.0699285Z -- Looking for C++ include inttypes.h 2025-12-05T22:26:21.0699634Z -- Looking for C++ include inttypes.h - found 2025-12-05T22:26:21.0699973Z -- Looking for C++ include sys/types.h 2025-12-05T22:26:21.0700320Z -- Looking for C++ include sys/types.h - found 2025-12-05T22:26:21.0700673Z -- Looking for C++ include sys/stat.h 2025-12-05T22:26:21.0701005Z -- Looking for C++ include sys/stat.h - found 2025-12-05T22:26:21.0701353Z -- Looking for C++ include fnmatch.h 2025-12-05T22:26:21.0701682Z -- Looking for C++ include fnmatch.h - found 2025-12-05T22:26:21.0702026Z -- Looking for C++ include stddef.h 2025-12-05T22:26:21.0702344Z -- Looking for C++ include stddef.h - found 2025-12-05T22:26:21.0702680Z -- Check size of uint32_t 2025-12-05T22:26:21.0702949Z -- Check size of uint32_t - done 2025-12-05T22:26:21.0703249Z -- Looking for strtoll 2025-12-05T22:26:21.0703518Z -- Looking for strtoll - found 2025-12-05T22:26:21.0704042Z CMake Deprecation Warning at third-party/pybind11/CMakeLists.txt:13 (cmake_minimum_required): 2025-12-05T22:26:21.0704734Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-12-05T22:26:21.0705157Z CMake. 2025-12-05T22:26:21.0705288Z 2025-12-05T22:26:21.0705517Z Update the VERSION argument value. Or, use the ... syntax 2025-12-05T22:26:21.0706089Z to tell CMake that the project requires at least but has been updated 2025-12-05T22:26:21.0706596Z to work with policies introduced by or earlier. 2025-12-05T22:26:21.0706861Z 2025-12-05T22:26:21.0706866Z 2025-12-05T22:26:21.0706969Z -- pybind11 v2.13.6 2025-12-05T22:26:21.0707548Z -- Found PythonInterp: /opt/conda/envs/py_3.10/bin/python (found suitable version "3.10.19", minimum required is "3.7") 2025-12-05T22:26:21.0708379Z -- Found PythonLibs: /opt/conda/envs/py_3.10/lib/libpython3.10.so 2025-12-05T22:26:21.0708807Z -- Performing Test HAS_FLTO_THIN 2025-12-05T22:26:21.0709164Z -- Performing Test HAS_FLTO_THIN - Success 2025-12-05T22:26:21.0709708Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-12-05T22:26:21.0710383Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-12-05T22:26:21.0710819Z CMake. 2025-12-05T22:26:21.0710935Z 2025-12-05T22:26:21.0711264Z Update the VERSION argument value. Or, use the ... syntax 2025-12-05T22:26:21.0711846Z to tell CMake that the project requires at least but has been updated 2025-12-05T22:26:21.0712341Z to work with policies introduced by or earlier. 2025-12-05T22:26:21.0712620Z 2025-12-05T22:26:21.0712624Z 2025-12-05T22:26:21.0712799Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-12-05T22:26:21.0713275Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-12-05T22:26:21.0713673Z -- Setting Clang compiler options 2025-12-05T22:26:21.0714420Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-12-05T22:26:21.0715445Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-12-05T22:26:21.0716192Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-12-05T22:26:21.0716632Z CMake. 2025-12-05T22:26:21.0716751Z 2025-12-05T22:26:21.0716981Z Update the VERSION argument value. Or, use the ... syntax 2025-12-05T22:26:21.0717558Z to tell CMake that the project requires at least but has been updated 2025-12-05T22:26:21.0718050Z to work with policies introduced by or earlier. 2025-12-05T22:26:21.0718529Z 2025-12-05T22:26:21.0718534Z 2025-12-05T22:26:21.0718942Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-12-05T22:26:21.0719742Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-12-05T22:26:21.0720286Z CMake. 2025-12-05T22:26:21.0720402Z 2025-12-05T22:26:21.0720644Z Update the VERSION argument value. Or, use the ... syntax 2025-12-05T22:26:21.0721212Z to tell CMake that the project requires at least but has been updated 2025-12-05T22:26:21.0721713Z to work with policies introduced by or earlier. 2025-12-05T22:26:21.0721977Z 2025-12-05T22:26:21.0721985Z 2025-12-05T22:26:21.0722110Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-12-05T22:26:21.0722511Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-12-05T22:26:21.0722876Z -- Found Threads: TRUE 2025-12-05T22:26:21.0723470Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:10 (CMAKE_MINIMUM_REQUIRED): 2025-12-05T22:26:30.7493345Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-12-05T22:26:30.7494144Z CMake. 2025-12-05T22:26:30.7494345Z 2025-12-05T22:26:30.7494780Z Update the VERSION argument value. Or, use the ... syntax 2025-12-05T22:26:30.7495765Z to tell CMake that the project requires at least but has been updated 2025-12-05T22:26:30.7496695Z to work with policies introduced by or earlier. 2025-12-05T22:26:30.7497180Z 2025-12-05T22:26:30.7497187Z 2025-12-05T22:26:30.7498106Z '/opt/conda/envs/py_3.10/bin/python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-12-05T22:26:30.7499472Z -- Generating selected operator lib: 2025-12-05T22:26:30.7500073Z -- LIB_NAME: portable_ops_lib 2025-12-05T22:26:30.7500817Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-12-05T22:26:30.7501629Z -- ROOT_OPS: 2025-12-05T22:26:30.7502007Z -- INCLUDE_ALL_OPS: 2025-12-05T22:26:30.7502446Z -- OPS_FROM_MODEL: 2025-12-05T22:26:30.7502888Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:30.7505578Z 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-12-05T22:26:30.7508492Z -- Generating kernel bindings: 2025-12-05T22:26:30.7509024Z -- LIB_NAME: portable_ops_lib 2025-12-05T22:26:30.7510648Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-12-05T22:26:30.7511509Z -- CUSTOM_OPS_YAML: 2025-12-05T22:26:30.7512010Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-12-05T22:26:30.7512543Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:30.7516360Z 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-12-05T22:26:30.7520565Z -- Generating operator lib: 2025-12-05T22:26:30.7521079Z -- LIB_NAME: portable_ops_lib 2025-12-05T22:26:30.7521634Z -- KERNEL_LIBS: portable_kernels 2025-12-05T22:26:30.7522183Z -- DEPS: executorch_core 2025-12-05T22:26:30.7522692Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:30.7523227Z -- Generating selected operator lib: 2025-12-05T22:26:30.7523842Z -- LIB_NAME: optimized_portable_ops_lib 2025-12-05T22:26:30.7524684Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-12-05T22:26:30.7525480Z -- ROOT_OPS: 2025-12-05T22:26:30.7525889Z -- INCLUDE_ALL_OPS: 2025-12-05T22:26:30.7526330Z -- OPS_FROM_MODEL: 2025-12-05T22:26:30.7526791Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:30.7529558Z 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/optimized_portable_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/portable/functions.yaml" 2025-12-05T22:26:30.7532669Z -- Generating kernel bindings: 2025-12-05T22:26:30.7533243Z -- LIB_NAME: optimized_portable_ops_lib 2025-12-05T22:26:30.7534076Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-12-05T22:26:30.7534917Z -- CUSTOM_OPS_YAML: 2025-12-05T22:26:30.7535408Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-12-05T22:26:30.7535983Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:30.7536478Z -- Generating operator lib: 2025-12-05T22:26:30.7537027Z -- LIB_NAME: optimized_portable_ops_lib 2025-12-05T22:26:30.7537661Z -- KERNEL_LIBS: optimized_portable_kernels 2025-12-05T22:26:30.7538269Z -- DEPS: executorch_core 2025-12-05T22:26:30.7538788Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:30.7539323Z -- Generating selected operator lib: 2025-12-05T22:26:30.7539917Z -- LIB_NAME: optimized_ops_lib 2025-12-05T22:26:30.7540709Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-12-05T22:26:30.7541510Z -- ROOT_OPS: 2025-12-05T22:26:30.7541909Z -- INCLUDE_ALL_OPS: 2025-12-05T22:26:30.7542311Z -- OPS_FROM_MODEL: 2025-12-05T22:26:30.7542755Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:30.7545448Z 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-12-05T22:26:30.7548249Z -- Generating kernel bindings: 2025-12-05T22:26:30.7548896Z -- LIB_NAME: optimized_ops_lib 2025-12-05T22:26:30.7549675Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-12-05T22:26:30.7550468Z -- CUSTOM_OPS_YAML: 2025-12-05T22:26:30.7550937Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-12-05T22:26:30.7551472Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:30.7555335Z 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-12-05T22:26:30.7559585Z -- Generating operator lib: 2025-12-05T22:26:30.7560126Z -- LIB_NAME: optimized_ops_lib 2025-12-05T22:26:30.7560671Z -- KERNEL_LIBS: optimized_kernels 2025-12-05T22:26:30.7561233Z -- DEPS: executorch_core 2025-12-05T22:26:30.7561724Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:30.7562245Z -- Merging kernel yaml files: 2025-12-05T22:26:30.7563003Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-12-05T22:26:30.7564068Z -- FALLBACK_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-12-05T22:26:30.7565334Z -- OUTPUT_DIR: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations 2025-12-05T22:26:30.7566409Z -- Generating selected operator lib: 2025-12-05T22:26:30.7567023Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-12-05T22:26:30.7568165Z -- OPS_SCHEMA_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-12-05T22:26:30.7569510Z -- ROOT_OPS: 2025-12-05T22:26:30.7569900Z -- INCLUDE_ALL_OPS: 2025-12-05T22:26:30.7570350Z -- OPS_FROM_MODEL: 2025-12-05T22:26:30.7570792Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:30.7573895Z 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-12-05T22:26:30.7577269Z -- Generating kernel bindings: 2025-12-05T22:26:30.7577832Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-12-05T22:26:30.7579007Z -- FUNCTIONS_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-12-05T22:26:30.7580199Z -- CUSTOM_OPS_YAML: 2025-12-05T22:26:30.7580682Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-12-05T22:26:30.7581182Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:30.7584994Z 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-12-05T22:26:30.7589174Z -- Generating operator lib: 2025-12-05T22:26:30.7589658Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-12-05T22:26:30.7590349Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-12-05T22:26:30.7590983Z -- DEPS: executorch_core 2025-12-05T22:26:30.7591418Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:30.7592079Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-12-05T22:26:30.7592865Z -- Found assembler: /opt/cache/bin/cc 2025-12-05T22:26:30.7593481Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-12-05T22:26:30.7594570Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.19") found components: Interpreter 2025-12-05T22:26:30.7595838Z -- Generating microkernels.cmake 2025-12-05T22:26:30.7596362Z -- Looking for sys/mman.h 2025-12-05T22:26:30.7596867Z -- Looking for sys/mman.h - found 2025-12-05T22:26:30.7597401Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX17 2025-12-05T22:26:30.7598086Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX17 - Success 2025-12-05T22:26:30.7598773Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX20 2025-12-05T22:26:30.7599486Z -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX20 - Failed 2025-12-05T22:26:30.7600597Z CMake Warning at extension/llm/tokenizers/third-party/abseil-cpp/CMakeLists.txt:177 (message): 2025-12-05T22:26:30.7603092Z The default and system-level install directories are unsupported except in LTS releases of Abseil. Please set CMAKE_INSTALL_PREFIX to install Abseil in your source or build tree directly. 2025-12-05T22:26:30.7604581Z 2025-12-05T22:26:30.7604589Z 2025-12-05T22:26:30.7605434Z CMake Deprecation Warning at extension/llm/tokenizers/third-party/sentencepiece/CMakeLists.txt:15 (cmake_minimum_required): 2025-12-05T22:26:30.7606931Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-12-05T22:26:30.7607638Z CMake. 2025-12-05T22:26:30.7607839Z 2025-12-05T22:26:30.7608245Z Update the VERSION argument value. Or, use the ... syntax 2025-12-05T22:26:30.7609261Z to tell CMake that the project requires at least but has been updated 2025-12-05T22:26:30.7610136Z to work with policies introduced by or earlier. 2025-12-05T22:26:30.7610611Z 2025-12-05T22:26:30.7610617Z 2025-12-05T22:26:30.7610771Z -- VERSION: 0.2.1 2025-12-05T22:26:30.7611220Z -- Not Found TCMalloc: TCMALLOC_LIB-NOTFOUND 2025-12-05T22:26:30.7612004Z -- Could NOT find BZip2 (missing: BZIP2_LIBRARIES BZIP2_INCLUDE_DIR) 2025-12-05T22:26:30.7612950Z -- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found version "1.2.11") 2025-12-05T22:26:30.7613955Z -- Could NOT find Readline (missing: READLINE_INCLUDE_DIR READLINE_LIBRARY) 2025-12-05T22:26:30.7614977Z -- Could NOT find Editline (missing: EDITLINE_INCLUDE_DIR EDITLINE_LIBRARY) 2025-12-05T22:26:30.7615802Z -- Looking for assert.h 2025-12-05T22:26:30.7616277Z -- Looking for assert.h - found 2025-12-05T22:26:30.7616772Z -- Looking for dirent.h 2025-12-05T22:26:30.7617245Z -- Looking for dirent.h - found 2025-12-05T22:26:30.7617709Z -- Looking for windows.h 2025-12-05T22:26:30.7618547Z -- Looking for windows.h - not found 2025-12-05T22:26:30.7619040Z -- Looking for bcopy 2025-12-05T22:26:30.7619443Z -- Looking for bcopy - found 2025-12-05T22:26:30.7619914Z -- Looking for memfd_create 2025-12-05T22:26:30.7620432Z -- Looking for memfd_create - not found 2025-12-05T22:26:30.7620959Z -- Looking for memmove 2025-12-05T22:26:30.7621317Z -- Looking for memmove - found 2025-12-05T22:26:30.7621615Z -- Looking for secure_getenv 2025-12-05T22:26:30.7621901Z -- Looking for secure_getenv - not found 2025-12-05T22:26:30.7622218Z -- Looking for strerror 2025-12-05T22:26:30.7622473Z -- Looking for strerror - found 2025-12-05T22:26:30.7622778Z -- Performing Test HAVE_REALPATH 2025-12-05T22:26:33.0202266Z -- Performing Test HAVE_REALPATH - Success 2025-12-05T22:26:33.0202938Z -- Performing Test HAVE_ATTRIBUTE_UNINITIALIZED 2025-12-05T22:26:33.0203419Z -- Performing Test HAVE_ATTRIBUTE_UNINITIALIZED - Success 2025-12-05T22:26:33.0204042Z -- Performing Test HAVE_VISIBILITY 2025-12-05T22:26:33.0204525Z -- Performing Test HAVE_VISIBILITY - Success 2025-12-05T22:26:33.0205020Z -- Performing Test HAVE_BUILTIN_ASSUME 2025-12-05T22:26:33.0205525Z -- Performing Test HAVE_BUILTIN_ASSUME - Failed 2025-12-05T22:26:33.0206135Z -- Performing Test HAVE_BUILTIN_MUL_OVERFLOW 2025-12-05T22:26:33.0206780Z -- Performing Test HAVE_BUILTIN_MUL_OVERFLOW - Failed 2025-12-05T22:26:33.0207314Z -- Performing Test HAVE_BUILTIN_UNREACHABLE 2025-12-05T22:26:33.0207707Z -- Performing Test HAVE_BUILTIN_UNREACHABLE - Success 2025-12-05T22:26:33.0208083Z -- Performing Test HAVE_VSCRIPT_GNU 2025-12-05T22:26:33.0208474Z -- Performing Test HAVE_VSCRIPT_GNU - Success 2025-12-05T22:26:33.0208928Z -- Performing Test HAVE_VSCRIPT_SUN 2025-12-05T22:26:33.0209271Z -- Performing Test HAVE_VSCRIPT_SUN - Failed 2025-12-05T22:26:33.0209644Z -- Performing Test HAVE_VSCRIPT_BROKEN 2025-12-05T22:26:33.0210113Z -- Performing Test HAVE_VSCRIPT_BROKEN - Failed 2025-12-05T22:26:33.0210651Z -- Performing Test INTEL_CET_ENABLED 2025-12-05T22:26:33.0211083Z -- Performing Test INTEL_CET_ENABLED - Failed 2025-12-05T22:26:33.0211409Z -- 2025-12-05T22:26:33.0211632Z -- 2025-12-05T22:26:33.0211869Z -- PCRE2-10.46 configuration summary: 2025-12-05T22:26:33.0212172Z -- 2025-12-05T22:26:33.0212501Z -- Install prefix .................... : /usr/local 2025-12-05T22:26:33.0213188Z -- C compiler ........................ : /opt/cache/bin/cc 2025-12-05T22:26:33.0213677Z -- C compiler flags .................. : -O3 -DNDEBUG 2025-12-05T22:26:33.0213999Z -- 2025-12-05T22:26:33.0214275Z -- Build type ........................ : Release 2025-12-05T22:26:33.0214665Z -- Build 8 bit pcre2 library ......... : ON 2025-12-05T22:26:33.0215037Z -- Build 16 bit pcre2 library ........ : OFF 2025-12-05T22:26:33.0215430Z -- Build 32 bit pcre2 library ........ : OFF 2025-12-05T22:26:33.0215868Z -- Include debugging code ............ : IfDebugBuild 2025-12-05T22:26:33.0216403Z -- Enable JIT compiling support ...... : OFF 2025-12-05T22:26:33.0216752Z -- Use SELinux allocator in JIT ...... : OFF 2025-12-05T22:26:33.0217154Z -- Enable Unicode support ............ : ON 2025-12-05T22:26:33.0217493Z -- Newline char/sequence ............. : LF 2025-12-05T22:26:33.0217963Z -- \R matches only ANYCRLF ........... : OFF 2025-12-05T22:26:33.0218633Z -- \C is disabled .................... : OFF 2025-12-05T22:26:33.0219117Z -- EBCDIC coding ..................... : OFF 2025-12-05T22:26:33.0219576Z -- EBCDIC code for NL ................ : n/a 2025-12-05T22:26:33.0219978Z -- EBCDIC coding ignoring compiler ... : OFF 2025-12-05T22:26:33.0220381Z -- Rebuild char tables ............... : OFF 2025-12-05T22:26:33.0220779Z -- Internal link size ................ : 2 2025-12-05T22:26:33.0221164Z -- Maximum variable lookbehind ....... : 255 2025-12-05T22:26:33.0221686Z -- Nested parentheses limit .......... : 250 2025-12-05T22:26:33.0222258Z -- Heap limit ........................ : 20000000 2025-12-05T22:26:33.0222667Z -- Match limit ....................... : 10000000 2025-12-05T22:26:33.0223130Z -- Match depth limit ................. : MATCH_LIMIT 2025-12-05T22:26:33.0223502Z -- Build shared libs ................. : OFF 2025-12-05T22:26:33.0223902Z -- with symbol versioning ........ : ON 2025-12-05T22:26:33.0224313Z -- Build static libs ................. : ON 2025-12-05T22:26:33.0224671Z -- with PIC enabled .............. : ON 2025-12-05T22:26:33.0225001Z -- Build pcre2grep ................... : OFF 2025-12-05T22:26:33.0225396Z -- Enable JIT in pcre2grep ........... : ON 2025-12-05T22:26:33.0225858Z -- Enable callouts in pcre2grep ...... : ON 2025-12-05T22:26:33.0226227Z -- Enable callout fork in pcre2grep .. : ON 2025-12-05T22:26:33.0226603Z -- Initial buffer size for pcre2grep . : 20480 2025-12-05T22:26:33.0227069Z -- Maximum buffer size for pcre2grep . : 1048576 2025-12-05T22:26:33.0227542Z -- Build tests (implies pcre2test .... : OFF 2025-12-05T22:26:33.0227883Z -- and pcre2grep) 2025-12-05T22:26:33.0228386Z -- Link pcre2grep with libz .......... : ON 2025-12-05T22:26:33.0228870Z -- Link pcre2grep with libbz2 ........ : Library not found 2025-12-05T22:26:33.0229392Z -- Link pcre2test with libeditline ... : Library not found 2025-12-05T22:26:33.0229999Z -- Link pcre2test with libreadline ... : Library not found 2025-12-05T22:26:33.0230422Z -- Enable Valgrind support ........... : OFF 2025-12-05T22:26:33.0230892Z -- Use %zu and %td ................... : AUTO 2025-12-05T22:26:33.0231304Z -- 2025-12-05T22:26:33.0231741Z CMake Warning (dev) at extension/llm/tokenizers/CMakeLists.txt:204 (install): 2025-12-05T22:26:33.0232392Z Target re2 has PUBLIC_HEADER files but no PUBLIC_HEADER DESTINATION. 2025-12-05T22:26:33.0233077Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-12-05T22:26:33.0233519Z 2025-12-05T22:26:33.0234027Z '/opt/conda/envs/py_3.10/bin/python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-12-05T22:26:33.0234778Z -- MKL_ARCH: None, set to ` intel64` by default 2025-12-05T22:26:33.0235130Z -- MKL_ROOT /opt/conda/envs/py_3.10 2025-12-05T22:26:33.0235477Z -- MKL_LINK: None, set to ` dynamic` by default 2025-12-05T22:26:33.0236053Z -- MKL_INTERFACE_FULL: None, set to ` intel_ilp64` by default 2025-12-05T22:26:33.0236504Z -- MKL_THREADING: None, set to ` intel_thread` by default 2025-12-05T22:26:33.0236916Z -- MKL_MPI: None, set to ` intelmpi` by default 2025-12-05T22:26:33.0237624Z CMake Warning at /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:22 (message): 2025-12-05T22:26:33.0238362Z static library kineto_LIBRARY-NOTFOUND not found. 2025-12-05T22:26:33.0238726Z Call Stack (most recent call first): 2025-12-05T22:26:33.0239440Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:125 (append_torchlib_if_found) 2025-12-05T22:26:33.0240183Z tools/cmake/Utils.cmake:160 (find_package) 2025-12-05T22:26:33.0240526Z CMakeLists.txt:792 (find_package_torch) 2025-12-05T22:26:33.0240762Z 2025-12-05T22:26:33.0240767Z 2025-12-05T22:26:33.0241058Z -- Found Torch: /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/lib/libtorch.so 2025-12-05T22:26:33.0241958Z '/opt/conda/envs/py_3.10/bin/python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-12-05T22:26:33.0242686Z -- Generating selected operator lib: 2025-12-05T22:26:33.0243013Z -- LIB_NAME: quantized_ops_lib 2025-12-05T22:26:33.0243436Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-12-05T22:26:33.0243873Z -- ROOT_OPS: 2025-12-05T22:26:33.0244095Z -- INCLUDE_ALL_OPS: 2025-12-05T22:26:33.0244349Z -- OPS_FROM_MODEL: 2025-12-05T22:26:33.0244593Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:33.0246071Z 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-12-05T22:26:33.0247535Z -- Generating kernel bindings: 2025-12-05T22:26:33.0247825Z -- LIB_NAME: quantized_ops_lib 2025-12-05T22:26:33.0248123Z -- FUNCTIONS_YAML: 2025-12-05T22:26:33.0248499Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-12-05T22:26:33.0248961Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-12-05T22:26:33.0249259Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:33.0253155Z 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-12-05T22:26:33.0257023Z -- Generating selected operator lib: 2025-12-05T22:26:33.0257353Z -- LIB_NAME: quantized_ops_aot_lib 2025-12-05T22:26:33.0257644Z -- OPS_SCHEMA_YAML: 2025-12-05T22:26:33.0260408Z -- 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-12-05T22:26:33.0263147Z -- INCLUDE_ALL_OPS: 2025-12-05T22:26:33.0263389Z -- OPS_FROM_MODEL: 2025-12-05T22:26:33.0263695Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:33.0267391Z 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-12-05T22:26:33.0271330Z -- Generating kernel bindings: 2025-12-05T22:26:33.0271631Z -- LIB_NAME: quantized_ops_aot_lib 2025-12-05T22:26:33.0271937Z -- FUNCTIONS_YAML: 2025-12-05T22:26:33.0272308Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-12-05T22:26:33.0272769Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-12-05T22:26:33.0273082Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:33.0273364Z -- Generating custom ops aot lib: 2025-12-05T22:26:33.0273676Z -- LIB_NAME: quantized_ops_aot_lib 2025-12-05T22:26:33.0274127Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/cpu/embeddingxb.cpp 2025-12-05T22:26:33.0274833Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/cpu/op_add.cpp 2025-12-05T22:26:34.1058323Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/cpu/op_choose_qparams.cpp 2025-12-05T22:26:34.1063143Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/cpu/op_dequantize.cpp 2025-12-05T22:26:34.1064678Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/cpu/op_embedding.cpp 2025-12-05T22:26:34.1065952Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/cpu/op_embedding2b.cpp 2025-12-05T22:26:34.1066596Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/cpu/op_embedding4b.cpp 2025-12-05T22:26:34.1067254Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/cpu/op_mixed_linear.cpp 2025-12-05T22:26:34.1067891Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/cpu/op_mixed_mm.cpp 2025-12-05T22:26:34.1068560Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/cpu/op_quantize.cpp 2025-12-05T22:26:34.1069196Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/portable/cpu/util/reduce_util.cpp 2025-12-05T22:26:34.1069878Z -- KERNEL_SOURCE: /pytorch/executorch/runtime/core/exec_aten/util/tensor_util_aten.cpp 2025-12-05T22:26:34.1070417Z -- Generating selected operator lib: 2025-12-05T22:26:34.1070738Z -- LIB_NAME: quantized_ops_pybind_lib 2025-12-05T22:26:34.1071183Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-12-05T22:26:34.1071618Z -- ROOT_OPS: 2025-12-05T22:26:34.1071856Z -- INCLUDE_ALL_OPS: 2025-12-05T22:26:34.1072090Z -- OPS_FROM_MODEL: 2025-12-05T22:26:34.1072348Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:34.1073788Z 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-12-05T22:26:34.1075367Z -- Generating kernel bindings: 2025-12-05T22:26:34.1075693Z -- LIB_NAME: quantized_ops_pybind_lib 2025-12-05T22:26:34.1075999Z -- FUNCTIONS_YAML: 2025-12-05T22:26:34.1076384Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-12-05T22:26:34.1076843Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-12-05T22:26:34.1077143Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:34.1077434Z -- Generating operator lib: 2025-12-05T22:26:34.1077956Z -- LIB_NAME: quantized_ops_pybind_lib 2025-12-05T22:26:34.1078311Z -- KERNEL_LIBS: quantized_pybind_kernels_lib 2025-12-05T22:26:34.1078636Z -- DEPS: portable_lib 2025-12-05T22:26:34.1078904Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:34.1079175Z -- Generating operator lib: 2025-12-05T22:26:34.1079507Z -- LIB_NAME: quantized_ops_lib 2025-12-05T22:26:34.1079811Z -- KERNEL_LIBS: quantized_kernels 2025-12-05T22:26:34.1080104Z -- DEPS: executorch_core 2025-12-05T22:26:34.1080381Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:26:34.1080660Z -- --- Configured Options --- 2025-12-05T22:26:34.1080858Z 2025-12-05T22:26:34.1080986Z -- BUILD_TESTING : OFF 2025-12-05T22:26:34.1081430Z -- CCACHE_PROGRAM : CCACHE_PROGRAM-NOTFOUND 2025-12-05T22:26:34.1081863Z -- CMAKE_BUILD_TYPE : Release 2025-12-05T22:26:34.1082257Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-12-05T22:26:34.1082624Z -- CMAKE_CXX_STANDARD : 17 2025-12-05T22:26:34.1083005Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-12-05T22:26:34.1083391Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-12-05T22:26:34.1083791Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-12-05T22:26:34.1084184Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-12-05T22:26:34.1084553Z -- EXECUTORCH_BUILD_COREML : ON 2025-12-05T22:26:34.1084933Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-12-05T22:26:34.1085405Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-12-05T22:26:34.1085786Z -- EXECUTORCH_BUILD_CUDA : OFF 2025-12-05T22:26:34.1086155Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-12-05T22:26:34.1086546Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : OFF 2025-12-05T22:26:34.1086928Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-12-05T22:26:34.1087334Z -- EXECUTORCH_BUILD_EXTENSION_ASR_RUNNER : OFF 2025-12-05T22:26:34.1087738Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : ON 2025-12-05T22:26:34.1088128Z -- EXECUTORCH_BUILD_EXTENSION_EVALUE_UTIL : OFF 2025-12-05T22:26:34.1088536Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : ON 2025-12-05T22:26:34.1089126Z -- EXECUTORCH_BUILD_EXTENSION_LLM : ON 2025-12-05T22:26:34.1089792Z -- EXECUTORCH_BUILD_EXTENSION_LLM_APPLE : OFF 2025-12-05T22:26:34.1090467Z -- EXECUTORCH_BUILD_EXTENSION_LLM_RUNNER : ON 2025-12-05T22:26:34.1091159Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : ON 2025-12-05T22:26:34.1092066Z -- EXECUTORCH_BUILD_EXTENSION_NAMED_DATA_MAP : ON 2025-12-05T22:26:34.1092689Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : ON 2025-12-05T22:26:34.1093324Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-12-05T22:26:34.1093977Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : ON 2025-12-05T22:26:34.1094976Z -- EXECUTORCH_BUILD_KERNELS_LLM : ON 2025-12-05T22:26:34.1095664Z -- EXECUTORCH_BUILD_KERNELS_LLM_AOT : ON 2025-12-05T22:26:34.1096327Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : ON 2025-12-05T22:26:34.1096942Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-12-05T22:26:34.1097601Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : ON 2025-12-05T22:26:34.1098280Z -- EXECUTORCH_BUILD_METAL : OFF 2025-12-05T22:26:34.1098943Z -- EXECUTORCH_BUILD_MPS : OFF 2025-12-05T22:26:34.1099580Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-12-05T22:26:34.1100216Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-12-05T22:26:34.1100855Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-12-05T22:26:34.1101782Z -- EXECUTORCH_BUILD_PRESET_FILE : /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-12-05T22:26:34.1102791Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-12-05T22:26:34.1103662Z -- EXECUTORCH_BUILD_PYBIND : ON 2025-12-05T22:26:34.1104263Z -- EXECUTORCH_BUILD_QNN : OFF 2025-12-05T22:26:34.1104893Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-12-05T22:26:34.1106133Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-12-05T22:26:34.1106829Z -- EXECUTORCH_BUILD_TOKENIZERS_WASM : OFF 2025-12-05T22:26:34.1107460Z -- EXECUTORCH_BUILD_VGF : OFF 2025-12-05T22:26:34.1108061Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-12-05T22:26:34.1108782Z -- EXECUTORCH_BUILD_WASM : OFF 2025-12-05T22:26:34.1109421Z -- EXECUTORCH_BUILD_WHEEL_DO_NOT_USE : ON 2025-12-05T22:26:34.1110085Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-12-05T22:26:34.1110749Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-12-05T22:26:34.1111413Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-12-05T22:26:34.1112067Z -- EXECUTORCH_ENABLE_BUNDLE_IO : OFF 2025-12-05T22:26:34.1112704Z -- EXECUTORCH_ENABLE_DTYPE_SELECTIVE_BUILD : FALSE 2025-12-05T22:26:34.1113361Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-12-05T22:26:34.1114035Z -- EXECUTORCH_ENABLE_LOGGING : ON 2025-12-05T22:26:34.1114723Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-12-05T22:26:34.1115394Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-12-05T22:26:34.1116016Z -- EXECUTORCH_LOG_LEVEL : Info 2025-12-05T22:26:34.1116617Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-12-05T22:26:34.1117454Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-12-05T22:26:34.1118142Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-12-05T22:26:34.1122661Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-12-05T22:26:34.1123620Z -- EXECUTORCH_SELECT_OPS_LIST : 2025-12-05T22:26:34.1124228Z -- EXECUTORCH_SELECT_OPS_MODEL : 2025-12-05T22:26:34.1124650Z -- EXECUTORCH_SELECT_OPS_YAML : 2025-12-05T22:26:34.1125036Z -- EXECUTORCH_THREADPOOL_USE_ALL_LOGICAL_CORES : OFF 2025-12-05T22:26:34.1125458Z -- EXECUTORCH_THREADPOOL_USE_PERFORMANCE_CORES : OFF 2025-12-05T22:26:34.1126044Z -- EXECUTORCH_USE_CPP_CODE_COVERAGE : OFF 2025-12-05T22:26:34.1126432Z -- EXECUTORCH_USE_DL : ON 2025-12-05T22:26:34.1126807Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : ON 2025-12-05T22:26:34.1127219Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-12-05T22:26:34.1127621Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-12-05T22:26:34.1128071Z -- PYTHON_EXECUTABLE : /opt/conda/envs/py_3.10/bin/python 2025-12-05T22:26:34.1128494Z -- -------------------------- 2025-12-05T22:26:34.1128784Z -- Configuring done (14.7s) 2025-12-05T22:26:34.1129064Z -- Generating done (0.8s) 2025-12-05T22:26:34.1129589Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-12-05T22:26:34.1131363Z 2025-12-05 22:26:33,913 [INFO] cmake --build /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out -j7 --config=Release --target portable_lib --target selective_build --target _llm_runner --target extension_module --target _training_lib --target executorchcoreml --target custom_ops_aot_lib --target quantized_ops_aot_lib 2025-12-05T22:26:34.1132896Z [ 0%] Creating directories for 'flatcc_ep' 2025-12-05T22:26:34.1133545Z [ 0%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-sanitizers.dir/src/sanitizers.c.o 2025-12-05T22:26:34.1134226Z [ 0%] Creating directories for 'flatbuffers_ep' 2025-12-05T22:26:34.1134868Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-12-05T22:26:34.1136018Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-12-05T22:26:34.1136942Z [ 0%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-12-05T22:26:34.1137749Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-12-05T22:26:34.1138309Z [ 0%] No download step for 'flatcc_ep' 2025-12-05T22:26:34.1138638Z [ 0%] No download step for 'flatbuffers_ep' 2025-12-05T22:26:34.1138986Z [ 0%] No update step for 'flatbuffers_ep' 2025-12-05T22:26:34.1139323Z [ 0%] No update step for 'flatcc_ep' 2025-12-05T22:26:34.1139638Z [ 0%] No patch step for 'flatbuffers_ep' 2025-12-05T22:26:34.1139972Z [ 0%] No patch step for 'flatcc_ep' 2025-12-05T22:26:34.1140315Z [ 0%] Performing configure step for 'flatbuffers_ep' 2025-12-05T22:26:34.1140703Z [ 0%] Performing configure step for 'flatcc_ep' 2025-12-05T22:26:34.1141019Z CMake Warning: 2025-12-05T22:26:34.1141367Z Ignoring empty string ("") provided on the command line. 2025-12-05T22:26:34.1141652Z 2025-12-05T22:26:34.1141657Z 2025-12-05T22:26:34.1141740Z CMake Warning: 2025-12-05T22:26:34.1142049Z Ignoring empty string ("") provided on the command line. 2025-12-05T22:26:34.1142328Z 2025-12-05T22:26:34.1142332Z 2025-12-05T22:26:34.1142578Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-12-05T22:26:34.1143147Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-12-05T22:26:34.1143576Z CMake. 2025-12-05T22:26:34.1143687Z 2025-12-05T22:26:34.1144017Z Update the VERSION argument value. Or, use the ... syntax 2025-12-05T22:26:34.5558950Z to tell CMake that the project requires at least but has been updated 2025-12-05T22:26:34.5559946Z to work with policies introduced by or earlier. 2025-12-05T22:26:34.5560460Z 2025-12-05T22:26:34.5560468Z 2025-12-05T22:26:34.5560730Z fatal: No names found, cannot describe anything. 2025-12-05T22:26:34.5561492Z CMake Warning at CMake/Version.cmake:32 (message): 2025-12-05T22:26:34.5562198Z git describe failed with exit code: 128 2025-12-05T22:26:34.5562617Z 2025-12-05T22:26:34.5562931Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-12-05T22:26:34.5563634Z Call Stack (most recent call first): 2025-12-05T22:26:34.5564174Z CMakeLists.txt:5 (include) 2025-12-05T22:26:34.5564517Z 2025-12-05T22:26:34.5564525Z 2025-12-05T22:26:34.5564723Z -- Proceeding with version: 24.3.25.0 2025-12-05T22:26:34.5565319Z [ 0%] Built target xnnpack-sanitizers 2025-12-05T22:26:34.5566369Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-12-05T22:26:34.5568004Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-12-05T22:26:34.5570324Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/src/legacy-api.c:30:26: warning: 'pthreadpool_compute_1d' is deprecated [-Wdeprecated-declarations] 2025-12-05T22:26:34.5572153Z PTHREADPOOL_PRIVATE_IMPL(pthreadpool_compute_1d) 2025-12-05T22:26:34.5572801Z ^ 2025-12-05T22:26:34.5574485Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/include/pthreadpool.h:2164:43: note: 'pthreadpool_compute_1d' has been explicitly marked deprecated here 2025-12-05T22:26:34.5576360Z size_t range) PTHREADPOOL_DEPRECATED; 2025-12-05T22:26:34.5576991Z ^ 2025-12-05T22:26:34.5578568Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/include/pthreadpool.h:2146:47: note: expanded from macro 'PTHREADPOOL_DEPRECATED' 2025-12-05T22:26:34.5580301Z #define PTHREADPOOL_DEPRECATED __attribute__((__deprecated__)) 2025-12-05T22:26:34.5581063Z ^ 2025-12-05T22:26:34.5583107Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/src/legacy-api.c:40:26: warning: 'pthreadpool_compute_1d_tiled' is deprecated [-Wdeprecated-declarations] 2025-12-05T22:26:34.5585050Z PTHREADPOOL_PRIVATE_IMPL(pthreadpool_compute_1d_tiled) 2025-12-05T22:26:34.5585770Z ^ 2025-12-05T22:26:34.5587433Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/include/pthreadpool.h:2169:48: note: 'pthreadpool_compute_1d_tiled' has been explicitly marked deprecated here 2025-12-05T22:26:34.5589452Z size_t tile) PTHREADPOOL_DEPRECATED; 2025-12-05T22:26:34.5590128Z ^ 2025-12-05T22:26:34.5591683Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/include/pthreadpool.h:2146:47: note: expanded from macro 'PTHREADPOOL_DEPRECATED' 2025-12-05T22:26:34.5593490Z #define PTHREADPOOL_DEPRECATED __attribute__((__deprecated__)) 2025-12-05T22:26:34.5594250Z ^ 2025-12-05T22:26:34.5595959Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/src/legacy-api.c:50:26: warning: 'pthreadpool_compute_2d' is deprecated [-Wdeprecated-declarations] 2025-12-05T22:26:34.5597799Z PTHREADPOOL_PRIVATE_IMPL(pthreadpool_compute_2d) 2025-12-05T22:26:34.5598448Z ^ 2025-12-05T22:26:34.5600151Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/include/pthreadpool.h:2174:45: note: 'pthreadpool_compute_2d' has been explicitly marked deprecated here 2025-12-05T22:26:34.5602653Z size_t range_j) PTHREADPOOL_DEPRECATED; 2025-12-05T22:26:34.5603315Z ^ 2025-12-05T22:26:34.5605140Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/include/pthreadpool.h:2146:47: note: expanded from macro 'PTHREADPOOL_DEPRECATED' 2025-12-05T22:26:34.5606908Z #define PTHREADPOOL_DEPRECATED __attribute__((__deprecated__)) 2025-12-05T22:26:34.5607588Z ^ 2025-12-05T22:26:34.5609341Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/src/legacy-api.c:61:26: warning: 'pthreadpool_compute_2d_tiled' is deprecated [-Wdeprecated-declarations] 2025-12-05T22:26:34.5611243Z PTHREADPOOL_PRIVATE_IMPL(pthreadpool_compute_2d_tiled) 2025-12-05T22:26:34.5611930Z ^ 2025-12-05T22:26:34.5613654Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/include/pthreadpool.h:2180:50: note: 'pthreadpool_compute_2d_tiled' has been explicitly marked deprecated here 2025-12-05T22:26:34.5615578Z size_t tile_j) PTHREADPOOL_DEPRECATED; 2025-12-05T22:26:34.5616238Z ^ 2025-12-05T22:26:34.5617834Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/include/pthreadpool.h:2146:47: note: expanded from macro 'PTHREADPOOL_DEPRECATED' 2025-12-05T22:26:34.5621063Z #define PTHREADPOOL_DEPRECATED __attribute__((__deprecated__)) 2025-12-05T22:26:34.5621671Z ^ 2025-12-05T22:26:34.5623201Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/src/legacy-api.c:134:26: warning: 'pthreadpool_compute_3d_tiled' is deprecated [-Wdeprecated-declarations] 2025-12-05T22:26:34.5624372Z PTHREADPOOL_PRIVATE_IMPL(pthreadpool_compute_3d_tiled) 2025-12-05T22:26:34.5624749Z ^ 2025-12-05T22:26:34.5625631Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/include/pthreadpool.h:2187:50: note: 'pthreadpool_compute_3d_tiled' has been explicitly marked deprecated here 2025-12-05T22:26:34.5626601Z size_t tile_k) PTHREADPOOL_DEPRECATED; 2025-12-05T22:26:34.5626957Z ^ 2025-12-05T22:26:34.5627764Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/include/pthreadpool.h:2146:47: note: expanded from macro 'PTHREADPOOL_DEPRECATED' 2025-12-05T22:26:34.5628778Z #define PTHREADPOOL_DEPRECATED __attribute__((__deprecated__)) 2025-12-05T22:26:34.5629381Z ^ 2025-12-05T22:26:34.5630291Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/src/legacy-api.c:225:26: warning: 'pthreadpool_compute_4d_tiled' is deprecated [-Wdeprecated-declarations] 2025-12-05T22:26:34.5631559Z PTHREADPOOL_PRIVATE_IMPL(pthreadpool_compute_4d_tiled) 2025-12-05T22:26:34.5632156Z ^ 2025-12-05T22:26:34.5633190Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/include/pthreadpool.h:2195:50: note: 'pthreadpool_compute_4d_tiled' has been explicitly marked deprecated here 2025-12-05T22:26:34.5634162Z size_t tile_l) PTHREADPOOL_DEPRECATED; 2025-12-05T22:26:34.5634523Z ^ 2025-12-05T22:26:34.5635321Z /pytorch/executorch/backends/xnnpack/third-party/pthreadpool/include/pthreadpool.h:2146:47: note: expanded from macro 'PTHREADPOOL_DEPRECATED' 2025-12-05T22:26:34.5636238Z #define PTHREADPOOL_DEPRECATED __attribute__((__deprecated__)) 2025-12-05T22:26:34.5636643Z ^ 2025-12-05T22:26:34.5636938Z 6 warnings generated. 2025-12-05T22:26:34.5637499Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-12-05T22:26:34.5638330Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-12-05T22:26:34.5639093Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-12-05T22:26:34.5639829Z -- The C compiler identification is Clang 12.0.1 2025-12-05T22:26:34.5640190Z -- Detecting C compiler ABI info 2025-12-05T22:26:34.5640774Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-12-05T22:26:34.5641687Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-12-05T22:26:34.5642613Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-12-05T22:26:34.5643461Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-12-05T22:26:34.5644075Z -- The CXX compiler identification is Clang 12.0.1 2025-12-05T22:26:34.5644767Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-12-05T22:26:34.5645633Z -- Detecting CXX compiler ABI info 2025-12-05T22:26:34.5645974Z -- Detecting C compiler ABI info - done 2025-12-05T22:26:34.5646432Z [ 1%] Linking C static library libpthreadpool.a 2025-12-05T22:26:34.5646971Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-12-05T22:26:34.5647490Z -- Detecting C compile features 2025-12-05T22:26:34.5647834Z -- Detecting C compile features - done 2025-12-05T22:26:34.5648667Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-12-05T22:26:34.5649368Z [ 1%] Built target pthreadpool 2025-12-05T22:26:34.5649752Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-12-05T22:26:34.5650386Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-12-05T22:26:34.5650954Z -- Setting Clang compiler options 2025-12-05T22:26:34.5652035Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-12-05T22:26:34.5653528Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-12-05T22:26:34.5654392Z -- Configuring done (0.3s) 2025-12-05T22:26:34.5655242Z -- Generating done (0.0s) 2025-12-05T22:26:34.5655637Z CMake Warning: 2025-12-05T22:26:34.5656236Z Manually-specified variables were not used by the project: 2025-12-05T22:26:34.5656900Z 2025-12-05T22:26:34.5657076Z CMAKE_POLICY_VERSION_MINIMUM 2025-12-05T22:26:34.5657338Z 2025-12-05T22:26:34.5657346Z 2025-12-05T22:26:34.5658274Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/src/build 2025-12-05T22:26:34.5659382Z [ 1%] Performing build step for 'flatcc_ep' 2025-12-05T22:26:34.5660003Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-12-05T22:26:34.5661059Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-12-05T22:26:34.5662092Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-12-05T22:26:34.5663016Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-12-05T22:26:34.5663692Z -- Detecting CXX compiler ABI info - done 2025-12-05T22:26:35.5604141Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-12-05T22:26:35.5605490Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-12-05T22:26:35.5606280Z -- Detecting CXX compile features 2025-12-05T22:26:35.5606876Z -- Detecting CXX compile features - done 2025-12-05T22:26:35.5607735Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-12-05T22:26:35.5608518Z -- Looking for strtof_l 2025-12-05T22:26:35.5609164Z [ 12%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-12-05T22:26:35.5610323Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-12-05T22:26:35.5611897Z [ 15%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-12-05T22:26:35.5612941Z [ 18%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-12-05T22:26:35.5614281Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-12-05T22:26:35.5615813Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-12-05T22:26:35.5616939Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-12-05T22:26:35.5617766Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-12-05T22:26:35.5620399Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-12-05T22:26:35.5621408Z [ 21%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-12-05T22:26:35.5622615Z [ 1%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/bf16-f32-gemm/gen/bf16-f32-gemm-11x32c2-minmax-asm-amd64-avx512bf16-broadcast.S.o 2025-12-05T22:26:35.5623630Z [ 21%] Built target flatccrt 2025-12-05T22:26:35.5624112Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-12-05T22:26:35.5624819Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-12-05T22:26:35.5625517Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-12-05T22:26:35.5626031Z -- Looking for strtof_l - found 2025-12-05T22:26:35.5626318Z -- Looking for strtoull_l 2025-12-05T22:26:35.5626871Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-12-05T22:26:35.5628757Z [ 1%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/bf16-f32-gemm/gen/bf16-f32-gemm-1x32c2-minmax-asm-amd64-avx512bf16-broadcast.S.o 2025-12-05T22:26:35.5630053Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-12-05T22:26:35.5630825Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-12-05T22:26:35.5631521Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-12-05T22:26:35.5633298Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-12-05T22:26:35.5634758Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-12-05T22:26:35.5636649Z [ 1%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-avgpool/gen/f16-avgpool-9p-minmax-f16c.c.o 2025-12-05T22:26:35.5638700Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-12-05T22:26:35.5640384Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-12-05T22:26:35.5648185Z [ 1%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3-acc2.c.o 2025-12-05T22:26:35.5649290Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-12-05T22:26:35.5650064Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-12-05T22:26:35.5650763Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-12-05T22:26:35.5651189Z -- Looking for strtoull_l - found 2025-12-05T22:26:35.5651495Z -- Looking for realpath 2025-12-05T22:26:35.5652032Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-12-05T22:26:35.5652916Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-12-05T22:26:35.5654028Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-12-05T22:26:35.5655221Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-12-05T22:26:35.5656948Z [ 1%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3.c.o 2025-12-05T22:26:35.5658723Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-12-05T22:26:35.5659729Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-12-05T22:26:35.5661021Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-12-05T22:26:35.5662619Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-12-05T22:26:35.5664181Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-12-05T22:26:35.5665791Z [ 1%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-12-05T22:26:35.5667279Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-12-05T22:26:35.5678965Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-12-05T22:26:35.5680055Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-12-05T22:26:35.5681001Z -- Looking for realpath - found 2025-12-05T22:26:35.5681581Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-12-05T22:26:35.5683042Z [ 1%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3.c.o 2025-12-05T22:26:35.5685313Z -- Configuring done (1.1s) 2025-12-05T22:26:35.5686430Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3.c.o 2025-12-05T22:26:35.5687361Z -- Generating done (0.0s) 2025-12-05T22:26:35.5688532Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/src/build 2025-12-05T22:26:35.5689276Z [ 3%] Performing build step for 'flatbuffers_ep' 2025-12-05T22:26:35.5690021Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-12-05T22:26:35.5690883Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-12-05T22:26:35.5691923Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-12-05T22:26:35.5692688Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-12-05T22:26:35.5693681Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-12-05T22:26:35.5694707Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-12-05T22:26:35.5695668Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-12-05T22:26:35.5696830Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-12-05T22:26:35.5698162Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-12-05T22:26:35.5700207Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-u16.c.o 2025-12-05T22:26:35.5702332Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-12-05T22:26:35.5703813Z [ 4%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-u16.c.o 2025-12-05T22:26:35.5705391Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-12-05T22:26:35.5705973Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-12-05T22:26:35.5706709Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-12-05T22:26:35.5707320Z [ 6%] Linking C static library libcpuinfo.a 2025-12-05T22:26:35.5707785Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-12-05T22:26:35.5709510Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-u16.c.o 2025-12-05T22:26:35.5710863Z [ 6%] Built target cpuinfo 2025-12-05T22:26:35.5711898Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-logging.dir/src/enums/allocation-type.c.o 2025-12-05T22:26:35.5713251Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-12-05T22:26:35.5714526Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-12-05T22:26:35.5716093Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-logging.dir/src/enums/datatype-strings.c.o 2025-12-05T22:26:35.5717915Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-logging.dir/src/enums/microkernel-type.c.o 2025-12-05T22:26:35.5719504Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-12-05T22:26:36.1313799Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-12-05T22:26:36.1315728Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-indirection.dir/src/indirection.c.o 2025-12-05T22:26:36.1317177Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-12-05T22:26:36.1318543Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-12-05T22:26:36.1320151Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-12-05T22:26:36.1322258Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-logging.dir/src/enums/node-type.c.o 2025-12-05T22:26:36.1323749Z [ 6%] Linking CXX static library libeigen_blas.a 2025-12-05T22:26:36.1325367Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-u32.c.o 2025-12-05T22:26:36.1327177Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-12-05T22:26:36.1328738Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-logging.dir/src/enums/operator-type.c.o 2025-12-05T22:26:36.1330740Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microparams-init.dir/src/microparams-init.c.o 2025-12-05T22:26:36.1331990Z [ 6%] Built target xnnpack-indirection 2025-12-05T22:26:36.1332509Z [ 6%] Built target eigen_blas 2025-12-05T22:26:36.1334027Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-u16.c.o 2025-12-05T22:26:36.1336131Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-normalization.dir/src/normalization.c.o 2025-12-05T22:26:36.1339084Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32acc-gemm/gen/f16-f32acc-gemm-1x16-minmax-avx2-broadcast.c.o 2025-12-05T22:26:36.1340936Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-12-05T22:26:36.1342150Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-logging.dir/src/log.c.o 2025-12-05T22:26:36.1344702Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-12-05T22:26:36.1345659Z [ 6%] Built target xnnpack-microparams-init 2025-12-05T22:26:36.1346319Z [ 6%] Built target xnnpack-normalization 2025-12-05T22:26:36.1348410Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32acc-gemm/gen/f16-f32acc-gemm-4x16-minmax-avx2-broadcast.c.o 2025-12-05T22:26:36.1351576Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-datatype.dir/src/datatype.c.o 2025-12-05T22:26:36.1353504Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-12-05T22:26:36.1354675Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-12-05T22:26:36.1355707Z [ 6%] Built target xnnpack-logging 2025-12-05T22:26:36.1356877Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-12-05T22:26:36.1357706Z [ 6%] Built target xnnpack-datatype 2025-12-05T22:26:36.1358322Z [ 93%] Built target flatcc 2025-12-05T22:26:36.1359733Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-hardware-config.dir/src/configs/hardware-config.c.o 2025-12-05T22:26:36.1361810Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-12-05T22:26:36.1365154Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-1x16-minmax-avx2-broadcast.c.o 2025-12-05T22:26:36.1368794Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-4x16-minmax-avx2-broadcast.c.o 2025-12-05T22:26:36.1370954Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-12-05T22:26:36.1372087Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-12-05T22:26:36.1373046Z [ 6%] Built target xnnpack-hardware-config 2025-12-05T22:26:36.1373938Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-12-05T22:26:36.1375015Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-12-05T22:26:36.1375874Z [100%] Built target flatcc_cli 2025-12-05T22:26:36.1376467Z [ 6%] Performing install step for 'flatcc_ep' 2025-12-05T22:26:36.1378596Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-avx512skx-u64.c.o 2025-12-05T22:26:36.1381591Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-f16c-u32.c.o 2025-12-05T22:26:36.1383423Z [ 21%] Built target flatccrt 2025-12-05T22:26:36.1385074Z [ 6%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-pack-lh.dir/src/pack-lh.cc.o 2025-12-05T22:26:36.1386372Z [ 93%] Built target flatcc 2025-12-05T22:26:36.1386916Z [100%] Built target flatcc_cli 2025-12-05T22:26:36.1387456Z Install the project... 2025-12-05T22:26:36.1387975Z -- Install configuration: "" 2025-12-05T22:26:36.1389182Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc 2025-12-05T22:26:36.1391439Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc.h 2025-12-05T22:26:36.1393811Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_accessors.h 2025-12-05T22:26:36.1396218Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_alloc.h 2025-12-05T22:26:36.1398660Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_assert.h 2025-12-05T22:26:36.1401266Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_builder.h 2025-12-05T22:26:36.1404154Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_emitter.h 2025-12-05T22:26:36.1406652Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_endian.h 2025-12-05T22:26:36.1421105Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_epilogue.h 2025-12-05T22:26:36.1423587Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_flatbuffers.h 2025-12-05T22:26:36.1426098Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_identifier.h 2025-12-05T22:26:36.1429715Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_iov.h 2025-12-05T22:26:36.1432104Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_json_parser.h 2025-12-05T22:26:36.1434678Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_json_printer.h 2025-12-05T22:26:36.1437157Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_portable.h 2025-12-05T22:26:36.1439608Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_prologue.h 2025-12-05T22:26:36.1442069Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_refmap.h 2025-12-05T22:26:36.1445009Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_rtconfig.h 2025-12-05T22:26:36.1447756Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_types.h 2025-12-05T22:26:36.1450396Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_unaligned.h 2025-12-05T22:26:36.1452876Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_verifier.h 2025-12-05T22:26:36.1455790Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_version.h 2025-12-05T22:26:36.1458116Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable 2025-12-05T22:26:36.1460505Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/LICENSE 2025-12-05T22:26:36.1462952Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/README.md 2025-12-05T22:26:36.1465456Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/grisu3_math.h 2025-12-05T22:26:36.1468101Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/grisu3_parse.h 2025-12-05T22:26:36.2262316Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/grisu3_print.h 2025-12-05T22:26:36.2264673Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include 2025-12-05T22:26:36.2266959Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/README 2025-12-05T22:26:36.2269773Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/linux 2025-12-05T22:26:36.2272286Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/linux/endian.h 2025-12-05T22:26:36.2274747Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/std 2025-12-05T22:26:36.2277145Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/std/inttypes.h 2025-12-05T22:26:36.2279697Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/std/stdalign.h 2025-12-05T22:26:36.2282266Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/std/stdbool.h 2025-12-05T22:26:36.2284823Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/std/stdint.h 2025-12-05T22:26:36.2287358Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/paligned_alloc.h 2025-12-05T22:26:36.2289784Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pattributes.h 2025-12-05T22:26:36.2292157Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pbase64.h 2025-12-05T22:26:36.2294422Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pcrt.h 2025-12-05T22:26:36.2296799Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pdiagnostic.h 2025-12-05T22:26:36.2299170Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pdiagnostic_pop.h 2025-12-05T22:26:36.2301822Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pdiagnostic_push.h 2025-12-05T22:26:36.2304168Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pendian.h 2025-12-05T22:26:36.2306520Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pendian_detect.h 2025-12-05T22:26:36.2309052Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pinline.h 2025-12-05T22:26:36.2311409Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pinttypes.h 2025-12-05T22:26:36.2313787Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pmemaccess.h 2025-12-05T22:26:36.2316153Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/portable.h 2025-12-05T22:26:36.2320932Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/portable_basic.h 2025-12-05T22:26:36.2323038Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pparsefp.h 2025-12-05T22:26:36.2325056Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pparseint.h 2025-12-05T22:26:36.2327425Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pprintfp.h 2025-12-05T22:26:36.2329513Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pprintint.h 2025-12-05T22:26:36.2331668Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/prestrict.h 2025-12-05T22:26:36.2333809Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pstatic_assert.h 2025-12-05T22:26:36.2336281Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pstatic_assert_scope.h 2025-12-05T22:26:36.2338880Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pstdalign.h 2025-12-05T22:26:36.2341224Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pstdbool.h 2025-12-05T22:26:36.2343755Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pstdint.h 2025-12-05T22:26:36.2346109Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/punaligned.h 2025-12-05T22:26:36.2348648Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pversion.h 2025-12-05T22:26:36.2351100Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pwarnings.h 2025-12-05T22:26:36.2353505Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/reflection 2025-12-05T22:26:36.2355829Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/reflection/README 2025-12-05T22:26:36.2358407Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/reflection/flatbuffers_common_builder.h 2025-12-05T22:26:36.2361472Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/reflection/flatbuffers_common_reader.h 2025-12-05T22:26:36.2364278Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/reflection/reflection_builder.h 2025-12-05T22:26:36.2366935Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/reflection/reflection_reader.h 2025-12-05T22:26:36.2369609Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/reflection/reflection_verifier.h 2025-12-05T22:26:36.2372160Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/support 2025-12-05T22:26:36.2374411Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/support/README 2025-12-05T22:26:36.2376831Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/support/cdump.h 2025-12-05T22:26:36.2379259Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/support/elapsed.h 2025-12-05T22:26:36.2381713Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/support/hexdump.h 2025-12-05T22:26:36.2384120Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/include/flatcc/support/readfile.h 2025-12-05T22:26:36.2386528Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/lib/libflatccrt.a 2025-12-05T22:26:36.2388694Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/lib/libflatcc.a 2025-12-05T22:26:36.2390699Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_ep/bin/flatcc 2025-12-05T22:26:36.2392050Z [ 6%] Completed 'flatcc_ep' 2025-12-05T22:26:36.2392895Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-12-05T22:26:36.2393790Z [ 6%] Built target flatcc_ep 2025-12-05T22:26:36.2395047Z [ 6%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-packing.dir/src/reference/packing.cc.o 2025-12-05T22:26:36.2396561Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-12-05T22:26:36.2398580Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-avx512skx-u32-acc2.c.o 2025-12-05T22:26:36.2400462Z [ 6%] Built target xnnpack-pack-lh 2025-12-05T22:26:37.4660183Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-f16c-u32-acc4.c.o 2025-12-05T22:26:37.4661896Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-fma3-u8.c.o 2025-12-05T22:26:37.4663022Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-allocator.dir/src/allocator.c.o 2025-12-05T22:26:37.4663661Z [ 6%] Built target xnnpack-packing 2025-12-05T22:26:37.4664225Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-cache.dir/src/cache.c.o 2025-12-05T22:26:37.4664831Z [ 6%] Built target xnnpack-allocator 2025-12-05T22:26:37.4665255Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-12-05T22:26:37.4665894Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-12-05T22:26:37.4666855Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-maxpool/gen/f16-maxpool-9p-minmax-avx2-u16.c.o 2025-12-05T22:26:37.4668004Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-12-05T22:26:37.4668502Z [ 6%] Built target xnnpack-cache 2025-12-05T22:26:37.4669104Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-memory.dir/src/memory.c.o 2025-12-05T22:26:37.4669808Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-12-05T22:26:37.4670639Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernel-utils.dir/src/microkernel-utils.c.o 2025-12-05T22:26:37.4671377Z [ 6%] Built target xnnpack-microkernel-utils 2025-12-05T22:26:37.4671724Z [ 6%] Built target xnnpack-memory 2025-12-05T22:26:37.4672129Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-12-05T22:26:37.4673107Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-maxpool/gen/f16-maxpool-9p-minmax-sse41-u8.c.o 2025-12-05T22:26:37.4674070Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-12-05T22:26:37.4675008Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-12-05T22:26:37.4675960Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-12-05T22:26:37.4676466Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-12-05T22:26:37.4677416Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u4.c.o 2025-12-05T22:26:37.4678506Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-12-05T22:26:37.4679054Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-12-05T22:26:37.4680167Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.o 2025-12-05T22:26:37.4681665Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-rdminmax/gen/f16-rdmax-2p2x-scalar-c2.c.o 2025-12-05T22:26:37.4682662Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-12-05T22:26:37.4683676Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-rdminmax/gen/f16-rdmin-2p2x-scalar-c2.c.o 2025-12-05T22:26:37.4684761Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-mutex.dir/src/mutex.c.o 2025-12-05T22:26:37.4685812Z [ 7%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-12-05T22:26:37.4686959Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operator-utils.dir/src/operator-utils.c.o 2025-12-05T22:26:37.4687972Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operator-run.dir/src/operator-run.c.o 2025-12-05T22:26:37.4689077Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-rminmax/f16-rmax-f16c-u32.c.o 2025-12-05T22:26:37.4689962Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-12-05T22:26:37.4690925Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-avx512skx-u64-acc4.c.o 2025-12-05T22:26:37.4691771Z [ 7%] Built target xnnpack-mutex 2025-12-05T22:26:37.4692264Z [ 7%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-12-05T22:26:37.4692809Z [ 7%] Built target xnnpack-operator-utils 2025-12-05T22:26:37.4693690Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-12-05T22:26:37.4694523Z [ 7%] Built target xnnpack-operator-run 2025-12-05T22:26:37.4695361Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-rminmax/gen/f16-rmin-avx512skx-u64-acc4.c.o 2025-12-05T22:26:37.4696654Z [ 7%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-12-05T22:26:37.4697641Z [ 7%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-12-05T22:26:37.4698345Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-12-05T22:26:37.4699059Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-12-05T22:26:37.4700087Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-rminmax/gen/f16-rmin-scalar-u2-acc2.c.o 2025-12-05T22:26:37.4700995Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-12-05T22:26:37.4701842Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-12-05T22:26:37.4702668Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-12-05T22:26:37.4703817Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-avx512skx-u64-acc4.c.o 2025-12-05T22:26:37.4704816Z [ 9%] Built target xnnpack-reference-ukernels 2025-12-05T22:26:37.4705870Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-12-05T22:26:37.4707621Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vapproxgelu/gen/f16-vapproxgelu-scalar-rational-6-4-div.c.o 2025-12-05T22:26:37.4709648Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operator-delete.c.o 2025-12-05T22:26:37.4710884Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-12-05T22:26:37.4711925Z [ 9%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-12-05T22:26:37.4712903Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/average-pooling-nhwc.c.o 2025-12-05T22:26:37.4713706Z [ 9%] Built target flatccrt 2025-12-05T22:26:37.4714482Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-12-05T22:26:37.4716312Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-f16c-u16.c.o 2025-12-05T22:26:37.4717440Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-12-05T22:26:37.4718742Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-f16c-u16.c.o 2025-12-05T22:26:37.4721108Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-f16c-u8.c.o 2025-12-05T22:26:37.4723329Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/binary-elementwise-nd.c.o 2025-12-05T22:26:37.4725473Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/constant-pad-nd.c.o 2025-12-05T22:26:37.4727077Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/convolution-nchw.c.o 2025-12-05T22:26:37.4728489Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-f16c-u8.c.o 2025-12-05T22:26:37.4730173Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-f16c-u16.c.o 2025-12-05T22:26:37.4731378Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/convolution-nhwc.c.o 2025-12-05T22:26:37.4732193Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-12-05T22:26:37.4732731Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-12-05T22:26:37.4733753Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/deconvolution-nhwc.c.o 2025-12-05T22:26:37.4735130Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-12-05T22:26:38.7056738Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-f16c-u16.c.o 2025-12-05T22:26:38.7058120Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-12-05T22:26:38.7059318Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/fully-connected-nc.c.o 2025-12-05T22:26:38.7060452Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/max-pooling-nhwc.c.o 2025-12-05T22:26:38.7061746Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-12-05T22:26:38.7063428Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-f16c-u16.c.o 2025-12-05T22:26:38.7065346Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-f16c-u16.c.o 2025-12-05T22:26:38.7067101Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/pack-lh.c.o 2025-12-05T22:26:38.7068746Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/reduce-nd.c.o 2025-12-05T22:26:38.7069941Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-12-05T22:26:38.7071210Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-12-05T22:26:38.7072518Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-12-05T22:26:38.7073449Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-12-05T22:26:38.7074415Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-12-05T22:26:38.7075862Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-f16c-u16.c.o 2025-12-05T22:26:38.7077729Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-12-05T22:26:38.7079393Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/rope-nthc.c.o 2025-12-05T22:26:38.7080974Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/slice-nd.c.o 2025-12-05T22:26:38.7082250Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-12-05T22:26:38.7083576Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/softmax-nc.c.o 2025-12-05T22:26:38.7084897Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-12-05T22:26:38.7085897Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-12-05T22:26:38.7087150Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-12-05T22:26:38.7088619Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-f16c-u16.c.o 2025-12-05T22:26:38.7090404Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/transpose-nd.c.o 2025-12-05T22:26:38.7092120Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/unary-elementwise-nc.c.o 2025-12-05T22:26:38.7093833Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-operators.dir/src/operators/unpooling-nhwc.c.o 2025-12-05T22:26:38.7095659Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-f16c-u16.c.o 2025-12-05T22:26:38.7097640Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-f16c-u16.c.o 2025-12-05T22:26:38.7099604Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-f16c-u8.c.o 2025-12-05T22:26:38.7101575Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-f16c-u16.c.o 2025-12-05T22:26:38.7103529Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-f16c-u16.c.o 2025-12-05T22:26:38.7104911Z [100%] Linking CXX executable flatc 2025-12-05T22:26:38.7105386Z [ 12%] Built target xnnpack-operators 2025-12-05T22:26:38.7106346Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/memory-planner.c.o 2025-12-05T22:26:38.7108080Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-f16c-u16.c.o 2025-12-05T22:26:38.7110132Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/runtime.c.o 2025-12-05T22:26:38.7111518Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph.c.o 2025-12-05T22:26:38.7113213Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-f16c-u16.c.o 2025-12-05T22:26:38.7115153Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-f16c-u16.c.o 2025-12-05T22:26:38.7117111Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-f16c-u16.c.o 2025-12-05T22:26:38.7119161Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-12-05T22:26:38.7120855Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-12-05T22:26:38.7122690Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-f16c-u16.c.o 2025-12-05T22:26:38.7124707Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vcos/gen/f16-vcos-scalar-rational-3-2-div.c.o 2025-12-05T22:26:38.7126780Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-u16.c.o 2025-12-05T22:26:38.7128770Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vexp/gen/f16-vexp-scalar-poly-3.c.o 2025-12-05T22:26:38.7130819Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-12-05T22:26:38.7132583Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/binary.c.o 2025-12-05T22:26:38.7134539Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vgelu/gen/f16-vgelu-scalar-rational-6-4-div.c.o 2025-12-05T22:26:38.7136718Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-f16c-u16.c.o 2025-12-05T22:26:38.7138660Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/concatenate.c.o 2025-12-05T22:26:38.7140433Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/convolution-2d.c.o 2025-12-05T22:26:38.7142372Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-u16.c.o 2025-12-05T22:26:38.7144618Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-fma3-2x.c.o 2025-12-05T22:26:38.7146589Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/copy.c.o 2025-12-05T22:26:38.7148389Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-12-05T22:26:38.7150173Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/deprecated.c.o 2025-12-05T22:26:38.7152778Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-12-05T22:26:38.7154605Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-12-05T22:26:38.7156546Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-f16c-u16.c.o 2025-12-05T22:26:38.7158425Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/even-split.c.o 2025-12-05T22:26:38.7160234Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-12-05T22:26:38.7162075Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/fully-connected.c.o 2025-12-05T22:26:39.1072658Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-f16c-u16.c.o 2025-12-05T22:26:39.1074938Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-12-05T22:26:39.1076966Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/pack-lh.c.o 2025-12-05T22:26:39.1078918Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-12-05T22:26:39.1081096Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-f16c-u16.c.o 2025-12-05T22:26:39.1083164Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/rope.c.o 2025-12-05T22:26:39.1085117Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/softmax.c.o 2025-12-05T22:26:39.1087234Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-12-05T22:26:39.1089352Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-12-05T22:26:39.1091709Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/static-reduce.c.o 2025-12-05T22:26:39.1093798Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/static-slice.c.o 2025-12-05T22:26:39.1096015Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-12-05T22:26:39.1098435Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-f16c-u16.c.o 2025-12-05T22:26:39.1100997Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-f16c-rsqrt-u32.c.o 2025-12-05T22:26:39.1103424Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/static-transpose.c.o 2025-12-05T22:26:39.1105580Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/subgraph-utils.c.o 2025-12-05T22:26:39.1106918Z [100%] Built target flatc 2025-12-05T22:26:39.1107494Z [ 16%] Performing install step for 'flatbuffers_ep' 2025-12-05T22:26:39.1109030Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-12-05T22:26:39.1111047Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/unary.c.o 2025-12-05T22:26:39.1113626Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.o 2025-12-05T22:26:39.1116298Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vsin/gen/f16-vsin-scalar-rational-3-2-div.c.o 2025-12-05T22:26:39.1119744Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/subgraph/validation.c.o 2025-12-05T22:26:39.1121634Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-subgraph.dir/src/tensor.c.o 2025-12-05T22:26:39.1123773Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-f16c-rsqrt-u32.c.o 2025-12-05T22:26:39.1125314Z [100%] Built target flatc 2025-12-05T22:26:39.1125783Z Install the project... 2025-12-05T22:26:39.1126288Z -- Install configuration: "" 2025-12-05T22:26:39.1127524Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers 2025-12-05T22:26:39.1129681Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/allocator.h 2025-12-05T22:26:39.1131915Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/array.h 2025-12-05T22:26:39.1134102Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/base.h 2025-12-05T22:26:39.1136290Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/buffer.h 2025-12-05T22:26:39.1138470Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/buffer_ref.h 2025-12-05T22:26:39.1140698Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/code_generator.h 2025-12-05T22:26:39.1143073Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/code_generators.h 2025-12-05T22:26:39.1145491Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/default_allocator.h 2025-12-05T22:26:39.1148068Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/detached_buffer.h 2025-12-05T22:26:39.1150539Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/file_manager.h 2025-12-05T22:26:39.1152943Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/flatbuffer_builder.h 2025-12-05T22:26:39.1155355Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/flatbuffers.h 2025-12-05T22:26:39.1157639Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/flatc.h 2025-12-05T22:26:39.1159923Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/flex_flat_util.h 2025-12-05T22:26:39.1162267Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/flexbuffers.h 2025-12-05T22:26:39.1164419Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/grpc.h 2025-12-05T22:26:39.1166474Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/hash.h 2025-12-05T22:26:39.1168639Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/idl.h 2025-12-05T22:26:39.1171095Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/minireflect.h 2025-12-05T22:26:39.1173337Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/pch 2025-12-05T22:26:39.1175625Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/pch/flatc_pch.h 2025-12-05T22:26:39.1178321Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u24.c.o 2025-12-05T22:26:39.1181357Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/pch/pch.h 2025-12-05T22:26:39.1183675Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/reflection.h 2025-12-05T22:26:39.1186069Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/reflection_generated.h 2025-12-05T22:26:39.1188516Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/registry.h 2025-12-05T22:26:39.1190834Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/stl_emulation.h 2025-12-05T22:26:39.1193135Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/string.h 2025-12-05T22:26:39.1195381Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/struct.h 2025-12-05T22:26:39.1197611Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/table.h 2025-12-05T22:26:39.1199666Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/util.h 2025-12-05T22:26:39.1201806Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/vector.h 2025-12-05T22:26:39.1204232Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/vector_downward.h 2025-12-05T22:26:39.1206530Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/include/flatbuffers/verifier.h 2025-12-05T22:26:40.1049386Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/lib/cmake/flatbuffers/flatbuffers-config.cmake 2025-12-05T22:26:40.1050720Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/lib/cmake/flatbuffers/BuildFlatBuffers.cmake 2025-12-05T22:26:40.1052084Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/lib/cmake/flatbuffers/flatbuffers-config-version.cmake 2025-12-05T22:26:40.1053519Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/bin/flatc 2025-12-05T22:26:40.1055422Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/lib/cmake/flatbuffers/FlatcTargets.cmake 2025-12-05T22:26:40.1057660Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake 2025-12-05T22:26:40.1059054Z [ 16%] Completed 'flatbuffers_ep' 2025-12-05T22:26:40.1059574Z [ 16%] Built target flatbuffers_ep 2025-12-05T22:26:40.1061075Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-fma3-polynomial-p19h9t2-u32.c.o 2025-12-05T22:26:40.1063701Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-sse2-u16.c.o 2025-12-05T22:26:40.1065976Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-sse2-u16.c.o 2025-12-05T22:26:40.1067340Z [ 16%] Built target xnnpack-subgraph 2025-12-05T22:26:40.1068794Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-f16c-u16.c.o 2025-12-05T22:26:40.1070161Z [ 16%] Generating common_schema headers 2025-12-05T22:26:40.1070734Z [ 16%] Built target common_schema 2025-12-05T22:26:40.1071276Z [ 16%] Generating scalar_type_schema headers 2025-12-05T22:26:40.1071860Z [ 16%] Built target scalar_type_schema 2025-12-05T22:26:40.1073456Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-12-05T22:26:40.1076101Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-sse2-c4.c.o 2025-12-05T22:26:40.1078741Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-avgpool/gen/f32-avgpool-9p-minmax-avx-u8.c.o 2025-12-05T22:26:40.1080362Z [ 18%] Generating xnnpack_schema headers 2025-12-05T22:26:40.1081976Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-avgpool/gen/f32-avgpool-9p-minmax-avx512f-u16.c.o 2025-12-05T22:26:40.1083629Z [ 18%] Built target xnnpack_schema 2025-12-05T22:26:40.1085180Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-avgpool/gen/f32-avgpool-9p-minmax-scalar-u1.c.o 2025-12-05T22:26:40.1086810Z [ 18%] Generating program_schema headers 2025-12-05T22:26:40.1087404Z [ 18%] Built target program_schema 2025-12-05T22:26:40.1088954Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-avgpool/gen/f32-avgpool-9p-minmax-sse2-u4.c.o 2025-12-05T22:26:40.1090605Z [ 18%] Generating flat_tensor_schema headers 2025-12-05T22:26:40.1092420Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-12-05T22:26:40.1094047Z [ 18%] Built target flat_tensor_schema 2025-12-05T22:26:40.1095677Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.o 2025-12-05T22:26:40.1097677Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-12-05T22:26:40.1098932Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-12-05T22:26:40.1101028Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-12-05T22:26:40.1102769Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-12-05T22:26:40.1104854Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx.c.o 2025-12-05T22:26:40.1107336Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f.c.o 2025-12-05T22:26:40.1109913Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-fma3.c.o 2025-12-05T22:26:40.1111933Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-12-05T22:26:40.1113426Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-12-05T22:26:40.1114633Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-12-05T22:26:40.1116591Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-12-05T22:26:40.1118900Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-12-05T22:26:40.1120182Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-12-05T22:26:40.1121451Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-12-05T22:26:40.1122764Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-12-05T22:26:40.1124664Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-12-05T22:26:40.1126718Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-12-05T22:26:40.1128775Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar-acc2.c.o 2025-12-05T22:26:40.1130848Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-12-05T22:26:40.1132284Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-12-05T22:26:40.1133568Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-12-05T22:26:40.1135434Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar-acc2.c.o 2025-12-05T22:26:40.1137271Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-12-05T22:26:40.1138496Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-12-05T22:26:40.1140369Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-sse.c.o 2025-12-05T22:26:40.1143062Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx.c.o 2025-12-05T22:26:40.1144962Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-12-05T22:26:40.1146885Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx512f.c.o 2025-12-05T22:26:40.1148798Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-12-05T22:26:40.1150015Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-12-05T22:26:40.1151262Z [ 21%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-12-05T22:26:40.1153093Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3.c.o 2025-12-05T22:26:40.1155539Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-12-05T22:26:40.1157946Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-sse.c.o 2025-12-05T22:26:40.1160301Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-12-05T22:26:40.1162658Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx.c.o 2025-12-05T22:26:40.1164355Z [ 22%] Linking CXX static library libexecutorch_core.a 2025-12-05T22:26:40.1165908Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx512f.c.o 2025-12-05T22:26:40.1167381Z [ 22%] Built target executorch_core 2025-12-05T22:26:40.1168807Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-fma3.c.o 2025-12-05T22:26:41.3338843Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-12-05T22:26:41.3341559Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-sse.c.o 2025-12-05T22:26:41.3343942Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-12-05T22:26:41.3346609Z [ 22%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-12-05T22:26:41.3347799Z [ 22%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-12-05T22:26:41.3349723Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx.c.o 2025-12-05T22:26:41.3352110Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx512f.c.o 2025-12-05T22:26:41.3354037Z [ 22%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-12-05T22:26:41.3356001Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-fma3.c.o 2025-12-05T22:26:41.3358536Z [ 22%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-12-05T22:26:41.3360617Z [ 22%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-12-05T22:26:41.3362486Z [ 22%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-12-05T22:26:41.3364495Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-12-05T22:26:41.3366618Z [ 24%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/flat_tensor_data_map.cpp.o 2025-12-05T22:26:41.3368294Z [ 24%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/serialize/flat_tensor_header.cpp.o 2025-12-05T22:26:41.3369964Z [ 24%] Building CXX object extension/named_data_map/CMakeFiles/extension_named_data_map.dir/merged_data_map.cpp.o 2025-12-05T22:26:41.3371082Z [ 24%] Linking CXX static library libexecutorch.a 2025-12-05T22:26:41.3371661Z [ 24%] Built target executorch 2025-12-05T22:26:41.3373130Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-sse.c.o 2025-12-05T22:26:41.3375859Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o 2025-12-05T22:26:41.3377731Z [ 24%] Linking CXX static library libextension_data_loader.a 2025-12-05T22:26:41.3379614Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o 2025-12-05T22:26:41.3382674Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.o 2025-12-05T22:26:41.3384480Z [ 24%] Built target extension_data_loader 2025-12-05T22:26:41.3386262Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.o 2025-12-05T22:26:41.3388494Z [ 24%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-12-05T22:26:41.3389869Z [ 24%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-12-05T22:26:41.3392051Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o 2025-12-05T22:26:41.3393909Z [ 24%] Linking CXX static library libextension_flat_tensor.a 2025-12-05T22:26:41.3394574Z [ 24%] Built target extension_flat_tensor 2025-12-05T22:26:41.3395273Z [ 24%] Linking CXX static library libextension_named_data_map.a 2025-12-05T22:26:41.3397091Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o 2025-12-05T22:26:41.3400129Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.o 2025-12-05T22:26:41.3402556Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-12-05T22:26:41.3403791Z [ 24%] Built target extension_named_data_map 2025-12-05T22:26:41.3404869Z [ 24%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-12-05T22:26:41.3406510Z [ 24%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-12-05T22:26:41.3408155Z [ 24%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-12-05T22:26:41.3410473Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o 2025-12-05T22:26:41.3411984Z [ 24%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-12-05T22:26:41.3413203Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o 2025-12-05T22:26:41.3414757Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-4x4.c.o 2025-12-05T22:26:41.3415717Z [ 24%] Linking CXX static library libextension_tensor.a 2025-12-05T22:26:41.3416093Z [ 24%] Generating etdump headers 2025-12-05T22:26:41.3416398Z [ 24%] Built target extension_tensor 2025-12-05T22:26:41.3416713Z [ 24%] Generating bundled_program headers 2025-12-05T22:26:41.3417209Z [ 24%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/etdump_flatcc.cpp.o 2025-12-05T22:26:41.3418013Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-12-05T22:26:41.3419443Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/arange_util.cpp.o 2025-12-05T22:26:41.3420932Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-12-05T22:26:41.3421935Z [ 25%] Building CXX object devtools/bundled_program/CMakeFiles/bundled_program.dir/bundled_program.cpp.o 2025-12-05T22:26:41.3423179Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o 2025-12-05T22:26:41.3424359Z [ 25%] Linking CXX static library libextension_threadpool.a 2025-12-05T22:26:41.3424753Z [ 25%] Built target extension_threadpool 2025-12-05T22:26:41.3425290Z [ 25%] Building CXX object extension/module/CMakeFiles/extension_module_static.dir/module.cpp.o 2025-12-05T22:26:41.3426485Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o 2025-12-05T22:26:41.3428062Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4.c.o 2025-12-05T22:26:41.3429356Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-12-05T22:26:41.3430287Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-12-05T22:26:41.3431088Z [ 25%] Building CXX object CMakeFiles/util.dir/extension/aten_util/aten_bridge.cpp.o 2025-12-05T22:26:41.3431611Z [ 25%] Linking CXX static library libbundled_program.a 2025-12-05T22:26:41.3432110Z [ 25%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/emitter.cpp.o 2025-12-05T22:26:41.3432565Z [ 25%] Built target bundled_program 2025-12-05T22:26:41.3433114Z [ 25%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/buffer_data_sink.cpp.o 2025-12-05T22:26:41.3434151Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-u24.c.o 2025-12-05T22:26:41.3435034Z [ 25%] Linking CXX static library libextension_module_static.a 2025-12-05T22:26:41.3435446Z [ 25%] Built target extension_module_static 2025-12-05T22:26:41.3435987Z [ 25%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/file_data_sink.cpp.o 2025-12-05T22:26:41.3437049Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-u16.c.o 2025-12-05T22:26:41.3438365Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-u16.c.o 2025-12-05T22:26:41.3439586Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-12-05T22:26:41.3440484Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-12-05T22:26:43.1648083Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-12-05T22:26:43.1649774Z [ 25%] Linking CXX static library libetdump.a 2025-12-05T22:26:43.1650409Z [ 25%] Built target etdump 2025-12-05T22:26:43.1651493Z [ 25%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__clone_dim_order.cpp.o 2025-12-05T22:26:43.1653556Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-u16.c.o 2025-12-05T22:26:43.1655897Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-u8.c.o 2025-12-05T22:26:43.1658478Z [ 27%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-10x16c2-minmax-asm-amd64-avx512f-broadcast.S.o 2025-12-05T22:26:43.1661198Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-10x8-minmax-fma3-broadcast.c.o 2025-12-05T22:26:43.1663708Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx-broadcast.c.o 2025-12-05T22:26:43.1666017Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-12-05T22:26:43.1668054Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx512f-broadcast.c.o 2025-12-05T22:26:43.1670657Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-fma3-broadcast.c.o 2025-12-05T22:26:43.1672753Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-12-05T22:26:43.1675033Z [ 28%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16c2-minmax-asm-amd64-avx512f-broadcast.S.o 2025-12-05T22:26:43.1676765Z [ 28%] Linking CXX static library libutil.a 2025-12-05T22:26:43.1677362Z [ 28%] Built target util 2025-12-05T22:26:43.1678439Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-12-05T22:26:43.1679938Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-12-05T22:26:43.1681178Z [ 28%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-12-05T22:26:43.1682636Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-12-05T22:26:43.1684314Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-12-05T22:26:43.1686429Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16s4-minmax-fma3-broadcast.c.o 2025-12-05T22:26:43.1688638Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-12-05T22:26:43.1690304Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-12-05T22:26:43.1691881Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-12-05T22:26:43.1694357Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x32-minmax-avx512f-broadcast.c.o 2025-12-05T22:26:43.1696535Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-12-05T22:26:43.1698012Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-12-05T22:26:43.1699534Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-12-05T22:26:43.1700632Z [ 30%] Linking CXX static library libcpublas.a 2025-12-05T22:26:43.1701118Z [ 30%] Built target cpublas 2025-12-05T22:26:43.1701846Z [ 30%] Building CXX object CMakeFiles/bundled_module.dir/extension/module/bundled_module.cpp.o 2025-12-05T22:26:43.1703931Z [ 30%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x32c2-minmax-asm-amd64-avx512f-broadcast.S.o 2025-12-05T22:26:43.1706214Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-12-05T22:26:43.1707802Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-12-05T22:26:43.1709961Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-12-05T22:26:43.1712463Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-12-05T22:26:43.1714525Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-12-05T22:26:43.1716309Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-12-05T22:26:43.1718044Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-12-05T22:26:43.1720217Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-12-05T22:26:43.1722155Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-12-05T22:26:43.1723235Z [ 30%] Linking CXX static library libbundled_module.a 2025-12-05T22:26:43.1723815Z [ 30%] Built target bundled_module 2025-12-05T22:26:43.1725260Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-avx-broadcast.c.o 2025-12-05T22:26:43.1727189Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-12-05T22:26:43.1728726Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-12-05T22:26:43.1730047Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-12-05T22:26:43.1731508Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-12-05T22:26:43.1733535Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-fma3-broadcast.c.o 2025-12-05T22:26:43.1735555Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-12-05T22:26:43.1737019Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-12-05T22:26:43.1738539Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-12-05T22:26:43.1739687Z [ 30%] Linking CXX static library libkernels_util_all_deps.a 2025-12-05T22:26:43.1740369Z [ 30%] Built target kernels_util_all_deps 2025-12-05T22:26:43.1741460Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-12-05T22:26:43.1743661Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse-load1.c.o 2025-12-05T22:26:43.1745888Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-12-05T22:26:43.1748012Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-fma3-broadcast.c.o 2025-12-05T22:26:43.1750255Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-12-05T22:26:43.1751844Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-12-05T22:26:43.1753402Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-12-05T22:26:43.1754825Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-12-05T22:26:43.1756949Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x16s4-minmax-fma3-broadcast.c.o 2025-12-05T22:26:43.1759594Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-12-05T22:26:43.1761644Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-12-05T22:26:43.1763252Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-12-05T22:26:43.1764959Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-12-05T22:26:43.1766893Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-12-05T22:26:43.1769362Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2c4-minmax-sse.c.o 2025-12-05T22:26:44.9472592Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-12-05T22:26:44.9474198Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-12-05T22:26:44.9475695Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-12-05T22:26:44.9477469Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-12-05T22:26:44.9478648Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-12-05T22:26:44.9479539Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-12-05T22:26:44.9480452Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-12-05T22:26:44.9481267Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-12-05T22:26:44.9482653Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-12-05T22:26:44.9484575Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-12-05T22:26:44.9486226Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-12-05T22:26:44.9488397Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-fma3-broadcast.c.o 2025-12-05T22:26:44.9491158Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse-load1.c.o 2025-12-05T22:26:44.9492692Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-avx-broadcast.c.o 2025-12-05T22:26:44.9494223Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-fma3-broadcast.c.o 2025-12-05T22:26:44.9495566Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-12-05T22:26:44.9496494Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-12-05T22:26:44.9497807Z [ 33%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x32c2-minmax-asm-amd64-avx512f-broadcast.S.o 2025-12-05T22:26:44.9499417Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-avx-broadcast.c.o 2025-12-05T22:26:44.9500928Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-fma3-broadcast.c.o 2025-12-05T22:26:44.9502469Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-7x16-minmax-avx512f-broadcast.c.o 2025-12-05T22:26:44.9503723Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-12-05T22:26:44.9505082Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-7x32-minmax-avx512f-broadcast.c.o 2025-12-05T22:26:44.9506637Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-12-05T22:26:44.9507815Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-12-05T22:26:44.9509064Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-sse-p8.c.o 2025-12-05T22:26:44.9510255Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-12-05T22:26:44.9511140Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-12-05T22:26:44.9512098Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-12-05T22:26:44.9513198Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-u2.c.o 2025-12-05T22:26:44.9514308Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-12-05T22:26:44.9515410Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-sse-u8.c.o 2025-12-05T22:26:44.9516837Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-10x8-minmax-fma3-broadcast.c.o 2025-12-05T22:26:44.9517937Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-12-05T22:26:44.9519822Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx-broadcast.c.o 2025-12-05T22:26:44.9522488Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx512f-broadcast.c.o 2025-12-05T22:26:44.9524663Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-12-05T22:26:44.9526534Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-12-05T22:26:44.9528785Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-fma3-broadcast.c.o 2025-12-05T22:26:44.9531397Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x16s4-minmax-fma3-broadcast.c.o 2025-12-05T22:26:44.9534110Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x32-minmax-avx512f-broadcast.c.o 2025-12-05T22:26:44.9536696Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-12-05T22:26:44.9538813Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-12-05T22:26:44.9540567Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-12-05T22:26:44.9542176Z [ 36%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-12-05T22:26:44.9543977Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-12-05T22:26:44.9546250Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-12-05T22:26:44.9548564Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-12-05T22:26:44.9550157Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-12-05T22:26:44.9551776Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-12-05T22:26:44.9553922Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-avx-broadcast.c.o 2025-12-05T22:26:44.9556640Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-fma3-broadcast.c.o 2025-12-05T22:26:44.9558804Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-12-05T22:26:44.9560442Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-12-05T22:26:44.9562144Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-12-05T22:26:44.9564222Z [ 36%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-load1.c.o 2025-12-05T22:26:44.9566263Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-12-05T22:26:44.9567781Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-12-05T22:26:44.9569287Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-12-05T22:26:44.9570906Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-12-05T22:26:44.9573125Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x16s4-minmax-fma3-broadcast.c.o 2025-12-05T22:26:46.7355744Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-12-05T22:26:46.7358157Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-12-05T22:26:46.7360116Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-12-05T22:26:46.7362485Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2c4-minmax-sse.c.o 2025-12-05T22:26:46.7364909Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-12-05T22:26:46.7366854Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-12-05T22:26:46.7368314Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-12-05T22:26:46.7369904Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-12-05T22:26:46.7371370Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-12-05T22:26:46.7372700Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-12-05T22:26:46.7374641Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-12-05T22:26:46.7376933Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-12-05T22:26:46.7378793Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-12-05T22:26:46.7380827Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-fma3-broadcast.c.o 2025-12-05T22:26:46.7382915Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-12-05T22:26:46.7384521Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-12-05T22:26:46.7386018Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-12-05T22:26:46.7388007Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse-load1.c.o 2025-12-05T22:26:46.7390831Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-avx-broadcast.c.o 2025-12-05T22:26:46.7393710Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.o 2025-12-05T22:26:46.7395969Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-12-05T22:26:46.7397914Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-avx-broadcast.c.o 2025-12-05T22:26:46.7399881Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-12-05T22:26:46.7401338Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-12-05T22:26:46.7403221Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-fma3-broadcast.c.o 2025-12-05T22:26:46.7405734Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-7x16-minmax-avx512f-broadcast.c.o 2025-12-05T22:26:46.7407842Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-12-05T22:26:46.7410105Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-7x32-minmax-avx512f-broadcast.c.o 2025-12-05T22:26:46.7412653Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-maxpool/gen/f32-maxpool-9p-minmax-scalar-u1.c.o 2025-12-05T22:26:46.7415186Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-maxpool/gen/f32-maxpool-9p-minmax-sse2-u4.c.o 2025-12-05T22:26:46.7417390Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-avx-broadcast.c.o 2025-12-05T22:26:46.7419002Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-12-05T22:26:46.7419736Z [ 39%] Linking CXX static library liboptimized_kernels.a 2025-12-05T22:26:46.7420420Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-12-05T22:26:46.7421637Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-12-05T22:26:46.7423650Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-12-05T22:26:46.7425276Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-12-05T22:26:46.7426778Z [ 39%] Built target optimized_kernels 2025-12-05T22:26:46.7428081Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-12-05T22:26:46.7430438Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-12-05T22:26:46.7433246Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-12-05T22:26:46.7435344Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-12-05T22:26:46.7436934Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-12-05T22:26:46.7438988Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-12-05T22:26:46.7441141Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-sse41-dup.c.o 2025-12-05T22:26:46.7443954Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx-broadcast.c.o 2025-12-05T22:26:46.7446191Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-12-05T22:26:46.7448473Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx2-broadcast.c.o 2025-12-05T22:26:46.7451352Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-fma3-broadcast.c.o 2025-12-05T22:26:46.7453709Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_grid_sampler_2d.cpp.o 2025-12-05T22:26:46.7455357Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-12-05T22:26:46.7456982Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-12-05T22:26:46.7459216Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-12-05T22:26:46.7461996Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-sse41-dup.c.o 2025-12-05T22:26:46.7464315Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-12-05T22:26:46.7466003Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-12-05T22:26:46.7467726Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-12-05T22:26:46.7470023Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.o 2025-12-05T22:26:46.7471732Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-12-05T22:26:46.7473050Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-12-05T22:26:46.7474280Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-12-05T22:26:46.7475539Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-12-05T22:26:48.2428501Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-12-05T22:26:48.2431190Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-12-05T22:26:48.2433469Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-12-05T22:26:48.2435850Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-12-05T22:26:48.2437630Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-12-05T22:26:48.2440053Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-12-05T22:26:48.2442966Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-12-05T22:26:48.2445377Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-12-05T22:26:48.2447742Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-sse41-dup.c.o 2025-12-05T22:26:48.2450528Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-12-05T22:26:48.2453240Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-sse41-dup.c.o 2025-12-05T22:26:48.2456101Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx-broadcast.c.o 2025-12-05T22:26:48.2459035Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx2-broadcast.c.o 2025-12-05T22:26:48.2461322Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-12-05T22:26:48.2499225Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-fma3-broadcast.c.o 2025-12-05T22:26:48.2502410Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-12-05T22:26:48.2505259Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-u32.c.o 2025-12-05T22:26:48.2507392Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-12-05T22:26:48.2509219Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-12-05T22:26:48.2511267Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-u64.c.o 2025-12-05T22:26:48.2513383Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-12-05T22:26:48.2515083Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-12-05T22:26:48.2516848Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-12-05T22:26:48.2518756Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-12-05T22:26:48.2520481Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-12-05T22:26:48.2522923Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-u128.c.o 2025-12-05T22:26:48.2525613Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-12-05T22:26:48.2528327Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-12-05T22:26:48.2530976Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-u32.c.o 2025-12-05T22:26:48.2533141Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-12-05T22:26:48.2535319Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-u32.c.o 2025-12-05T22:26:48.2537436Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-12-05T22:26:48.2539546Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-u32.c.o 2025-12-05T22:26:48.2542109Z [ 42%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-u64.c.o 2025-12-05T22:26:48.2543976Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-12-05T22:26:48.2546123Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-u128.c.o 2025-12-05T22:26:48.2548892Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-12-05T22:26:48.2551575Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-12-05T22:26:48.2553731Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-12-05T22:26:48.2556257Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-u32.c.o 2025-12-05T22:26:48.2558498Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-12-05T22:26:48.2560314Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-12-05T22:26:48.2562029Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-12-05T22:26:48.2564564Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.o 2025-12-05T22:26:48.2568007Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.o 2025-12-05T22:26:48.2570748Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-12-05T22:26:48.2573318Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-12-05T22:26:48.2575934Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-12-05T22:26:48.2577871Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-12-05T22:26:48.2580600Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.o 2025-12-05T22:26:48.2583040Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-12-05T22:26:48.2585194Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rdminmax/gen/f32-rdmax-2p2x-avx-c32.c.o 2025-12-05T22:26:48.2587345Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-12-05T22:26:48.2589541Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rdminmax/gen/f32-rdmax-2p2x-avx512f-c32.c.o 2025-12-05T22:26:48.2592146Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rdminmax/gen/f32-rdmax-2p2x-scalar-c2.c.o 2025-12-05T22:26:48.2594855Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rdminmax/gen/f32-rdmax-2p2x-sse2-c32.c.o 2025-12-05T22:26:48.2597506Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rdminmax/gen/f32-rdmin-2p2x-avx-c32.c.o 2025-12-05T22:26:49.8939296Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-12-05T22:26:49.8941336Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rdminmax/gen/f32-rdmin-2p2x-avx512f-c32.c.o 2025-12-05T22:26:49.8943664Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rdminmax/gen/f32-rdmin-2p2x-scalar-c2.c.o 2025-12-05T22:26:49.8945998Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rdminmax/gen/f32-rdmin-2p2x-sse2-c32.c.o 2025-12-05T22:26:49.8947882Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-12-05T22:26:49.8949849Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-avx-u32.c.o 2025-12-05T22:26:49.8952624Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-avx512f-u64.c.o 2025-12-05T22:26:49.8955274Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-12-05T22:26:49.8957304Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-12-05T22:26:49.8958921Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-12-05T22:26:49.8961044Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-sse2-u16.c.o 2025-12-05T22:26:49.8963160Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-12-05T22:26:49.8964896Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-12-05T22:26:49.8966603Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-12-05T22:26:49.8968682Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx-u32-acc4.c.o 2025-12-05T22:26:49.8970727Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-12-05T22:26:49.8972348Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-12-05T22:26:49.8974526Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx512f-u64-acc4.c.o 2025-12-05T22:26:49.8976491Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-12-05T22:26:49.8978421Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-12-05T22:26:49.8980761Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-sse-u16-acc4.c.o 2025-12-05T22:26:49.8983086Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rminmax/gen/f32-rmin-avx-u32-acc4.c.o 2025-12-05T22:26:49.8985014Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-12-05T22:26:49.8986540Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-12-05T22:26:49.8988576Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rminmax/gen/f32-rmin-avx512f-u64-acc4.c.o 2025-12-05T22:26:49.8990928Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc4.c.o 2025-12-05T22:26:49.8993198Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rminmax/gen/f32-rmin-sse-u16-acc4.c.o 2025-12-05T22:26:49.8995603Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-avx-u32-acc4.c.o 2025-12-05T22:26:49.8997635Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-12-05T22:26:49.8999736Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-avx512f-u64-acc4.c.o 2025-12-05T22:26:49.9002203Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-12-05T22:26:49.9004816Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-sse-u16-acc4.c.o 2025-12-05T22:26:49.9006841Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-12-05T22:26:49.9008495Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-12-05T22:26:49.9010491Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx-u32-acc4.c.o 2025-12-05T22:26:49.9012441Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-12-05T22:26:49.9014073Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-12-05T22:26:49.9015668Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-12-05T22:26:49.9017256Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-12-05T22:26:49.9019446Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx512f-u32-acc2.c.o 2025-12-05T22:26:49.9021770Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-12-05T22:26:49.9023799Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-sse2-u16-acc4.c.o 2025-12-05T22:26:49.9025957Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-12-05T22:26:49.9027534Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-12-05T22:26:49.9029392Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-12-05T22:26:49.9031580Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-sse.c.o 2025-12-05T22:26:49.9043783Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-12-05T22:26:49.9045870Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-12-05T22:26:49.9047540Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-12-05T22:26:49.9049616Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-12-05T22:26:49.9051574Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-12-05T22:26:49.9053168Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-12-05T22:26:49.9054805Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-12-05T22:26:49.9056671Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-12-05T22:26:49.9058749Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-12-05T22:26:49.9061062Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vapproxgelu/gen/f32-vapproxgelu-avx-rational-12-10-div.c.o 2025-12-05T22:26:49.9063033Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-12-05T22:26:49.9064898Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vapproxgelu/gen/f32-vapproxgelu-avx512f-rational-12-10-div.c.o 2025-12-05T22:26:49.9066288Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-12-05T22:26:49.9067797Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-12-05T22:26:49.9069632Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-12-05T22:26:49.9071274Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-12-05T22:26:51.3288729Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vapproxgelu/gen/f32-vapproxgelu-fma3-rational-12-10-div.c.o 2025-12-05T22:26:51.3291034Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-12-05T22:26:51.3292590Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-12-05T22:26:51.3294227Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-12-05T22:26:51.3296430Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vapproxgelu/gen/f32-vapproxgelu-scalar-rational-12-10-div.c.o 2025-12-05T22:26:51.3299325Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vapproxgelu/gen/f32-vapproxgelu-sse2-rational-12-10-div.c.o 2025-12-05T22:26:51.3302479Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vapproxgelu/gen/f32-vapproxgelu-sse2fma-rational-12-10-div.c.o 2025-12-05T22:26:51.3305054Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx-u16.c.o 2025-12-05T22:26:51.3307052Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-12-05T22:26:51.3309173Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx512f-u32.c.o 2025-12-05T22:26:51.3311061Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-12-05T22:26:51.3312821Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-12-05T22:26:51.3314802Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-12-05T22:26:51.3316871Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-12-05T22:26:51.3319140Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-sse-u8.c.o 2025-12-05T22:26:51.3321519Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx-u16.c.o 2025-12-05T22:26:51.3323872Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx512f-u32.c.o 2025-12-05T22:26:51.3326305Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-12-05T22:26:51.3328309Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-12-05T22:26:51.3329885Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-12-05T22:26:51.3331669Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-12-05T22:26:51.3333299Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-12-05T22:26:51.3335350Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx-u16.c.o 2025-12-05T22:26:51.3337801Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-sse-u8.c.o 2025-12-05T22:26:51.3339924Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-12-05T22:26:51.3342043Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx512f-u32.c.o 2025-12-05T22:26:51.3344422Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-12-05T22:26:51.3346781Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-sse-u8.c.o 2025-12-05T22:26:51.3349129Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx-u16.c.o 2025-12-05T22:26:51.3353031Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-12-05T22:26:51.3354703Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-12-05T22:26:51.3356542Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-12-05T22:26:51.3358544Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx512f-u32.c.o 2025-12-05T22:26:51.3360619Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-12-05T22:26:51.3362234Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-12-05T22:26:51.3364177Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-12-05T22:26:51.3366437Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-sse-u8.c.o 2025-12-05T22:26:51.3368806Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx-u16.c.o 2025-12-05T22:26:51.3371009Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx512f-u32.c.o 2025-12-05T22:26:51.3373235Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-12-05T22:26:51.3375435Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-sse-u8.c.o 2025-12-05T22:26:51.3377822Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx-u16.c.o 2025-12-05T22:26:51.3380140Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx512f-u32.c.o 2025-12-05T22:26:51.3382245Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-12-05T22:26:51.3384231Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-12-05T22:26:51.3386343Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-sse-u8.c.o 2025-12-05T22:26:51.3387428Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-12-05T22:26:51.3388587Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx-u16.c.o 2025-12-05T22:26:51.3389863Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx512f-u32.c.o 2025-12-05T22:26:51.3391150Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-12-05T22:26:51.3393321Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-sse-u8.c.o 2025-12-05T22:26:51.3395618Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx-u16.c.o 2025-12-05T22:26:51.3398015Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx512f-u32.c.o 2025-12-05T22:26:51.3400028Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-12-05T22:26:51.3401573Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-12-05T22:26:51.3403669Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-12-05T22:26:51.3406078Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-sse-u8.c.o 2025-12-05T22:26:51.3408118Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-12-05T22:26:51.3410131Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-avx-u16.c.o 2025-12-05T22:26:51.3412534Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-avx512f-u32.c.o 2025-12-05T22:26:52.8335181Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-12-05T22:26:52.8336526Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-sse-u8.c.o 2025-12-05T22:26:52.8337587Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-12-05T22:26:52.8338425Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-12-05T22:26:52.8339299Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-12-05T22:26:52.8340355Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-avx-u16.c.o 2025-12-05T22:26:52.8341642Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-avx512f-u32.c.o 2025-12-05T22:26:52.8343385Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-12-05T22:26:52.8344468Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-12-05T22:26:52.8345529Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-sse-u8.c.o 2025-12-05T22:26:52.8347020Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-avx-u16.c.o 2025-12-05T22:26:52.8348120Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-12-05T22:26:52.8349333Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-avx512f-u32.c.o 2025-12-05T22:26:52.8350399Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-12-05T22:26:52.8351480Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-12-05T22:26:52.8352762Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-sse2-u8.c.o 2025-12-05T22:26:52.8353822Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-12-05T22:26:52.8354861Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-12-05T22:26:52.8355776Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-12-05T22:26:52.8356859Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-avx-u16.c.o 2025-12-05T22:26:52.8358155Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-avx512f-u32.c.o 2025-12-05T22:26:52.8359577Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-12-05T22:26:52.8360873Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-sse2-u8.c.o 2025-12-05T22:26:52.8361989Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-12-05T22:26:52.8362945Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-12-05T22:26:52.8363954Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d_aa.cpp.o 2025-12-05T22:26:52.8364959Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-12-05T22:26:52.8365859Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-12-05T22:26:52.8366919Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-avx-u16.c.o 2025-12-05T22:26:52.8368063Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-12-05T22:26:52.8368993Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-12-05T22:26:52.8370097Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-avx512f-u32.c.o 2025-12-05T22:26:52.8371171Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-12-05T22:26:52.8372256Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-12-05T22:26:52.8373540Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-sse-u8.c.o 2025-12-05T22:26:52.8375239Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-avx-u16.c.o 2025-12-05T22:26:52.8377280Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-12-05T22:26:52.8379265Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-avx512f-u32.c.o 2025-12-05T22:26:52.8381691Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-12-05T22:26:52.8384096Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-sse2-u8.c.o 2025-12-05T22:26:52.8386307Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_bool.cpp.o 2025-12-05T22:26:52.8388542Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-12-05T22:26:52.8390627Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-12-05T22:26:52.8392469Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-12-05T22:26:52.8394533Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-avx-u16.c.o 2025-12-05T22:26:52.8396539Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-12-05T22:26:52.8398417Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/arange_util.cpp.o 2025-12-05T22:26:52.8400413Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-avx512f-u32.c.o 2025-12-05T22:26:52.8402743Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-12-05T22:26:52.8404766Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-12-05T22:26:52.8406441Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-12-05T22:26:52.8408434Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-sse-u8.c.o 2025-12-05T22:26:52.8410438Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-12-05T22:26:52.8412389Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx-u16.c.o 2025-12-05T22:26:52.8414752Z [ 57%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx512f-u32.c.o 2025-12-05T22:26:52.8417168Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-12-05T22:26:52.8419675Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-sse-u8.c.o 2025-12-05T22:26:52.8422011Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx-u16.c.o 2025-12-05T22:26:52.8424064Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-12-05T22:26:52.8426149Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx512f-u32.c.o 2025-12-05T22:26:54.0253749Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-12-05T22:26:54.0256440Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-u8.c.o 2025-12-05T22:26:54.0257959Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx-u16.c.o 2025-12-05T22:26:54.0259293Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx512f-u32.c.o 2025-12-05T22:26:54.0260433Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-12-05T22:26:54.0261523Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-12-05T22:26:54.0262801Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-sse-u8.c.o 2025-12-05T22:26:54.0264056Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-avx-u16.c.o 2025-12-05T22:26:54.0265506Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-avx512f-u32.c.o 2025-12-05T22:26:54.0267786Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-12-05T22:26:54.0270502Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-sse-u8.c.o 2025-12-05T22:26:54.0272808Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-avx.c.o 2025-12-05T22:26:54.0275187Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-avx512f.c.o 2025-12-05T22:26:54.0277533Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar.c.o 2025-12-05T22:26:54.0279653Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/grid_sampler_2d_util.cpp.o 2025-12-05T22:26:54.0281472Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-12-05T22:26:54.0283502Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-sse2.c.o 2025-12-05T22:26:54.0285540Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-12-05T22:26:54.0287294Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-12-05T22:26:54.0289067Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-12-05T22:26:54.0291169Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-avx512f-u32.c.o 2025-12-05T22:26:54.0293094Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-12-05T22:26:54.0294875Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-12-05T22:26:54.0296600Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-12-05T22:26:54.0298685Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-fma3-u16.c.o 2025-12-05T22:26:54.0301154Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-12-05T22:26:54.0303476Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-sse-u8.c.o 2025-12-05T22:26:54.0305811Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx.c.o 2025-12-05T22:26:54.0307837Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-12-05T22:26:54.0309093Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx512f.c.o 2025-12-05T22:26:54.0310361Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-12-05T22:26:54.0311490Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-12-05T22:26:54.0312804Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-sse2.c.o 2025-12-05T22:26:54.0313918Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/stack_util.cpp.o 2025-12-05T22:26:54.0315015Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx.c.o 2025-12-05T22:26:54.0316535Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx512f.c.o 2025-12-05T22:26:54.0317884Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-12-05T22:26:54.0319406Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-sse2.c.o 2025-12-05T22:26:54.0320547Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-12-05T22:26:54.0321667Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx.c.o 2025-12-05T22:26:54.0323099Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx512f.c.o 2025-12-05T22:26:54.0324460Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-12-05T22:26:54.0325786Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-sse2.c.o 2025-12-05T22:26:54.0327117Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcos/gen/f32-vcos-avx-rational-5-4-div.c.o 2025-12-05T22:26:54.0328481Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcos/gen/f32-vcos-avx512f-rational-5-4-div.c.o 2025-12-05T22:26:54.0329833Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcos/gen/f32-vcos-fma3-rational-5-4-div.c.o 2025-12-05T22:26:54.0331207Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcos/gen/f32-vcos-scalar-rational-5-4-div.c.o 2025-12-05T22:26:54.0332638Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcos/gen/f32-vcos-sse2-rational-5-4-div.c.o 2025-12-05T22:26:54.0334369Z [ 62%] Linking CXX static library liboptimized_portable_kernels.a 2025-12-05T22:26:54.0336240Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vcos/gen/f32-vcos-sse2fma-rational-5-4-div.c.o 2025-12-05T22:26:54.0338662Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-u32.c.o 2025-12-05T22:26:54.0341012Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-u32.c.o 2025-12-05T22:26:54.0343442Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-u64.c.o 2025-12-05T22:26:54.0345935Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-12-05T22:26:54.0348576Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-u12.c.o 2025-12-05T22:26:54.0351309Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-avx-rational-3-2-div.c.o 2025-12-05T22:26:54.0354108Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-avx512f-rational-3-2-div.c.o 2025-12-05T22:26:55.0830282Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-fma3-rational-3-2-div.c.o 2025-12-05T22:26:55.0832961Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-rational-3-2-div.c.o 2025-12-05T22:26:55.0835483Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-sse2-rational-3-2-div.c.o 2025-12-05T22:26:55.0838061Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-sse2fma-rational-3-2-div.c.o 2025-12-05T22:26:55.0839683Z [ 63%] Built target optimized_portable_kernels 2025-12-05T22:26:55.0841318Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx-rational-12-10-div.c.o 2025-12-05T22:26:55.0842954Z [ 63%] Merging kernel yaml files 2025-12-05T22:26:55.0844535Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx512f-rational-12-10-div.c.o 2025-12-05T22:26:55.0847160Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-fma3-rational-12-10-div.c.o 2025-12-05T22:26:55.0849839Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-12-05T22:26:55.0852464Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-sse2-rational-12-10-div.c.o 2025-12-05T22:26:55.0855001Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-sse2fma-rational-12-10-div.c.o 2025-12-05T22:26:55.0857379Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx.c.o 2025-12-05T22:26:55.0859634Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx512f.c.o 2025-12-05T22:26:55.0862034Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-fma3.c.o 2025-12-05T22:26:55.0864041Z [ 63%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-12-05T22:26:55.0865777Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar.c.o 2025-12-05T22:26:55.0868167Z [ 63%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-sse2.c.o 2025-12-05T22:26:55.0870697Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-sse2fma.c.o 2025-12-05T22:26:55.0873093Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx2-rational-3-3-div.c.o 2025-12-05T22:26:55.0875632Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx512f-rational-3-3-div.c.o 2025-12-05T22:26:55.0878109Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-fma3-rational-3-3-div.c.o 2025-12-05T22:26:55.0880638Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-12-05T22:26:55.0883235Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-sse2-rational-3-3-div.c.o 2025-12-05T22:26:55.0885750Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-sse2fma-rational-3-3-div.c.o 2025-12-05T22:26:55.0888369Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-u16.c.o 2025-12-05T22:26:55.0890648Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-u16.c.o 2025-12-05T22:26:55.0892992Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-12-05T22:26:55.0894442Z [ 65%] Generating code for kernel registration 2025-12-05T22:26:55.0895921Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-u8.c.o 2025-12-05T22:26:55.0898202Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-u8.c.o 2025-12-05T22:26:55.0900473Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-12-05T22:26:55.0902887Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-sse-2x.c.o 2025-12-05T22:26:55.0905185Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx-u16.c.o 2025-12-05T22:26:55.0907319Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-u16.c.o 2025-12-05T22:26:55.0909230Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-12-05T22:26:55.0910530Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-sse2-u8.c.o 2025-12-05T22:26:55.0911879Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-sse41-u8.c.o 2025-12-05T22:26:55.0913260Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx-u16.c.o 2025-12-05T22:26:55.0914524Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-u16.c.o 2025-12-05T22:26:55.0916205Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-12-05T22:26:55.0917850Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse2-u8.c.o 2025-12-05T22:26:55.0920971Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse41-u8.c.o 2025-12-05T22:26:55.0923417Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx-u16.c.o 2025-12-05T22:26:55.0925895Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx512f-u16.c.o 2025-12-05T22:26:55.0928465Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-12-05T22:26:55.0930960Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-sse2-u8.c.o 2025-12-05T22:26:55.0933426Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-sse41-u8.c.o 2025-12-05T22:26:55.0936020Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx-u16.c.o 2025-12-05T22:26:55.0938486Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-u16.c.o 2025-12-05T22:26:55.0941054Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-12-05T22:26:55.0943564Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-sse2-u8.c.o 2025-12-05T22:26:55.0946024Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-sse41-u8.c.o 2025-12-05T22:26:55.0948631Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx-rsqrt.c.o 2025-12-05T22:26:55.0951131Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx-sqrt.c.o 2025-12-05T22:26:55.0953643Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx512f-rsqrt.c.o 2025-12-05T22:26:56.2374441Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx512f-sqrt.c.o 2025-12-05T22:26:56.2376661Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-12-05T22:26:56.2379169Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-sqrt.c.o 2025-12-05T22:26:56.2381540Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-sse2-rsqrt.c.o 2025-12-05T22:26:56.2384101Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-sse2-sqrt.c.o 2025-12-05T22:26:56.2387066Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-u16.c.o 2025-12-05T22:26:56.2389748Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-u16.c.o 2025-12-05T22:26:56.2392825Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u64.c.o 2025-12-05T22:26:56.2395945Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.o 2025-12-05T22:26:56.2398946Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-u8.c.o 2025-12-05T22:26:56.2401921Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-u8.c.o 2025-12-05T22:26:56.2404741Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsin/gen/f32-vsin-avx-rational-5-4-div.c.o 2025-12-05T22:26:56.2407492Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsin/gen/f32-vsin-avx512f-rational-5-4-div.c.o 2025-12-05T22:26:56.2410225Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsin/gen/f32-vsin-fma3-rational-5-4-div.c.o 2025-12-05T22:26:56.2413163Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsin/gen/f32-vsin-scalar-rational-5-4-div.c.o 2025-12-05T22:26:56.2415892Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsin/gen/f32-vsin-sse2-rational-5-4-div.c.o 2025-12-05T22:26:56.2421243Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsin/gen/f32-vsin-sse2fma-rational-5-4-div.c.o 2025-12-05T22:26:56.2423920Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-rsqrt.c.o 2025-12-05T22:26:56.2426302Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-sqrt.c.o 2025-12-05T22:26:56.2428921Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-rsqrt.c.o 2025-12-05T22:26:56.2431407Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt.c.o 2025-12-05T22:26:56.2433879Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-sse2-rsqrt.c.o 2025-12-05T22:26:56.2436352Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-sse2-sqrt.c.o 2025-12-05T22:26:56.2438960Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx-rational-9-8-div.c.o 2025-12-05T22:26:56.2441679Z [ 68%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx512f-rational-9-8-div.c.o 2025-12-05T22:26:56.2444354Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-fma3-rational-9-8-div.c.o 2025-12-05T22:26:56.2447150Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-12-05T22:26:56.2450951Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-sse2fma-rational-9-8-div.c.o 2025-12-05T22:26:56.2453710Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-sse2-rational-9-8-div.c.o 2025-12-05T22:26:56.2456256Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx.c.o 2025-12-05T22:26:56.2458630Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx512f.c.o 2025-12-05T22:26:56.2461113Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-12-05T22:26:56.2463393Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-sse2.c.o 2025-12-05T22:26:56.2465749Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx.c.o 2025-12-05T22:26:56.2468089Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx512f.c.o 2025-12-05T22:26:56.2470573Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-12-05T22:26:56.2472968Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-sse2.c.o 2025-12-05T22:26:56.2475612Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx.c.o 2025-12-05T22:26:56.2478047Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx512f.c.o 2025-12-05T22:26:56.2480505Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-12-05T22:26:56.2482955Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-sse2.c.o 2025-12-05T22:26:56.2485644Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-12-05T22:26:56.2488589Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-12-05T22:26:56.2491621Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-12-05T22:26:56.2494820Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-12-05T22:26:56.2497905Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-12-05T22:26:56.2500833Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x8c8-minmax-avx2.c.o 2025-12-05T22:26:56.2503798Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-12-05T22:26:56.2506806Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-3x8c8-minmax-avx2.c.o 2025-12-05T22:26:56.2510121Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-12-05T22:26:56.2513160Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.o 2025-12-05T22:26:57.2142710Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld128.c.o 2025-12-05T22:26:57.2145875Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-12-05T22:26:57.2149117Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld128.c.o 2025-12-05T22:26:57.2152178Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-12-05T22:26:57.2155248Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld128.c.o 2025-12-05T22:26:57.2158296Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-12-05T22:26:57.2161258Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.o 2025-12-05T22:26:57.2164590Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld128.c.o 2025-12-05T22:26:57.2167688Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-12-05T22:26:57.2170851Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-12-05T22:26:57.2174092Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd-prfm.c.o 2025-12-05T22:26:57.2177344Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-12-05T22:26:57.2180463Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-12-05T22:26:57.2183523Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-12-05T22:26:57.2186469Z [ 71%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-12-05T22:26:57.2189551Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd-prfm.c.o 2025-12-05T22:26:57.2192753Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-12-05T22:26:57.2195836Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-12-05T22:26:57.2199057Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-12-05T22:26:57.2202225Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-12-05T22:26:57.2205407Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-5x4c8-minmax-ssse3-madd-prfm.c.o 2025-12-05T22:26:57.2208683Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-madd-prfm.c.o 2025-12-05T22:26:57.2211946Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-12-05T22:26:57.2215164Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-10x16c8-minmax-avx512vnni-prfm.c.o 2025-12-05T22:26:57.2219533Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-avx512skx-prfm.c.o 2025-12-05T22:26:57.2222661Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-12-05T22:26:57.2225751Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.o 2025-12-05T22:26:57.2227912Z [ 72%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-12-05T22:26:57.2228841Z [ 72%] Built target optimized_native_cpu_ops_lib 2025-12-05T22:26:57.2230669Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-12-05T22:26:57.2233706Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4c8-minmax-sse2-ld64.c.o 2025-12-05T22:26:57.2236796Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4c8-minmax-sse41-ld64.c.o 2025-12-05T22:26:57.2239868Z [ 72%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x64-minmax-asm-amd64-avx512vnni.S.o 2025-12-05T22:26:57.2243039Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-12-05T22:26:57.2245967Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-12-05T22:26:57.2248992Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld64.c.o 2025-12-05T22:26:57.2252110Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld64.c.o 2025-12-05T22:26:57.2255129Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8c8-minmax-avx2.c.o 2025-12-05T22:26:57.2258265Z [ 72%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-5x64-minmax-asm-amd64-avx512vnni.S.o 2025-12-05T22:26:57.2261713Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-12-05T22:26:57.2264990Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-10x16c8-minmax-avx512vnni-prfm.c.o 2025-12-05T22:26:57.2268248Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-avx512skx-prfm.c.o 2025-12-05T22:26:57.2271612Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-12-05T22:26:57.2274778Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.o 2025-12-05T22:26:57.2277802Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.o 2025-12-05T22:26:57.2280881Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4c8-minmax-sse2-ld64.c.o 2025-12-05T22:26:57.2284024Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4c8-minmax-sse41-ld64.c.o 2025-12-05T22:26:58.0378384Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-12-05T22:26:58.0381472Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2025-12-05T22:26:58.0384469Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld64.c.o 2025-12-05T22:26:58.0387455Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld64.c.o 2025-12-05T22:26:58.0390551Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8c8-minmax-avx2.c.o 2025-12-05T22:26:58.0393666Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-12-05T22:26:58.0396830Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-12-05T22:26:58.0399800Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-12-05T22:26:58.0402701Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-12-05T22:26:58.0405680Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:26:58.0408685Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-12-05T22:26:58.0411834Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-12-05T22:26:58.0415187Z [ 74%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-12-05T22:26:58.0419498Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o 2025-12-05T22:26:58.0423210Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-12-05T22:26:58.0426105Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-12-05T22:26:58.0429246Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:26:58.0432305Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-12-05T22:26:58.0435359Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-12-05T22:26:58.0438435Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-12-05T22:26:58.0441152Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-avx2-u16.c.o 2025-12-05T22:26:58.0443886Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-u32.c.o 2025-12-05T22:26:58.0446530Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-u16.c.o 2025-12-05T22:26:58.0449225Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-u32.c.o 2025-12-05T22:26:58.0451899Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-12-05T22:26:58.0454551Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-u32.c.o 2025-12-05T22:26:58.0457189Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-u16.c.o 2025-12-05T22:26:58.0459921Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-12-05T22:26:58.0462737Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x4c8-gemm-gio-scalar.c.o 2025-12-05T22:26:58.0465496Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x4c8-gemm-goi-scalar.c.o 2025-12-05T22:26:58.0468264Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-gio-scalar.c.o 2025-12-05T22:26:58.0471142Z [ 75%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-goi-avx2-madd.c.o 2025-12-05T22:26:58.0473973Z [ 75%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc4w-gemm/gen/qs8-qc4w-gemm-1x16c8-minmax-fp32-asm-amd64-avx512vnni.S.o 2025-12-05T22:26:58.0477211Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc4w-gemm/gen/qs8-qc4w-gemm-1x4c8-minmax-avx-madd-prfm.c.o 2025-12-05T22:26:58.0480230Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc4w-gemm/gen/qs8-qc4w-gemm-1x4c8-minmax-ssse3-madd-prfm.c.o 2025-12-05T22:26:58.0483277Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc4w-gemm/gen/qs8-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-12-05T22:26:58.0486312Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc4w-gemm/gen/qs8-qc4w-gemm-5x4c8-minmax-avx-madd-prfm.c.o 2025-12-05T22:26:58.0489291Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc4w-gemm/gen/qs8-qc4w-gemm-5x4c8-minmax-ssse3-madd-prfm.c.o 2025-12-05T22:26:58.0492329Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc4w-gemm/gen/qs8-qc4w-gemm-7x8c8-minmax-avx2-madd-prfm.c.o 2025-12-05T22:26:58.0495111Z [ 77%] Building ASM object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc4w-gemm/gen/qs8-qc4w-gemm-8x16c8-minmax-fp32-asm-amd64-avx512vnni.S.o 2025-12-05T22:26:58.0497865Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc4w-gemm/qs8-qc4w-gemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:26:58.0500623Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-12-05T22:26:58.0503600Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-12-05T22:26:58.0506406Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-12-05T22:26:58.0509211Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:26:58.0511965Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-12-05T22:26:58.0516596Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-12-05T22:26:58.0519507Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o 2025-12-05T22:26:58.8683225Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-avx-mul16-add16.c.o 2025-12-05T22:26:58.8685647Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-avx2-mul32.c.o 2025-12-05T22:26:58.8687257Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o 2025-12-05T22:26:58.8688854Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:26:58.8690482Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p32c-minmax-fp32-avx512skx-mul32.c.o 2025-12-05T22:26:58.8692303Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse2-mul16.c.o 2025-12-05T22:26:58.8693865Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse41-mul16.c.o 2025-12-05T22:26:58.8695468Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o 2025-12-05T22:26:58.8697092Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-12-05T22:26:58.8698671Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-12-05T22:26:58.8700279Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:26:58.8701904Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-12-05T22:26:58.8703491Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o 2025-12-05T22:26:58.8705166Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o 2025-12-05T22:26:58.8706746Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-12-05T22:26:58.8708402Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512vnni-prfm.c.o 2025-12-05T22:26:58.8709972Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:26:58.8711508Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-12-05T22:26:58.8713021Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-12-05T22:26:58.8714550Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-12-05T22:26:58.8716053Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-12-05T22:26:58.8717537Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-12-05T22:26:58.8720019Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:26:58.8723075Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-12-05T22:26:58.8726118Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-12-05T22:26:58.8729241Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8c8-minmax-fp32-avx2.c.o 2025-12-05T22:26:58.8732280Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-12-05T22:26:58.8735258Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512vnni-prfm.c.o 2025-12-05T22:26:58.8738390Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-12-05T22:26:58.8741482Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-12-05T22:26:58.8744626Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:26:58.8747734Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-12-05T22:26:58.8750896Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-12-05T22:26:58.8754179Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-12-05T22:26:58.8757208Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-12-05T22:26:58.8760232Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-12-05T22:26:58.8763346Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:26:58.8766458Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-12-05T22:26:58.8769530Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-12-05T22:26:58.8772571Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8c8-minmax-fp32-avx2.c.o 2025-12-05T22:26:58.8775610Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-avx512vnni-prfm.c.o 2025-12-05T22:26:58.8778766Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-12-05T22:26:58.8781829Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-goi-scalar.c.o 2025-12-05T22:26:58.8784728Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx2-u64.c.o 2025-12-05T22:26:58.8787588Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx512skx-u64.c.o 2025-12-05T22:26:58.8790693Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-sse41-u64.c.o 2025-12-05T22:26:59.7223144Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-12-05T22:26:59.7225752Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx2-u64-acc2.c.o 2025-12-05T22:26:59.7228306Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx512skx-u128-acc2.c.o 2025-12-05T22:26:59.7231091Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx512vnni-u128-acc2.c.o 2025-12-05T22:26:59.7233521Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-12-05T22:26:59.7235784Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-ssse3-u32-acc2.c.o 2025-12-05T22:26:59.7238073Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-12-05T22:26:59.7240570Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-u16.c.o 2025-12-05T22:26:59.7243195Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-12-05T22:26:59.7246072Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-12-05T22:26:59.7248507Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-12-05T22:26:59.7251038Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-u8.c.o 2025-12-05T22:26:59.7253614Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-u8.c.o 2025-12-05T22:26:59.7256114Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-u8.c.o 2025-12-05T22:26:59.7258745Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.o 2025-12-05T22:26:59.7261443Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-12-05T22:26:59.7264084Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-12-05T22:26:59.7266555Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-12-05T22:26:59.7269194Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-12-05T22:26:59.7271851Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-12-05T22:26:59.7274293Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-u32.c.o 2025-12-05T22:26:59.7276827Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-u32.c.o 2025-12-05T22:26:59.7279120Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-12-05T22:26:59.7281377Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-u32.c.o 2025-12-05T22:26:59.7283632Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-u32.c.o 2025-12-05T22:26:59.7285925Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-ssse3-u32.c.o 2025-12-05T22:26:59.7288122Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-u32.c.o 2025-12-05T22:26:59.7290387Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-u32.c.o 2025-12-05T22:26:59.7292794Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-12-05T22:26:59.7295221Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-u32.c.o 2025-12-05T22:26:59.7297568Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-u32.c.o 2025-12-05T22:26:59.7300151Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-u32.c.o 2025-12-05T22:26:59.7302631Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-12-05T22:26:59.7305238Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-12-05T22:26:59.7307809Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-12-05T22:26:59.7310595Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-12-05T22:26:59.7313202Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-12-05T22:26:59.7315786Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-12-05T22:26:59.7320963Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-12-05T22:26:59.7323512Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-12-05T22:26:59.7326118Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vprelu/gen/qs8-vprelu-avx2-u16.c.o 2025-12-05T22:26:59.7328354Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vpreluc/gen/qs8-vpreluc-avx2-u16.c.o 2025-12-05T22:26:59.7330573Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vprelu/gen/qs8-vprelu-scalar-u8.c.o 2025-12-05T22:26:59.7333123Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vpreluc/gen/qs8-vpreluc-scalar-u8.c.o 2025-12-05T22:26:59.7335321Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vrpreluc/gen/qs8-vrpreluc-avx2-u16.c.o 2025-12-05T22:26:59.7337600Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qs8-vrpreluc/gen/qs8-vrpreluc-scalar-u8.c.o 2025-12-05T22:26:59.7340096Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o 2025-12-05T22:26:59.7342773Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-12-05T22:26:59.7345421Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-12-05T22:26:59.7348219Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:26:59.7350995Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-12-05T22:26:59.7356339Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-12-05T22:27:00.6327376Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o 2025-12-05T22:27:00.6330225Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o 2025-12-05T22:27:00.6332759Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-12-05T22:27:00.6335276Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-12-05T22:27:00.6338021Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:27:00.6341147Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-12-05T22:27:00.6343932Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o 2025-12-05T22:27:00.6346796Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o 2025-12-05T22:27:00.6349491Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-u32.c.o 2025-12-05T22:27:00.6351927Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-u16.c.o 2025-12-05T22:27:00.6354535Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-u32.c.o 2025-12-05T22:27:00.6357132Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-12-05T22:27:00.6359799Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-u32.c.o 2025-12-05T22:27:00.6362446Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-u16.c.o 2025-12-05T22:27:00.6364917Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-12-05T22:27:00.6367654Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:27:00.6370464Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-12-05T22:27:00.6373119Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-12-05T22:27:00.6375867Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-12-05T22:27:00.6378554Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-12-05T22:27:00.6381168Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-12-05T22:27:00.6383964Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:27:00.6386823Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-12-05T22:27:00.6388419Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-12-05T22:27:00.6389817Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x8c8-minmax-fp32-avx2.c.o 2025-12-05T22:27:00.6391254Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-12-05T22:27:00.6392753Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-12-05T22:27:00.6394237Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:27:00.6395695Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-12-05T22:27:00.6397131Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-12-05T22:27:00.6398579Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-12-05T22:27:00.6400370Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-12-05T22:27:00.6401993Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-12-05T22:27:00.6403546Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-12-05T22:27:00.6405214Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-12-05T22:27:00.6407238Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-12-05T22:27:00.6408853Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x8c8-minmax-fp32-avx2.c.o 2025-12-05T22:27:00.6410529Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-12-05T22:27:00.6411961Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-ssse3-u64.c.o 2025-12-05T22:27:00.6413256Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-12-05T22:27:00.6414520Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-avx2-u64-acc2.c.o 2025-12-05T22:27:00.6415802Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-12-05T22:27:00.6417079Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-sse2-u32-acc2.c.o 2025-12-05T22:27:00.6418728Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-12-05T22:27:00.6420169Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx2-mul32-ld64-u16.c.o 2025-12-05T22:27:00.6421637Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-12-05T22:27:00.6423039Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-12-05T22:27:00.6424371Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-12-05T22:27:00.6425726Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-u8.c.o 2025-12-05T22:27:00.6427148Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-u8.c.o 2025-12-05T22:27:01.4108652Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-u8.c.o 2025-12-05T22:27:01.4111544Z [ 87%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.o 2025-12-05T22:27:01.4114458Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-12-05T22:27:01.4117272Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-12-05T22:27:01.4120127Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-12-05T22:27:01.4122871Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-12-05T22:27:01.4125980Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-12-05T22:27:01.4128605Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-u32.c.o 2025-12-05T22:27:01.4131051Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-u32.c.o 2025-12-05T22:27:01.4133492Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-12-05T22:27:01.4136230Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-u32.c.o 2025-12-05T22:27:01.4138780Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-u32.c.o 2025-12-05T22:27:01.4141290Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-u32.c.o 2025-12-05T22:27:01.4143766Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-u32.c.o 2025-12-05T22:27:01.4146379Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-u32.c.o 2025-12-05T22:27:01.4149114Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-12-05T22:27:01.4152060Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-u32.c.o 2025-12-05T22:27:01.4154677Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-u32.c.o 2025-12-05T22:27:01.4157233Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-u32.c.o 2025-12-05T22:27:01.4159994Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-12-05T22:27:01.4162848Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-12-05T22:27:01.4165698Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-12-05T22:27:01.4168684Z [ 89%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-12-05T22:27:01.4171667Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-12-05T22:27:01.4174599Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-12-05T22:27:01.4177532Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-12-05T22:27:01.4180550Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-12-05T22:27:01.4183389Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vprelu/gen/qu8-vprelu-avx2-u16.c.o 2025-12-05T22:27:01.4186156Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vprelu/gen/qu8-vprelu-scalar-u8.c.o 2025-12-05T22:27:01.4188883Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vpreluc/gen/qu8-vpreluc-avx2-u16.c.o 2025-12-05T22:27:01.4191581Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vpreluc/gen/qu8-vpreluc-scalar-u8.c.o 2025-12-05T22:27:01.4194139Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vrpreluc/gen/qu8-vrpreluc-avx2-u16.c.o 2025-12-05T22:27:01.4196773Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/qu8-vrpreluc/gen/qu8-vrpreluc-scalar-u8.c.o 2025-12-05T22:27:01.4199481Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-u1.c.o 2025-12-05T22:27:01.4202106Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-u8.c.o 2025-12-05T22:27:01.4204812Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-u16.c.o 2025-12-05T22:27:01.4207600Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-maxpool/gen/s8-maxpool-9p-minmax-scalar-u1.c.o 2025-12-05T22:27:01.4210440Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-maxpool/gen/s8-maxpool-9p-minmax-sse41-u16.c.o 2025-12-05T22:27:01.4214021Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-rdminmax/gen/s8-rdmax-2p2x-scalar-c2.c.o 2025-12-05T22:27:01.4216767Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-rdminmax/gen/s8-rdmax-2p2x-sse41-c32.c.o 2025-12-05T22:27:01.4222603Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-rdminmax/gen/s8-rdmin-2p2x-scalar-c2.c.o 2025-12-05T22:27:01.4225252Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-rdminmax/gen/s8-rdmin-2p2x-sse41-c32.c.o 2025-12-05T22:27:01.4227591Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-rminmax/gen/s8-rmax-scalar-u2-acc2.c.o 2025-12-05T22:27:01.4230117Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-rminmax/gen/s8-rmax-sse41-u32-acc2.c.o 2025-12-05T22:27:01.4232727Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-rminmax/gen/s8-rmin-scalar-u2-acc2.c.o 2025-12-05T22:27:01.4235324Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-rminmax/gen/s8-rmin-sse41-u32-acc2.c.o 2025-12-05T22:27:01.4237953Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-rminmax/gen/s8-rminmax-scalar-u2-acc2.c.o 2025-12-05T22:27:01.4240644Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-rminmax/gen/s8-rminmax-sse41-u32-acc2.c.o 2025-12-05T22:27:01.4243203Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx2-u128.c.o 2025-12-05T22:27:01.4245696Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx512skx-u256.c.o 2025-12-05T22:27:01.4248208Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-12-05T22:27:01.4250899Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse2-u64.c.o 2025-12-05T22:27:01.4253345Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse41-u64.c.o 2025-12-05T22:27:02.2399558Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-u1.c.o 2025-12-05T22:27:02.2402195Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-u8.c.o 2025-12-05T22:27:02.2404838Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse41-u16.c.o 2025-12-05T22:27:02.2407398Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-12-05T22:27:02.2410233Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-maxpool/gen/u8-maxpool-9p-minmax-scalar-u1.c.o 2025-12-05T22:27:02.2412993Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-maxpool/gen/u8-maxpool-9p-minmax-sse2-u16.c.o 2025-12-05T22:27:02.2415690Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-rdminmax/gen/u8-rdmax-2p2x-scalar-c2.c.o 2025-12-05T22:27:02.2421360Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-rdminmax/gen/u8-rdmin-2p2x-scalar-c2.c.o 2025-12-05T22:27:02.2424015Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-rdminmax/gen/u8-rdmax-2p2x-sse2-c32.c.o 2025-12-05T22:27:02.2426665Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-rdminmax/gen/u8-rdmin-2p2x-sse2-c32.c.o 2025-12-05T22:27:02.2429339Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-rminmax/gen/u8-rmax-scalar-u2-acc2.c.o 2025-12-05T22:27:02.2431943Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-rminmax/gen/u8-rmax-sse2-u32-acc2.c.o 2025-12-05T22:27:02.2434538Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-rminmax/gen/u8-rmin-scalar-u2-acc2.c.o 2025-12-05T22:27:02.2437134Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-rminmax/gen/u8-rmin-sse2-u32-acc2.c.o 2025-12-05T22:27:02.2439749Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-rminmax/gen/u8-rminmax-scalar-u2-acc2.c.o 2025-12-05T22:27:02.2442432Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-rminmax/gen/u8-rminmax-sse2-u32-acc2.c.o 2025-12-05T22:27:02.2444975Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx2-u128.c.o 2025-12-05T22:27:02.2447482Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx512skx-u256.c.o 2025-12-05T22:27:02.2449969Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-12-05T22:27:02.2452348Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/u8-vclamp/u8-vclamp-sse2-u64.c.o 2025-12-05T22:27:02.2454869Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-avx2-u16-prfm.c.o 2025-12-05T22:27:02.2458057Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-switch-avx2.c.o 2025-12-05T22:27:02.2460896Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-12-05T22:27:02.2463629Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-sse2.c.o 2025-12-05T22:27:02.2466545Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x16-x32-packw/gen/x16-x32-packw-x32c2-gemm-gio-scalar.c.o 2025-12-05T22:27:02.2469502Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x16-x32-packw/gen/x16-x32-packw-x32c2-gemm-goi-scalar.c.o 2025-12-05T22:27:02.2472184Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-12-05T22:27:02.2474728Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-ssse3.c.o 2025-12-05T22:27:02.2477382Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16-gemm-gio-avx-u8.c.o 2025-12-05T22:27:02.2480082Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16-gemm-gio-avx512f-u8.c.o 2025-12-05T22:27:02.2483034Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-avx-u4.c.o 2025-12-05T22:27:02.2485666Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-avx512f-u4-prfm.c.o 2025-12-05T22:27:02.2488495Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16s4-gemm-goi-avx-u4.c.o 2025-12-05T22:27:02.2491227Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-gio-scalar.c.o 2025-12-05T22:27:02.2494029Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-float-u4.c.o 2025-12-05T22:27:02.2496878Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2c4-gemm-goi-sse2-u4.c.o 2025-12-05T22:27:02.2499617Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x32-gemm-gio-avx512f-u8.c.o 2025-12-05T22:27:02.2502279Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x32-gemm-goi-avx512f-u4-prfm.c.o 2025-12-05T22:27:02.2505161Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x32-gemm-goi-scalar-int-u2.c.o 2025-12-05T22:27:02.2507953Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x4-gemm-gio-scalar.c.o 2025-12-05T22:27:02.2510873Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-float-u4.c.o 2025-12-05T22:27:02.2513775Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x64-gemm-goi-scalar-int-u2.c.o 2025-12-05T22:27:02.2516717Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-gio-avx-u8.c.o 2025-12-05T22:27:02.2519526Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-avx-u4.c.o 2025-12-05T22:27:02.2522044Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-sse2-u4.c.o 2025-12-05T22:27:02.2524624Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-12-05T22:27:02.2527347Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-multi-avx.c.o 2025-12-05T22:27:02.2529984Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-sse.c.o 2025-12-05T22:27:02.2532412Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-12-05T22:27:02.2534821Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x32-unpool/x32-unpool-sse2.c.o 2025-12-05T22:27:02.2537377Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-sse2.c.o 2025-12-05T22:27:02.2540373Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-12-05T22:27:03.6804735Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-multi-avx.c.o 2025-12-05T22:27:03.6808085Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx-u64.c.o 2025-12-05T22:27:03.6810321Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx2-u128.c.o 2025-12-05T22:27:03.6812650Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-u64.c.o 2025-12-05T22:27:03.6815148Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-u128.c.o 2025-12-05T22:27:03.6817506Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-12-05T22:27:03.6820495Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-12-05T22:27:03.6822989Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-12-05T22:27:03.6825567Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-12-05T22:27:03.6828084Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-12-05T22:27:03.6830582Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-12-05T22:27:03.6833181Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-sse2.c.o 2025-12-05T22:27:03.6836059Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-12-05T22:27:03.6838848Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-switch-avx2.c.o 2025-12-05T22:27:03.6841478Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-12-05T22:27:03.6843822Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-12-05T22:27:03.6846128Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/xx-fill/xx-fill-sse2-u64.c.o 2025-12-05T22:27:03.6848309Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/xx-pad/xx-pad-p16-sse2-u16.c.o 2025-12-05T22:27:03.6850450Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-12-05T22:27:03.6852914Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-12-05T22:27:03.6855302Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-12-05T22:27:03.6857365Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-12-05T22:27:03.6859741Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-12-05T22:27:03.6861968Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-12-05T22:27:03.6864228Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-12-05T22:27:03.6866529Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-12-05T22:27:03.6868874Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-12-05T22:27:03.6871246Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-12-05T22:27:03.6873471Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/xnnpack-microkernels-prod.dir/src/tables/vlog.c.o 2025-12-05T22:27:03.6874884Z [ 98%] Linking C static library libxnnpack-microkernels-prod.a 2025-12-05T22:27:03.6875688Z [ 98%] Built target xnnpack-microkernels-prod 2025-12-05T22:27:03.6876322Z [ 98%] Generating build_identifier.c 2025-12-05T22:27:03.6877520Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-12-05T22:27:03.6879308Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-12-05T22:27:03.6881257Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-12-05T22:27:03.6883211Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-12-05T22:27:03.6885107Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-12-05T22:27:03.6887129Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-12-05T22:27:03.6889039Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-12-05T22:27:03.6891024Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-12-05T22:27:03.6892873Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-12-05T22:27:03.6894693Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-12-05T22:27:03.6896505Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-12-05T22:27:03.6898323Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-12-05T22:27:03.6900163Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-12-05T22:27:03.6902172Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-12-05T22:27:03.6904095Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-12-05T22:27:03.6905794Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-12-05T22:27:03.6907537Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-12-05T22:27:03.6909477Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-12-05T22:27:03.6911533Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-12-05T22:27:03.6913330Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-12-05T22:27:03.6915174Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-12-05T22:27:03.6916876Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-12-05T22:27:03.6920895Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-12-05T22:27:03.6922447Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-12-05T22:27:03.6923302Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-12-05T22:27:03.6924143Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-12-05T22:27:03.6924767Z [100%] Linking CXX static library libXNNPACK.a 2025-12-05T22:27:03.6925112Z [100%] Built target XNNPACK 2025-12-05T22:27:03.6925659Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-12-05T22:27:03.6926490Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-12-05T22:27:03.6927310Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-12-05T22:27:03.6928150Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-12-05T22:27:03.6929013Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-12-05T22:27:13.1443904Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWorkspaceManager.cpp.o 2025-12-05T22:27:13.1445964Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-12-05T22:27:13.1447306Z [100%] Linking CXX static library libxnnpack_backend.a 2025-12-05T22:27:13.1448006Z [100%] Built target xnnpack_backend 2025-12-05T22:27:13.1449108Z [100%] Building CXX object CMakeFiles/portable_lib.dir/extension/pybindings/pybindings.cpp.o 2025-12-05T22:27:13.1450779Z [100%] Linking CXX shared library _portable_lib.cpython-310-x86_64-linux-gnu.so 2025-12-05T22:27:13.1451687Z [100%] Built target portable_lib 2025-12-05T22:27:13.1452288Z [ 0%] Built target flatbuffers_ep 2025-12-05T22:27:13.1452872Z [ 0%] Built target common_schema 2025-12-05T22:27:13.1453459Z [ 0%] Built target program_schema 2025-12-05T22:27:13.1454043Z [100%] Built target executorch_core 2025-12-05T22:27:13.1454630Z [100%] Built target executorch 2025-12-05T22:27:13.1455167Z [100%] Built target bundled_program 2025-12-05T22:27:13.1456280Z [100%] Building CXX object codegen/tools/CMakeFiles/selective_build.dir/selective_build.cpp.o 2025-12-05T22:27:13.1457688Z [100%] Linking CXX shared library selective_build.cpython-310-x86_64-linux-gnu.so 2025-12-05T22:27:13.1458629Z [100%] Built target selective_build 2025-12-05T22:27:13.1459207Z [ 0%] Built target flatbuffers_ep 2025-12-05T22:27:13.1460755Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/spinlock_wait.dir/internal/spinlock_wait.cc.o 2025-12-05T22:27:13.1463161Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/log_severity.dir/log_severity.cc.o 2025-12-05T22:27:13.1465477Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/strerror.dir/internal/strerror.cc.o 2025-12-05T22:27:13.1468125Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/utf8_for_code_point.dir/internal/utf8_for_code_point.cc.o 2025-12-05T22:27:13.1471310Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_fixed.cc.o 2025-12-05T22:27:13.1473637Z [ 0%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_auto_possess.c.o 2025-12-05T22:27:13.1475814Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/numeric/CMakeFiles/int128.dir/int128.cc.o 2025-12-05T22:27:13.1477336Z [ 0%] Linking CXX static library libabsl_utf8_for_code_point.a 2025-12-05T22:27:13.1478163Z [ 0%] Built target utf8_for_code_point 2025-12-05T22:27:13.1479913Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/profiling/CMakeFiles/exponential_biased.dir/internal/exponential_biased.cc.o 2025-12-05T22:27:13.1482417Z [ 0%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/pcre2_chartables.c.o 2025-12-05T22:27:13.1483878Z [ 0%] Linking CXX static library libabsl_spinlock_wait.a 2025-12-05T22:27:13.1484713Z [ 0%] Linking CXX static library libabsl_log_severity.a 2025-12-05T22:27:13.1485455Z [ 0%] Built target spinlock_wait 2025-12-05T22:27:13.1486651Z [ 0%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_chkdint.c.o 2025-12-05T22:27:13.1488007Z [ 0%] Built target log_severity 2025-12-05T22:27:13.1489331Z [ 0%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_compile.c.o 2025-12-05T22:27:13.1490719Z [ 0%] Linking CXX static library libabsl_strerror.a 2025-12-05T22:27:13.1492474Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_format.cc.o 2025-12-05T22:27:13.1494065Z [ 0%] Built target strerror 2025-12-05T22:27:13.1495620Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_if.cc.o 2025-12-05T22:27:13.1497327Z [ 0%] Linking CXX static library libabsl_int128.a 2025-12-05T22:27:13.1498789Z [ 0%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_compile_cgroup.c.o 2025-12-05T22:27:13.1500264Z [ 0%] Built target int128 2025-12-05T22:27:13.1502008Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/civil_time.dir/internal/cctz/src/civil_time_detail.cc.o 2025-12-05T22:27:13.1504528Z [ 0%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_compile_class.c.o 2025-12-05T22:27:13.1506567Z [ 0%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_config.c.o 2025-12-05T22:27:13.1508080Z [ 0%] Linking CXX static library libabsl_exponential_biased.a 2025-12-05T22:27:13.1509628Z [ 0%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_context.c.o 2025-12-05T22:27:13.1511006Z [ 0%] Built target exponential_biased 2025-12-05T22:27:13.1512495Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/leak_check.dir/leak_check.cc.o 2025-12-05T22:27:13.1514625Z [ 0%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_convert.c.o 2025-12-05T22:27:13.1517013Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_impl.cc.o 2025-12-05T22:27:13.1523196Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_commandlineflag_internal.dir/internal/commandlineflag.cc.o 2025-12-05T22:27:13.1525125Z [ 0%] Linking CXX static library libabsl_civil_time.a 2025-12-05T22:27:13.1525832Z [ 0%] Built target civil_time 2025-12-05T22:27:13.1527672Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_nullguard.dir/internal/nullguard.cc.o 2025-12-05T22:27:13.1530091Z [ 0%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_dfa_match.c.o 2025-12-05T22:27:13.1532332Z [ 0%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/arena.cc.o 2025-12-05T22:27:13.1534074Z [ 0%] Linking CXX static library libabsl_leak_check.a 2025-12-05T22:27:13.1535069Z [ 0%] Linking CXX static library libabsl_flags_commandlineflag_internal.a 2025-12-05T22:27:13.1536606Z [ 0%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_error.c.o 2025-12-05T22:27:13.1537868Z [ 0%] Built target leak_check 2025-12-05T22:27:13.1538507Z [ 0%] Built target flags_commandlineflag_internal 2025-12-05T22:27:13.1540274Z [ 0%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/arenastring.cc.o 2025-12-05T22:27:13.1542889Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_info.cc.o 2025-12-05T22:27:13.1545601Z [ 0%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/bytestream.cc.o 2025-12-05T22:27:13.1547414Z [ 0%] Linking CXX static library libabsl_log_internal_nullguard.a 2025-12-05T22:27:13.1548923Z [ 0%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_extuni.c.o 2025-12-05T22:27:13.1551257Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_libc.cc.o 2025-12-05T22:27:13.1552927Z [ 0%] Built target log_internal_nullguard 2025-12-05T22:27:13.1553566Z [ 0%] Built target flatcc_ep 2025-12-05T22:27:13.1555108Z [ 0%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_lookup.cc.o 2025-12-05T22:27:13.1557646Z [ 0%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/coded_stream.cc.o 2025-12-05T22:27:13.1559953Z [ 1%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_find_bracket.c.o 2025-12-05T22:27:13.1562519Z [ 1%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_posix.cc.o 2025-12-05T22:27:13.1565187Z [ 1%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/zone_info_source.cc.o 2025-12-05T22:27:13.1567719Z [ 1%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_jit_compile.c.o 2025-12-05T22:27:13.1570033Z [ 1%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/common.cc.o 2025-12-05T22:27:13.1571609Z [ 2%] Built target cpuinfo 2025-12-05T22:27:13.1572189Z [ 3%] Built target pthreadpool 2025-12-05T22:27:13.1572802Z [ 4%] Built target xnnpack_schema 2025-12-05T22:27:13.1573396Z [ 6%] Built target eigen_blas 2025-12-05T22:27:13.1574716Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_maketables.c.o 2025-12-05T22:27:13.1587886Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_match.c.o 2025-12-05T22:27:13.1589448Z [ 6%] Built target xnnpack-sanitizers 2025-12-05T22:27:13.1590830Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_match_data.c.o 2025-12-05T22:27:13.1593361Z [ 6%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/extension_set.cc.o 2025-12-05T22:27:13.1595857Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_match_next.c.o 2025-12-05T22:27:13.1597399Z [ 6%] Linking CXX static library libabsl_time_zone.a 2025-12-05T22:27:14.3241005Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_newline.c.o 2025-12-05T22:27:14.3242272Z [ 6%] Built target time_zone 2025-12-05T22:27:14.3243456Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_ord2utf.c.o 2025-12-05T22:27:14.3244558Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_pattern_info.c.o 2025-12-05T22:27:14.3245383Z [ 6%] Built target xnnpack-logging 2025-12-05T22:27:14.3246667Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_script_run.c.o 2025-12-05T22:27:14.3247867Z [ 6%] Built target xnnpack-indirection 2025-12-05T22:27:14.3248484Z [ 6%] Built target xnnpack-microparams-init 2025-12-05T22:27:14.3250043Z [ 6%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/generated_enum_util.cc.o 2025-12-05T22:27:14.3251610Z [ 6%] Built target xnnpack-normalization 2025-12-05T22:27:14.3253137Z [ 6%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/generated_message_table_driven_lite.cc.o 2025-12-05T22:27:14.3254440Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_serialize.c.o 2025-12-05T22:27:14.3255482Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_string_utils.c.o 2025-12-05T22:27:14.3256511Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_study.c.o 2025-12-05T22:27:14.3257672Z [ 6%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/generated_message_util.cc.o 2025-12-05T22:27:14.3259248Z [ 6%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/implicit_weak_message.cc.o 2025-12-05T22:27:14.3260551Z [ 6%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/int128.cc.o 2025-12-05T22:27:14.3261676Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_substitute.c.o 2025-12-05T22:27:14.3263226Z [ 6%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/io_win32.cc.o 2025-12-05T22:27:14.3265199Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_substring.c.o 2025-12-05T22:27:14.3267062Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_tables.c.o 2025-12-05T22:27:14.3268938Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_ucd.c.o 2025-12-05T22:27:14.3270116Z [ 6%] Built target xnnpack-pack-lh 2025-12-05T22:27:14.3271594Z [ 6%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/message_lite.cc.o 2025-12-05T22:27:14.3274018Z [ 6%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/parse_context.cc.o 2025-12-05T22:27:14.3275518Z [ 6%] Built target xnnpack-packing 2025-12-05T22:27:14.3276749Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_valid_utf.c.o 2025-12-05T22:27:14.3278300Z [ 6%] Built target xnnpack-allocator 2025-12-05T22:27:14.3278877Z [ 6%] Built target xnnpack-cache 2025-12-05T22:27:14.3280025Z [ 6%] Building C object extension/llm/tokenizers/third-party/pcre2/CMakeFiles/pcre2-8-static.dir/src/pcre2_xclass.c.o 2025-12-05T22:27:14.3281248Z [ 6%] Built target xnnpack-datatype 2025-12-05T22:27:14.3281813Z [ 6%] Built target xnnpack-memory 2025-12-05T22:27:14.3282349Z [ 6%] Built target xnnpack-mutex 2025-12-05T22:27:14.3282915Z [ 6%] Built target xnnpack-reference-ukernels 2025-12-05T22:27:14.3284412Z [ 7%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/repeated_field.cc.o 2025-12-05T22:27:14.3285904Z [ 7%] Built target xnnpack-operator-utils 2025-12-05T22:27:14.3286475Z [ 7%] Built target xnnpack-operator-run 2025-12-05T22:27:14.3287002Z [ 7%] Built target common_schema 2025-12-05T22:27:14.3287553Z [ 7%] Built target scalar_type_schema 2025-12-05T22:27:14.3288881Z [ 7%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/status.cc.o 2025-12-05T22:27:14.3291053Z [ 7%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/raw_logging_internal.dir/internal/raw_logging.cc.o 2025-12-05T22:27:14.3293563Z [ 7%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/decode_rust_punycode.dir/internal/decode_rust_punycode.cc.o 2025-12-05T22:27:14.3295253Z [ 7%] Linking C static library libpcre2-8.a 2025-12-05T22:27:14.3295865Z [ 7%] Built target pcre2-8-static 2025-12-05T22:27:14.3296394Z [ 8%] Built target flatccrt 2025-12-05T22:27:14.3297785Z [ 8%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/statusor.cc.o 2025-12-05T22:27:14.3300169Z [ 8%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/stringpiece.cc.o 2025-12-05T22:27:14.3301815Z [ 8%] Linking CXX static library libabsl_raw_logging_internal.a 2025-12-05T22:27:14.3302563Z [ 8%] Built target raw_logging_internal 2025-12-05T22:27:14.3304144Z [ 8%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/stringprintf.cc.o 2025-12-05T22:27:14.3305624Z [ 8%] Built target xnnpack-hardware-config 2025-12-05T22:27:14.3306465Z [ 8%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/structurally_valid.cc.o 2025-12-05T22:27:14.3307304Z [ 8%] Built target program_schema 2025-12-05T22:27:14.3307606Z [ 8%] Built target flat_tensor_schema 2025-12-05T22:27:14.3308003Z [ 8%] Linking CXX static library libabsl_decode_rust_punycode.a 2025-12-05T22:27:14.3308755Z [ 8%] Building CXX object extension/llm/tokenizers/CMakeFiles/regex_lookahead.dir/src/pcre2_regex.cpp.o 2025-12-05T22:27:14.3309357Z [ 8%] Built target decode_rust_punycode 2025-12-05T22:27:14.3309967Z [ 8%] Building CXX object extension/llm/tokenizers/CMakeFiles/regex_lookahead.dir/src/regex_lookahead.cpp.o 2025-12-05T22:27:14.3310821Z [ 9%] Building CXX object extension/llm/tokenizers/CMakeFiles/regex_lookahead.dir/src/std_regex.cpp.o 2025-12-05T22:27:14.3311865Z [ 9%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/strutil.cc.o 2025-12-05T22:27:14.3313089Z [ 9%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/time.cc.o 2025-12-05T22:27:14.3314233Z [ 9%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/cycleclock.cc.o 2025-12-05T22:27:14.3315415Z [ 10%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/throw_delegate.dir/internal/throw_delegate.cc.o 2025-12-05T22:27:14.3316821Z [ 10%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/debugging_internal.dir/internal/address_is_readable.cc.o 2025-12-05T22:27:14.3317738Z [ 10%] Linking CXX static library libregex_lookahead.a 2025-12-05T22:27:14.3319021Z [ 10%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/spinlock.cc.o 2025-12-05T22:27:14.3320909Z [ 10%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/wire_format_lite.cc.o 2025-12-05T22:27:14.3322139Z [ 10%] Built target regex_lookahead 2025-12-05T22:27:14.3323241Z [ 10%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/zero_copy_stream.cc.o 2025-12-05T22:27:14.3324598Z [ 10%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/zero_copy_stream_impl.cc.o 2025-12-05T22:27:14.3325516Z [ 10%] Linking CXX static library libabsl_throw_delegate.a 2025-12-05T22:27:14.3325884Z [ 10%] Built target throw_delegate 2025-12-05T22:27:14.3326698Z [ 10%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/debugging_internal.dir/internal/elf_mem_image.cc.o 2025-12-05T22:27:14.3328066Z [ 10%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/demangle_rust.dir/internal/demangle_rust.cc.o 2025-12-05T22:27:14.3329278Z [ 10%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/sysinfo.cc.o 2025-12-05T22:27:14.3331711Z [ 10%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/zero_copy_stream_impl_lite.cc.o 2025-12-05T22:27:14.3333220Z [ 62%] Built target xnnpack-microkernels-prod 2025-12-05T22:27:14.3334036Z [ 62%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/builtin_pb/sentencepiece.pb.cc.o 2025-12-05T22:27:14.3336873Z [ 62%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/builtin_pb/sentencepiece_model.pb.cc.o 2025-12-05T22:27:14.3339178Z [ 62%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/bpe_model.cc.o 2025-12-05T22:27:15.6471959Z [ 62%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/debugging_internal.dir/internal/vdso_support.cc.o 2025-12-05T22:27:15.6473788Z [ 62%] Linking CXX static library libabsl_demangle_rust.a 2025-12-05T22:27:15.6475481Z [ 63%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/thread_identity.cc.o 2025-12-05T22:27:15.6476935Z [ 63%] Built target demangle_rust 2025-12-05T22:27:15.6478435Z [ 63%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/base.dir/internal/unscaledcycleclock.cc.o 2025-12-05T22:27:15.6480364Z [ 63%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/char_model.cc.o 2025-12-05T22:27:15.6481784Z [ 63%] Linking CXX static library libabsl_debugging_internal.a 2025-12-05T22:27:15.6483163Z [ 63%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/error.cc.o 2025-12-05T22:27:15.6484390Z [ 63%] Built target debugging_internal 2025-12-05T22:27:15.6485661Z [ 63%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/filesystem.cc.o 2025-12-05T22:27:15.6487860Z [ 63%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/types/CMakeFiles/bad_variant_access.dir/bad_variant_access.cc.o 2025-12-05T22:27:15.6490090Z [ 63%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/model_factory.cc.o 2025-12-05T22:27:15.6491749Z [ 63%] Linking CXX static library libabsl_base.a 2025-12-05T22:27:15.6493118Z [ 63%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/model_interface.cc.o 2025-12-05T22:27:15.6494446Z [ 63%] Built target base 2025-12-05T22:27:15.6495889Z [ 63%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/types/CMakeFiles/bad_optional_access.dir/bad_optional_access.cc.o 2025-12-05T22:27:15.6497612Z [ 63%] Linking CXX static library libabsl_bad_variant_access.a 2025-12-05T22:27:15.6498357Z [ 63%] Built target bad_variant_access 2025-12-05T22:27:15.6499953Z [ 63%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_functions.dir/internal/cordz_functions.cc.o 2025-12-05T22:27:15.6502230Z [ 63%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/normalizer.cc.o 2025-12-05T22:27:15.6504341Z [ 64%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/sentencepiece_processor.cc.o 2025-12-05T22:27:15.6506471Z [ 64%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/unigram_model.cc.o 2025-12-05T22:27:15.6507927Z [ 64%] Linking CXX static library libabsl_bad_optional_access.a 2025-12-05T22:27:15.6508809Z [ 64%] Built target bad_optional_access 2025-12-05T22:27:15.6509983Z [ 64%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/util.cc.o 2025-12-05T22:27:15.6511854Z [ 64%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/word_model.cc.o 2025-12-05T22:27:15.6513239Z [ 64%] Linking CXX static library libabsl_cordz_functions.a 2025-12-05T22:27:15.6514824Z [ 64%] Building CXX object extension/llm/tokenizers/sp-build/src/CMakeFiles/sentencepiece-static.dir/__/third_party/absl/flags/flag.cc.o 2025-12-05T22:27:15.6516360Z [ 64%] Built target cordz_functions 2025-12-05T22:27:15.6517936Z [ 64%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_conditions.dir/internal/conditions.cc.o 2025-12-05T22:27:15.6520500Z [ 64%] Built target xnnpack-microkernel-utils 2025-12-05T22:27:15.6521349Z [ 64%] Linking CXX static library libabsl_log_internal_conditions.a 2025-12-05T22:27:15.6523273Z [ 64%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/malloc_internal.dir/internal/low_level_alloc.cc.o 2025-12-05T22:27:15.6524867Z [ 67%] Built target executorch_core 2025-12-05T22:27:15.6525498Z [ 67%] Built target log_internal_conditions 2025-12-05T22:27:15.6527000Z [ 67%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/base/CMakeFiles/tracing_internal.dir/internal/tracing.cc.o 2025-12-05T22:27:15.6529338Z [ 67%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/stacktrace.dir/stacktrace.cc.o 2025-12-05T22:27:15.6531804Z [ 67%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings_internal.dir/internal/ostringstream.cc.o 2025-12-05T22:27:15.6534365Z [ 67%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/demangle_internal.dir/internal/demangle.cc.o 2025-12-05T22:27:15.6536862Z [ 67%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings_internal.dir/internal/utf8.cc.o 2025-12-05T22:27:15.6538486Z [ 67%] Linking CXX static library libabsl_tracing_internal.a 2025-12-05T22:27:15.6539236Z [ 67%] Built target tracing_internal 2025-12-05T22:27:15.6540624Z [ 67%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/string_view.dir/string_view.cc.o 2025-12-05T22:27:15.6542139Z [ 67%] Linking CXX static library libsentencepiece.a 2025-12-05T22:27:15.6542909Z [ 67%] Linking CXX static library libabsl_stacktrace.a 2025-12-05T22:27:15.6543757Z [ 67%] Built target stacktrace 2025-12-05T22:27:15.6545202Z [ 67%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_cpu_detect.dir/internal/cpu_detect.cc.o 2025-12-05T22:27:15.6547642Z [ 67%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings_internal.dir/internal/escaping.cc.o 2025-12-05T22:27:15.6549426Z [ 67%] Linking CXX static library libabsl_demangle_internal.a 2025-12-05T22:27:15.6550293Z [ 67%] Linking CXX static library libabsl_malloc_internal.a 2025-12-05T22:27:15.6551034Z [ 67%] Built target demangle_internal 2025-12-05T22:27:15.6552337Z [ 67%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/hash/CMakeFiles/city.dir/internal/city.cc.o 2025-12-05T22:27:15.6553670Z [ 67%] Built target malloc_internal 2025-12-05T22:27:15.6554276Z [ 67%] Built target sentencepiece-static 2025-12-05T22:27:15.6555814Z [ 67%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/hash/CMakeFiles/low_level_hash.dir/internal/low_level_hash.cc.o 2025-12-05T22:27:15.6557389Z [ 67%] Built target extension_threadpool 2025-12-05T22:27:15.6557985Z [ 67%] Built target executorch 2025-12-05T22:27:15.6558545Z [ 67%] Built target extension_tensor 2025-12-05T22:27:15.6559133Z [ 68%] Built target xnnpack-operators 2025-12-05T22:27:15.6559771Z [ 68%] Built target extension_data_loader 2025-12-05T22:27:15.6560485Z [ 68%] Linking CXX static library libabsl_crc_cpu_detect.a 2025-12-05T22:27:15.6561207Z [ 68%] Built target extension_flat_tensor 2025-12-05T22:27:15.6561813Z [ 68%] Built target crc_cpu_detect 2025-12-05T22:27:15.6562425Z [ 68%] Built target extension_named_data_map 2025-12-05T22:27:15.6563055Z [ 69%] Built target kernels_util_all_deps 2025-12-05T22:27:15.6563750Z [ 69%] Linking CXX static library libabsl_string_view.a 2025-12-05T22:27:15.6565590Z [ 69%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/graphcycles_internal.dir/internal/graphcycles.cc.o 2025-12-05T22:27:15.6568119Z [ 69%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_internal.dir/internal/crc.cc.o 2025-12-05T22:27:15.6569551Z [ 69%] Built target bundled_program 2025-12-05T22:27:15.6570115Z [ 69%] Built target string_view 2025-12-05T22:27:15.6570921Z [ 69%] Linking CXX static library libabsl_strings_internal.a 2025-12-05T22:27:15.6572602Z [ 69%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_internal.dir/internal/crc_x86_arm_combined.cc.o 2025-12-05T22:27:15.6574200Z [ 69%] Built target extension_module_static 2025-12-05T22:27:15.6574831Z [ 69%] Built target strings_internal 2025-12-05T22:27:15.6575456Z [ 69%] Linking CXX static library libabsl_city.a 2025-12-05T22:27:15.6576095Z [ 69%] Built target city 2025-12-05T22:27:15.6576539Z [ 70%] Built target cpublas 2025-12-05T22:27:15.6577041Z [ 70%] Built target util 2025-12-05T22:27:15.6577523Z [ 73%] Built target xnnpack-subgraph 2025-12-05T22:27:15.6578242Z [ 73%] Linking CXX static library libabsl_low_level_hash.a 2025-12-05T22:27:15.6578889Z [ 73%] Built target etdump 2025-12-05T22:27:15.6579762Z [ 73%] Building CXX object extension/module/CMakeFiles/extension_module.dir/module.cpp.o 2025-12-05T22:27:15.6581475Z [ 73%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/ascii.cc.o 2025-12-05T22:27:15.6582781Z [ 73%] Built target low_level_hash 2025-12-05T22:27:15.6583361Z [ 73%] Built target bundled_module 2025-12-05T22:27:15.6583893Z [ 74%] Built target XNNPACK 2025-12-05T22:27:15.6584593Z [ 74%] Linking CXX static library libabsl_graphcycles_internal.a 2025-12-05T22:27:15.6586103Z [ 74%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/charconv.cc.o 2025-12-05T22:27:15.6587566Z [ 74%] Linking CXX static library libabsl_crc_internal.a 2025-12-05T22:27:15.6588571Z [ 74%] Built target graphcycles_internal 2025-12-05T22:27:15.6589162Z [ 75%] Built target optimized_kernels 2025-12-05T22:27:15.6589757Z [ 75%] Built target crc_internal 2025-12-05T22:27:15.6591221Z [ 75%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/charconv_bigint.cc.o 2025-12-05T22:27:15.6593507Z [ 75%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/escaping.cc.o 2025-12-05T22:27:15.6594873Z [ 75%] Built target xnnpack_backend 2025-12-05T22:27:15.6596343Z [ 75%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/charconv_parse.cc.o 2025-12-05T22:27:15.6598921Z [ 75%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/damerau_levenshtein_distance.cc.o 2025-12-05T22:27:15.6600702Z [ 76%] Linking CXX static library libextension_module.a 2025-12-05T22:27:15.6601416Z [ 76%] Built target extension_module 2025-12-05T22:27:15.6602798Z [ 76%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/memutil.cc.o 2025-12-05T22:27:17.2270361Z [ 76%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/internal/stringify_sink.cc.o 2025-12-05T22:27:17.2272588Z [ 76%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/match.cc.o 2025-12-05T22:27:17.2274617Z [ 76%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/numbers.cc.o 2025-12-05T22:27:17.2276009Z [ 89%] Built target optimized_portable_kernels 2025-12-05T22:27:17.2277219Z [ 89%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/str_cat.cc.o 2025-12-05T22:27:17.2279303Z [ 89%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/str_replace.cc.o 2025-12-05T22:27:17.2281418Z [ 89%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/str_split.cc.o 2025-12-05T22:27:17.2284052Z [ 89%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/strings.dir/substitute.cc.o 2025-12-05T22:27:17.2285470Z [ 89%] Built target optimized_native_cpu_ops_lib 2025-12-05T22:27:17.2286133Z [ 89%] Built target portable_lib 2025-12-05T22:27:17.2286761Z [ 90%] Linking CXX static library libabsl_strings.a 2025-12-05T22:27:17.2287404Z [ 90%] Built target strings 2025-12-05T22:27:17.2288616Z [ 90%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/civil_time.cc.o 2025-12-05T22:27:17.2290506Z [ 90%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/hash/CMakeFiles/hash.dir/internal/hash.cc.o 2025-12-05T22:27:17.2292601Z [ 90%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/symbolize.dir/symbolize.cc.o 2025-12-05T22:27:17.2295042Z [ 90%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/arg.cc.o 2025-12-05T22:27:17.2297500Z [ 90%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_proto.dir/internal/proto.cc.o 2025-12-05T22:27:17.2299921Z [ 91%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_commandlineflag.dir/commandlineflag.cc.o 2025-12-05T22:27:17.2302391Z [ 91%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_fnmatch.dir/internal/fnmatch.cc.o 2025-12-05T22:27:17.2304019Z [ 91%] Linking CXX static library libabsl_flags_commandlineflag.a 2025-12-05T22:27:17.2305037Z [ 91%] Built target flags_commandlineflag 2025-12-05T22:27:17.2306646Z [ 91%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/bind.cc.o 2025-12-05T22:27:17.2308486Z [ 91%] Linking CXX static library libabsl_log_internal_proto.a 2025-12-05T22:27:17.2309367Z [ 91%] Linking CXX static library libabsl_log_internal_fnmatch.a 2025-12-05T22:27:17.2310151Z [ 91%] Built target log_internal_proto 2025-12-05T22:27:17.2310767Z [ 91%] Built target log_internal_fnmatch 2025-12-05T22:27:17.2311991Z [ 91%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/clock.cc.o 2025-12-05T22:27:17.2313290Z [ 91%] Linking CXX static library libabsl_symbolize.a 2025-12-05T22:27:17.2315120Z [ 91%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_private_handle_accessor.dir/internal/private_handle_accessor.cc.o 2025-12-05T22:27:17.2317559Z [ 91%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/duration.cc.o 2025-12-05T22:27:17.2319670Z [ 91%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/extension.cc.o 2025-12-05T22:27:17.2321050Z [ 91%] Built target symbolize 2025-12-05T22:27:17.2321560Z [ 91%] Linking CXX static library libabsl_hash.a 2025-12-05T22:27:17.2323008Z [ 91%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/debugging/CMakeFiles/examine_stack.dir/internal/examine_stack.cc.o 2025-12-05T22:27:17.2324314Z [ 91%] Built target hash 2025-12-05T22:27:17.2325735Z [ 91%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/float_conversion.cc.o 2025-12-05T22:27:17.2328205Z [ 92%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/output.cc.o 2025-12-05T22:27:17.2329811Z [ 92%] Linking CXX static library libabsl_flags_private_handle_accessor.a 2025-12-05T22:27:17.2331446Z [ 92%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/parser.cc.o 2025-12-05T22:27:17.2332938Z [ 92%] Built target flags_private_handle_accessor 2025-12-05T22:27:17.2334371Z [ 92%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/format.cc.o 2025-12-05T22:27:17.2335575Z [ 92%] Linking CXX static library libabsl_examine_stack.a 2025-12-05T22:27:17.2336202Z [ 92%] Built target examine_stack 2025-12-05T22:27:17.2337236Z [ 92%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/time/CMakeFiles/time.dir/time.cc.o 2025-12-05T22:27:17.2338470Z [ 92%] Linking CXX static library libabsl_str_format_internal.a 2025-12-05T22:27:17.2339139Z [ 92%] Built target str_format_internal 2025-12-05T22:27:17.2339746Z [ 92%] Linking CXX static library libabsl_time.a 2025-12-05T22:27:17.2341120Z [ 92%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_marshalling.dir/marshalling.cc.o 2025-12-05T22:27:17.2342921Z [ 92%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/crc32c.cc.o 2025-12-05T22:27:17.2344897Z [ 92%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/internal/crc_memcpy_fallback.cc.o 2025-12-05T22:27:17.2347037Z [ 92%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/internal/crc_non_temporal_memcpy.cc.o 2025-12-05T22:27:17.2349395Z [ 92%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc32c.dir/internal/crc_memcpy_x86_arm_combined.cc.o 2025-12-05T22:27:17.2350773Z [ 92%] Built target time 2025-12-05T22:27:17.2352032Z [ 92%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_globals.dir/internal/globals.cc.o 2025-12-05T22:27:17.2354637Z [ 92%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/kernel_timeout_internal.dir/internal/kernel_timeout.cc.o 2025-12-05T22:27:17.2356148Z [ 92%] Linking CXX static library libabsl_flags_marshalling.a 2025-12-05T22:27:17.2356829Z [ 92%] Built target flags_marshalling 2025-12-05T22:27:17.2358069Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_entry.dir/log_entry.cc.o 2025-12-05T22:27:17.2359514Z [ 93%] Linking CXX static library libabsl_log_internal_globals.a 2025-12-05T22:27:17.2360438Z [ 93%] Linking CXX static library libabsl_kernel_timeout_internal.a 2025-12-05T22:27:17.2361224Z [ 93%] Built target log_internal_globals 2025-12-05T22:27:17.2361846Z [ 93%] Built target kernel_timeout_internal 2025-12-05T22:27:17.2363361Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_format.dir/internal/log_format.cc.o 2025-12-05T22:27:17.2364957Z [ 93%] Linking CXX static library libabsl_crc32c.a 2025-12-05T22:27:17.2366400Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/barrier.cc.o 2025-12-05T22:27:17.2368801Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/blocking_counter.cc.o 2025-12-05T22:27:17.2371549Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/create_thread_identity.cc.o 2025-12-05T22:27:17.2374385Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/futex_waiter.cc.o 2025-12-05T22:27:17.2376038Z [ 93%] Built target crc32c 2025-12-05T22:27:17.2377398Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/crc/CMakeFiles/crc_cord_state.dir/internal/crc_cord_state.cc.o 2025-12-05T22:27:17.2378899Z [ 93%] Linking CXX static library libabsl_log_entry.a 2025-12-05T22:27:17.2379541Z [ 93%] Built target log_entry 2025-12-05T22:27:17.2380726Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_sink.dir/log_sink.cc.o 2025-12-05T22:27:17.2383267Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/per_thread_sem.cc.o 2025-12-05T22:27:17.2385110Z [ 93%] Linking CXX static library libabsl_log_internal_format.a 2025-12-05T22:27:17.2385851Z [ 93%] Built target log_internal_format 2025-12-05T22:27:17.2387521Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/pthread_waiter.cc.o 2025-12-05T22:27:17.2390362Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/sem_waiter.cc.o 2025-12-05T22:27:17.2393106Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/stdcpp_waiter.cc.o 2025-12-05T22:27:17.2395867Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/waiter_base.cc.o 2025-12-05T22:27:19.6126205Z [ 93%] Linking CXX static library libabsl_crc_cord_state.a 2025-12-05T22:27:19.6126958Z [ 93%] Built target crc_cord_state 2025-12-05T22:27:19.6128426Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_internal.cc.o 2025-12-05T22:27:19.6129982Z [ 93%] Linking CXX static library libabsl_log_sink.a 2025-12-05T22:27:19.6130589Z [ 93%] Built target log_sink 2025-12-05T22:27:19.6132200Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree.cc.o 2025-12-05T22:27:19.6134577Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/internal/win32_waiter.cc.o 2025-12-05T22:27:19.6137035Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/notification.cc.o 2025-12-05T22:27:19.6139169Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/synchronization/CMakeFiles/synchronization.dir/mutex.cc.o 2025-12-05T22:27:19.6141620Z [ 93%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree_navigator.cc.o 2025-12-05T22:27:19.6144059Z [ 95%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree_reader.cc.o 2025-12-05T22:27:19.6146398Z [ 95%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_crc.cc.o 2025-12-05T22:27:19.6148784Z [ 95%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_consume.cc.o 2025-12-05T22:27:19.6150395Z [ 95%] Linking CXX static library libabsl_synchronization.a 2025-12-05T22:27:19.6151230Z [ 95%] Built target synchronization 2025-12-05T22:27:19.6152619Z [ 95%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_program_name.dir/internal/program_name.cc.o 2025-12-05T22:27:19.6154853Z [ 95%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_handle.dir/internal/cordz_handle.cc.o 2025-12-05T22:27:19.6157684Z [ 95%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/container/CMakeFiles/hashtablez_sampler.dir/internal/hashtablez_sampler_force_weak_definition.cc.o 2025-12-05T22:27:19.6160922Z [ 95%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/container/CMakeFiles/hashtablez_sampler.dir/internal/hashtablez_sampler.cc.o 2025-12-05T22:27:19.6168057Z [ 95%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/vlog_config_internal.dir/internal/vlog_config.cc.o 2025-12-05T22:27:19.6170136Z [ 95%] Linking CXX static library libabsl_cord_internal.a 2025-12-05T22:27:19.6170804Z [ 95%] Built target cord_internal 2025-12-05T22:27:19.6172081Z [ 95%] Linking CXX static library libabsl_flags_program_name.a 2025-12-05T22:27:19.6172917Z [ 96%] Linking CXX static library libabsl_vlog_config_internal.a 2025-12-05T22:27:19.6173635Z [ 96%] Built target flags_program_name 2025-12-05T22:27:19.6174984Z [ 96%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_config.dir/usage_config.cc.o 2025-12-05T22:27:19.6176363Z [ 96%] Built target vlog_config_internal 2025-12-05T22:27:19.6177636Z [ 96%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_globals.dir/globals.cc.o 2025-12-05T22:27:19.6179036Z [ 96%] Linking CXX static library libabsl_hashtablez_sampler.a 2025-12-05T22:27:19.6179817Z [ 96%] Linking CXX static library libabsl_cordz_handle.a 2025-12-05T22:27:19.6180511Z [ 96%] Built target hashtablez_sampler 2025-12-05T22:27:19.6181063Z [ 96%] Built target cordz_handle 2025-12-05T22:27:19.6182391Z [ 96%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cordz_info.dir/internal/cordz_info.cc.o 2025-12-05T22:27:19.6183815Z [ 96%] Linking CXX static library libabsl_flags_config.a 2025-12-05T22:27:19.6184463Z [ 96%] Built target flags_config 2025-12-05T22:27:19.6185105Z [ 96%] Linking CXX static library libabsl_log_globals.a 2025-12-05T22:27:19.6186504Z [ 96%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_internal.dir/internal/flag.cc.o 2025-12-05T22:27:19.6188097Z [ 96%] Built target log_globals 2025-12-05T22:27:19.6189676Z [ 96%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_log_sink_set.dir/internal/log_sink_set.cc.o 2025-12-05T22:27:19.6191348Z [ 96%] Linking CXX static library libabsl_cordz_info.a 2025-12-05T22:27:19.6192038Z [ 96%] Built target cordz_info 2025-12-05T22:27:19.6193188Z [ 96%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord.dir/cord.cc.o 2025-12-05T22:27:19.6195158Z [ 96%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord.dir/cord_analysis.cc.o 2025-12-05T22:27:19.6197219Z [ 96%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/strings/CMakeFiles/cord.dir/cord_buffer.cc.o 2025-12-05T22:27:19.6198549Z [ 96%] Linking CXX static library libabsl_flags_internal.a 2025-12-05T22:27:19.6200086Z [ 96%] Linking CXX static library libabsl_log_internal_log_sink_set.a 2025-12-05T22:27:19.6200812Z [ 96%] Built target flags_internal 2025-12-05T22:27:19.6202033Z [ 96%] Built target log_internal_log_sink_set 2025-12-05T22:27:19.6204176Z [ 96%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_message.dir/internal/log_message.cc.o 2025-12-05T22:27:19.6206409Z [ 96%] Linking CXX static library libabsl_cord.a 2025-12-05T22:27:19.6206984Z [ 96%] Built target cord 2025-12-05T22:27:19.6207578Z [ 97%] Linking CXX static library libabsl_log_internal_message.a 2025-12-05T22:27:19.6209137Z [ 97%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/container/CMakeFiles/raw_hash_set.dir/internal/raw_hash_set.cc.o 2025-12-05T22:27:19.6210625Z [ 97%] Built target log_internal_message 2025-12-05T22:27:19.6212109Z [ 97%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/log/CMakeFiles/log_internal_check_op.dir/internal/check_op.cc.o 2025-12-05T22:27:19.6213702Z [ 97%] Linking CXX static library libabsl_log_internal_check_op.a 2025-12-05T22:27:19.6214456Z [ 97%] Built target log_internal_check_op 2025-12-05T22:27:19.6215091Z [ 97%] Linking CXX static library libabsl_raw_hash_set.a 2025-12-05T22:27:19.6215728Z [ 97%] Built target raw_hash_set 2025-12-05T22:27:19.6217181Z [ 97%] Building CXX object extension/llm/tokenizers/third-party/abseil-cpp/absl/flags/CMakeFiles/flags_reflection.dir/reflection.cc.o 2025-12-05T22:27:19.6218764Z [ 97%] Linking CXX static library libabsl_flags_reflection.a 2025-12-05T22:27:19.6219456Z [ 97%] Built target flags_reflection 2025-12-05T22:27:19.6220441Z [ 97%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/bitmap256.cc.o 2025-12-05T22:27:19.6221932Z [ 97%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/compile.cc.o 2025-12-05T22:27:19.6223452Z [ 97%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/bitstate.cc.o 2025-12-05T22:27:19.6224927Z [ 97%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/dfa.cc.o 2025-12-05T22:27:19.6226439Z [ 97%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/filtered_re2.cc.o 2025-12-05T22:27:19.6228070Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/mimics_pcre.cc.o 2025-12-05T22:27:19.6229547Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/nfa.cc.o 2025-12-05T22:27:19.6230951Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/onepass.cc.o 2025-12-05T22:27:19.6232309Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/parse.cc.o 2025-12-05T22:27:19.6233783Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/perl_groups.cc.o 2025-12-05T22:27:19.6235554Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/prefilter.cc.o 2025-12-05T22:27:19.6237105Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/prefilter_tree.cc.o 2025-12-05T22:27:19.6238445Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/prog.cc.o 2025-12-05T22:27:19.6239874Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/re2.cc.o 2025-12-05T22:27:19.6241326Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/regexp.cc.o 2025-12-05T22:27:19.6242775Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/set.cc.o 2025-12-05T22:27:19.6244268Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/simplify.cc.o 2025-12-05T22:27:19.6245884Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/tostring.cc.o 2025-12-05T22:27:19.6247569Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/unicode_casefold.cc.o 2025-12-05T22:27:19.6249279Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/re2/unicode_groups.cc.o 2025-12-05T22:27:19.6250859Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/util/rune.cc.o 2025-12-05T22:27:19.6252393Z [ 98%] Building CXX object extension/llm/tokenizers/third-party/re2/CMakeFiles/re2.dir/util/strutil.cc.o 2025-12-05T22:27:19.6253487Z [ 98%] Linking CXX static library libre2.a 2025-12-05T22:27:19.6254031Z [ 98%] Built target re2 2025-12-05T22:27:19.6255044Z [ 98%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/src/bpe_tokenizer_base.cpp.o 2025-12-05T22:27:31.0567291Z [ 98%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/src/hf_tokenizer.cpp.o 2025-12-05T22:27:31.0569799Z [ 98%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/src/llama2c_tokenizer.cpp.o 2025-12-05T22:27:31.0573821Z [100%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/src/normalizer.cpp.o 2025-12-05T22:27:31.0575366Z [100%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/src/pre_tokenizer.cpp.o 2025-12-05T22:27:31.0576939Z [100%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/src/regex.cpp.o 2025-12-05T22:27:31.0578141Z [100%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/src/re2_regex.cpp.o 2025-12-05T22:27:31.0579752Z [100%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/src/sentencepiece.cpp.o 2025-12-05T22:27:31.0581097Z [100%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/src/tekken.cpp.o 2025-12-05T22:27:31.0582353Z [100%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/src/tiktoken.cpp.o 2025-12-05T22:27:31.0583869Z [100%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/src/token_decoder.cpp.o 2025-12-05T22:27:31.0585716Z [100%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/third-party/llama.cpp-unicode/src/unicode-data.cpp.o 2025-12-05T22:27:31.0587796Z [100%] Building CXX object extension/llm/tokenizers/CMakeFiles/tokenizers.dir/third-party/llama.cpp-unicode/src/unicode.cpp.o 2025-12-05T22:27:31.0589259Z [100%] Linking CXX static library libtokenizers.a 2025-12-05T22:27:31.0589784Z [100%] Built target tokenizers 2025-12-05T22:27:31.0590628Z [100%] Building CXX object extension/llm/runner/CMakeFiles/extension_llm_runner.dir/multimodal_prefiller.cpp.o 2025-12-05T22:27:31.0592148Z [100%] Building CXX object extension/llm/runner/CMakeFiles/extension_llm_runner.dir/llm_runner_helper.cpp.o 2025-12-05T22:27:31.0595601Z [100%] Building CXX object extension/llm/runner/CMakeFiles/extension_llm_runner.dir/multimodal_runner.cpp.o 2025-12-05T22:27:31.0597506Z [100%] Building CXX object extension/llm/runner/CMakeFiles/extension_llm_runner.dir/text_decoder_runner.cpp.o 2025-12-05T22:27:31.0599261Z [100%] Building CXX object extension/llm/runner/CMakeFiles/extension_llm_runner.dir/text_llm_runner.cpp.o 2025-12-05T22:27:31.0600745Z [100%] Building CXX object extension/llm/runner/CMakeFiles/extension_llm_runner.dir/text_prefiller.cpp.o 2025-12-05T22:27:31.0602374Z [100%] Building CXX object extension/llm/runner/CMakeFiles/extension_llm_runner.dir/__/sampler/sampler.cpp.o 2025-12-05T22:27:31.0603554Z [100%] Linking CXX static library libextension_llm_runner.a 2025-12-05T22:27:31.0604255Z [100%] Built target extension_llm_runner 2025-12-05T22:27:31.0605160Z [100%] Building CXX object extension/llm/runner/CMakeFiles/_llm_runner.dir/pybindings.cpp.o 2025-12-05T22:27:31.0606337Z [100%] Linking CXX shared library _llm_runner.cpython-310-x86_64-linux-gnu.so 2025-12-05T22:27:31.0607128Z [100%] Built target _llm_runner 2025-12-05T22:27:31.0607655Z [ 0%] Built target flatbuffers_ep 2025-12-05T22:27:31.0608177Z [ 0%] Built target common_schema 2025-12-05T22:27:31.0608699Z [ 0%] Built target scalar_type_schema 2025-12-05T22:27:31.0609236Z [ 0%] Built target program_schema 2025-12-05T22:27:31.0609760Z [ 0%] Built target flat_tensor_schema 2025-12-05T22:27:31.0610312Z [ 66%] Built target executorch_core 2025-12-05T22:27:31.0610856Z [ 66%] Built target extension_data_loader 2025-12-05T22:27:31.0611446Z [ 66%] Built target extension_named_data_map 2025-12-05T22:27:31.0612015Z [ 66%] Built target extension_flat_tensor 2025-12-05T22:27:31.0612593Z [100%] Built target extension_module 2025-12-05T22:27:31.0613081Z [ 0%] Built target flatbuffers_ep 2025-12-05T22:27:31.0613591Z [ 0%] Built target flatcc_ep 2025-12-05T22:27:31.0614084Z [ 0%] Built target xnnpack-sanitizers 2025-12-05T22:27:31.0614614Z [ 1%] Built target pthreadpool 2025-12-05T22:27:31.0615087Z [ 3%] Built target cpuinfo 2025-12-05T22:27:31.0615544Z [ 3%] Built target common_schema 2025-12-05T22:27:31.0616076Z [ 5%] Built target xnnpack_schema 2025-12-05T22:27:31.0616609Z [ 5%] Built target scalar_type_schema 2025-12-05T22:27:31.0617121Z [ 7%] Built target flatccrt 2025-12-05T22:27:31.0617575Z [ 7%] Built target xnnpack-logging 2025-12-05T22:27:31.0618382Z [ 7%] Built target xnnpack-microparams-init 2025-12-05T22:27:31.0619207Z [ 7%] Built target xnnpack-indirection 2025-12-05T22:27:31.0619766Z [ 7%] Built target xnnpack-normalization 2025-12-05T22:27:31.0620330Z [ 7%] Built target xnnpack-datatype 2025-12-05T22:27:31.0620861Z [ 7%] Built target program_schema 2025-12-05T22:27:31.0621403Z [ 7%] Built target flat_tensor_schema 2025-12-05T22:27:31.0621953Z [ 7%] Built target xnnpack-hardware-config 2025-12-05T22:27:31.0622524Z [ 7%] Built target xnnpack-pack-lh 2025-12-05T22:27:31.0623057Z [ 7%] Built target xnnpack-packing 2025-12-05T22:27:31.0623613Z [ 7%] Built target xnnpack-allocator 2025-12-05T22:27:31.0624163Z [ 7%] Built target xnnpack-cache 2025-12-05T22:27:31.0624673Z [ 7%] Built target xnnpack-memory 2025-12-05T22:27:31.0625209Z [ 7%] Built target xnnpack-mutex 2025-12-05T22:27:31.0625775Z [ 7%] Built target xnnpack-reference-ukernels 2025-12-05T22:27:31.0626386Z [ 7%] Built target xnnpack-operator-utils 2025-12-05T22:27:31.0626989Z [ 7%] Built target xnnpack-operator-run 2025-12-05T22:27:31.0627573Z [ 7%] Built target xnnpack-microkernel-utils 2025-12-05T22:27:31.0628146Z [ 11%] Built target executorch_core 2025-12-05T22:27:31.0628809Z [ 13%] Built target xnnpack-operators 2025-12-05T22:27:31.0629336Z [ 13%] Built target extension_data_loader 2025-12-05T22:27:31.0629881Z [ 13%] Built target extension_tensor 2025-12-05T22:27:31.0630440Z [ 13%] Built target extension_named_data_map 2025-12-05T22:27:31.0631011Z [ 13%] Built target extension_flat_tensor 2025-12-05T22:27:31.0631607Z [ 15%] Built target extension_threadpool 2025-12-05T22:27:31.0632158Z [ 15%] Built target kernels_util_all_deps 2025-12-05T22:27:31.0632969Z [ 15%] Built target executorch 2025-12-05T22:27:31.0633485Z [ 15%] Built target extension_module_static 2025-12-05T22:27:31.0634070Z [ 18%] Built target xnnpack-subgraph 2025-12-05T22:27:31.0634581Z [ 18%] Built target etdump 2025-12-05T22:27:31.0635584Z [ 18%] Building CXX object extension/training/CMakeFiles/extension_training.dir/module/training_module.cpp.o 2025-12-05T22:27:31.0637209Z [ 18%] Building CXX object extension/training/CMakeFiles/extension_training.dir/optimizer/sgd.cpp.o 2025-12-05T22:27:31.0638203Z [ 18%] Built target util 2025-12-05T22:27:31.0638714Z [ 98%] Built target xnnpack-microkernels-prod 2025-12-05T22:27:31.0639276Z [100%] Built target XNNPACK 2025-12-05T22:27:31.0639762Z [100%] Built target xnnpack_backend 2025-12-05T22:27:31.0640379Z [100%] Linking CXX static library libextension_training.a 2025-12-05T22:27:31.0641046Z [100%] Built target extension_training 2025-12-05T22:27:31.0642106Z [100%] Building CXX object extension/training/CMakeFiles/_training_lib.dir/pybindings/_training_lib.cpp.o 2025-12-05T22:27:31.0643475Z [100%] Linking CXX shared library _training_lib.cpython-310-x86_64-linux-gnu.so 2025-12-05T22:27:31.0644339Z [100%] Built target _training_lib 2025-12-05T22:27:31.0645383Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_util.dir/runtime/util/json_util.cpp.o 2025-12-05T22:27:31.0647115Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_stream.cpp.o 2025-12-05T22:27:31.0649003Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/inmemory_filesystem.cpp.o 2025-12-05T22:27:31.0650903Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_buffer.cpp.o 2025-12-05T22:27:31.0652806Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/reversed_memory_stream.cpp.o 2025-12-05T22:27:31.0654174Z Linking CXX static library libcoreml_util.a 2025-12-05T22:27:31.0654779Z Built target coreml_util 2025-12-05T22:27:31.0655338Z Linking CXX static library libcoreml_inmemoryfs.a 2025-12-05T22:27:31.0656023Z Built target coreml_inmemoryfs 2025-12-05T22:27:31.0657342Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_py.cpp.o 2025-12-05T22:27:31.0659754Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_utils.cpp.o 2025-12-05T22:27:31.0661488Z Linking CXX shared library executorchcoreml.cpython-310-x86_64-linux-gnu.so 2025-12-05T22:27:31.0662366Z Built target executorchcoreml 2025-12-05T22:27:31.0662907Z [ 0%] Built target flatbuffers_ep 2025-12-05T22:27:31.0663451Z [ 0%] Built target flatcc_ep 2025-12-05T22:27:31.0663994Z [ 0%] Built target xnnpack-sanitizers 2025-12-05T22:27:31.0664570Z [ 1%] Built target pthreadpool 2025-12-05T22:27:31.0665058Z [ 2%] Built target cpuinfo 2025-12-05T22:27:31.0665526Z [ 2%] Built target common_schema 2025-12-05T22:27:31.0666049Z [ 2%] Built target scalar_type_schema 2025-12-05T22:27:31.0666576Z [ 4%] Built target eigen_blas 2025-12-05T22:27:31.0667058Z [ 5%] Built target xnnpack_schema 2025-12-05T22:27:31.0667563Z [ 7%] Built target flatccrt 2025-12-05T22:27:31.0668003Z [ 7%] Built target xnnpack-logging 2025-12-05T22:27:31.0668670Z [ 7%] Built target xnnpack-indirection 2025-12-05T22:27:31.0669252Z [ 7%] Built target xnnpack-normalization 2025-12-05T22:27:31.0669832Z [ 7%] Built target xnnpack-datatype 2025-12-05T22:27:31.0670399Z [ 7%] Built target xnnpack-microparams-init 2025-12-05T22:27:31.0670984Z [ 7%] Built target program_schema 2025-12-05T22:27:31.0671504Z [ 7%] Built target flat_tensor_schema 2025-12-05T22:27:31.0672070Z [ 7%] Built target xnnpack-hardware-config 2025-12-05T22:27:31.0672676Z [ 7%] Built target xnnpack-pack-lh 2025-12-05T22:27:31.0673201Z [ 7%] Built target xnnpack-packing 2025-12-05T22:27:31.0673932Z [ 7%] Built target xnnpack-allocator 2025-12-05T22:27:31.0674491Z [ 7%] Built target xnnpack-cache 2025-12-05T22:27:31.0675040Z [ 7%] Built target xnnpack-memory 2025-12-05T22:27:31.0675585Z [ 7%] Built target xnnpack-mutex 2025-12-05T22:27:31.0676177Z [ 7%] Built target xnnpack-operator-utils 2025-12-05T22:27:31.0676802Z [ 7%] Built target xnnpack-reference-ukernels 2025-12-05T22:27:31.0677441Z [ 7%] Built target xnnpack-operator-run 2025-12-05T22:27:31.0678082Z [ 7%] Built target xnnpack-microkernel-utils 2025-12-05T22:27:31.0678679Z [ 10%] Built target executorch_core 2025-12-05T22:27:31.0679226Z [ 11%] Built target xnnpack-operators 2025-12-05T22:27:31.0679806Z [ 11%] Built target extension_data_loader 2025-12-05T22:27:31.0680408Z [ 11%] Built target extension_threadpool 2025-12-05T22:27:31.0681006Z [ 11%] Built target extension_named_data_map 2025-12-05T22:27:31.0681624Z [ 11%] Built target extension_flat_tensor 2025-12-05T22:27:31.0682187Z [ 11%] Built target executorch 2025-12-05T22:27:31.0682717Z [ 11%] Built target extension_tensor 2025-12-05T22:27:31.0683272Z [ 11%] Built target bundled_program 2025-12-05T22:27:31.0683809Z [ 11%] Built target extension_module_static 2025-12-05T22:27:31.0684373Z [ 13%] Built target cpublas 2025-12-05T22:27:31.0684841Z [ 16%] Built target xnnpack-subgraph 2025-12-05T22:27:31.0685397Z [ 17%] Built target kernels_util_all_deps 2025-12-05T22:27:31.0685950Z [ 17%] Built target bundled_module 2025-12-05T22:27:31.0686425Z [ 17%] Built target etdump 2025-12-05T22:27:31.0686923Z [ 19%] Built target optimized_kernels 2025-12-05T22:27:31.0687469Z [ 19%] Built target util 2025-12-05T22:27:31.0687979Z [ 34%] Built target optimized_portable_kernels 2025-12-05T22:27:31.0688612Z [ 34%] Built target optimized_native_cpu_ops_lib 2025-12-05T22:27:31.0689289Z [ 97%] Built target xnnpack-microkernels-prod 2025-12-05T22:27:31.0689888Z [ 98%] Built target XNNPACK 2025-12-05T22:27:31.0690387Z [ 98%] Built target xnnpack_backend 2025-12-05T22:27:31.0690903Z [ 98%] Built target portable_lib 2025-12-05T22:27:38.8246016Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fallback.cpp.o 2025-12-05T22:27:38.8247174Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fast_hadamard_transform.cpp.o 2025-12-05T22:27:38.8248918Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa.cpp.o 2025-12-05T22:27:38.8249819Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_update_cache.cpp.o 2025-12-05T22:27:38.8250932Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/spinquant/fast_hadamard_transform.cpp.o 2025-12-05T22:27:38.8251934Z [100%] Building C object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/spinquant/third-party/FFHT/fht_avx.c.o 2025-12-05T22:27:38.8252842Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa_aot.cpp.o 2025-12-05T22:27:38.8253764Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fast_hadamard_transform_aten.cpp.o 2025-12-05T22:27:38.8254667Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop.cpp.o 2025-12-05T22:27:38.8255519Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop_aot.cpp.o 2025-12-05T22:27:38.8256163Z [100%] Linking CXX shared library libcustom_ops_aot_lib.so 2025-12-05T22:27:38.8256547Z [100%] Built target custom_ops_aot_lib 2025-12-05T22:27:38.8256865Z [ 0%] Built target flatbuffers_ep 2025-12-05T22:27:38.8257155Z [ 0%] Built target flatcc_ep 2025-12-05T22:27:38.8257445Z [ 0%] Built target xnnpack-sanitizers 2025-12-05T22:27:38.8257799Z [ 1%] Built target pthreadpool 2025-12-05T22:27:38.8258099Z [ 2%] Built target cpuinfo 2025-12-05T22:27:38.8258525Z [ 4%] Built target eigen_blas 2025-12-05T22:27:38.8258829Z [ 4%] Built target common_schema 2025-12-05T22:27:38.8259118Z [ 4%] Built target scalar_type_schema 2025-12-05T22:27:38.8259545Z [ 5%] Built target xnnpack_schema 2025-12-05T22:27:38.8259909Z [ 7%] Built target flatccrt 2025-12-05T22:27:38.8260257Z [ 7%] Built target xnnpack-logging 2025-12-05T22:27:38.8260572Z [ 7%] Built target xnnpack-indirection 2025-12-05T22:27:38.8260966Z [ 7%] Built target xnnpack-microparams-init 2025-12-05T22:27:38.8261308Z [ 7%] Built target xnnpack-datatype 2025-12-05T22:27:38.8261656Z [ 7%] Built target program_schema 2025-12-05T22:27:38.8261973Z [ 7%] Built target xnnpack-normalization 2025-12-05T22:27:38.8262299Z [ 7%] Built target flat_tensor_schema 2025-12-05T22:27:38.8262679Z [ 7%] Built target xnnpack-hardware-config 2025-12-05T22:27:38.8263006Z [ 7%] Built target xnnpack-pack-lh 2025-12-05T22:27:38.8263378Z [ 7%] Built target xnnpack-packing 2025-12-05T22:27:38.8263694Z [ 7%] Built target xnnpack-cache 2025-12-05T22:27:38.8264041Z [ 7%] Built target xnnpack-allocator 2025-12-05T22:27:38.8264355Z [ 7%] Built target xnnpack-memory 2025-12-05T22:27:38.8264701Z [ 7%] Built target xnnpack-mutex 2025-12-05T22:27:38.8265021Z [ 7%] Built target xnnpack-operator-utils 2025-12-05T22:27:38.8265379Z [ 7%] Built target xnnpack-reference-ukernels 2025-12-05T22:27:38.8265773Z [ 7%] Built target xnnpack-operator-run 2025-12-05T22:27:38.8266113Z [ 7%] Built target xnnpack-microkernel-utils 2025-12-05T22:27:38.8266503Z [ 10%] Built target executorch_core 2025-12-05T22:27:38.8266806Z [ 11%] Built target xnnpack-operators 2025-12-05T22:27:38.8267181Z [ 11%] Built target extension_data_loader 2025-12-05T22:27:38.8267524Z [ 11%] Built target extension_named_data_map 2025-12-05T22:27:38.8267850Z [ 11%] Built target extension_flat_tensor 2025-12-05T22:27:38.8268167Z [ 11%] Built target executorch 2025-12-05T22:27:38.8268551Z [ 11%] Built target extension_tensor 2025-12-05T22:27:38.8268886Z [ 13%] Built target kernels_util_all_deps 2025-12-05T22:27:38.8269272Z [ 13%] Built target extension_threadpool 2025-12-05T22:27:38.8269586Z [ 13%] Built target bundled_program 2025-12-05T22:27:38.8269912Z [ 13%] Built target extension_module_static 2025-12-05T22:27:38.8270235Z [ 16%] Built target xnnpack-subgraph 2025-12-05T22:27:38.8270547Z [ 16%] Built target etdump 2025-12-05T22:27:38.8270985Z [ 16%] Built target bundled_module 2025-12-05T22:27:38.8271288Z [ 17%] Built target cpublas 2025-12-05T22:27:38.8271561Z [ 19%] Built target optimized_kernels 2025-12-05T22:27:38.8271870Z [ 19%] Built target util 2025-12-05T22:27:38.8272150Z [ 33%] Built target optimized_portable_kernels 2025-12-05T22:27:38.8272520Z [ 33%] Built target optimized_native_cpu_ops_lib 2025-12-05T22:27:38.8272896Z [ 95%] Built target xnnpack-microkernels-prod 2025-12-05T22:27:38.8273219Z [ 97%] Built target XNNPACK 2025-12-05T22:27:38.8273508Z [ 97%] Built target xnnpack_backend 2025-12-05T22:27:38.8273812Z [ 97%] Built target portable_lib 2025-12-05T22:27:38.8274408Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_add.cpp.o 2025-12-05T22:27:38.8275341Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/embeddingxb.cpp.o 2025-12-05T22:27:38.8276334Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_choose_qparams.cpp.o 2025-12-05T22:27:38.8277335Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_dequantize.cpp.o 2025-12-05T22:27:38.8278247Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding.cpp.o 2025-12-05T22:27:38.8279173Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding2b.cpp.o 2025-12-05T22:27:38.8280097Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding4b.cpp.o 2025-12-05T22:27:38.8281113Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_linear.cpp.o 2025-12-05T22:27:38.8282093Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_mm.cpp.o 2025-12-05T22:27:38.8282990Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_quantize.cpp.o 2025-12-05T22:27:38.8283754Z [ 98%] Linking CXX static library libquantized_pybind_kernels_lib.a 2025-12-05T22:27:38.8284222Z [ 98%] Built target quantized_pybind_kernels_lib 2025-12-05T22:27:38.8284679Z [ 98%] Generating selected_operators.yaml for quantized_ops_pybind_lib 2025-12-05T22:27:38.8285134Z [ 98%] Generating code for kernel registration 2025-12-05T22:27:38.8285984Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_pybind_lib.dir/quantized_ops_pybind_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-12-05T22:27:38.8286911Z [ 98%] Linking CXX static library libquantized_ops_pybind_lib.a 2025-12-05T22:27:38.8287314Z [ 98%] Built target quantized_ops_pybind_lib 2025-12-05T22:27:38.8287747Z [ 98%] Generating selected_operators.yaml for quantized_ops_aot_lib 2025-12-05T22:27:38.8290680Z 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-12-05T22:27:38.8293487Z [ 98%] Generating code for kernel registration 2025-12-05T22:27:38.8294207Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterCPUCustomOps.cpp.o 2025-12-05T22:27:38.8295334Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterSchema.cpp.o 2025-12-05T22:27:38.8296272Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/embeddingxb.cpp.o 2025-12-05T22:27:38.8297163Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_add.cpp.o 2025-12-05T22:27:38.8298060Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_choose_qparams.cpp.o 2025-12-05T22:27:38.8298988Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_dequantize.cpp.o 2025-12-05T22:27:38.8299867Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding.cpp.o 2025-12-05T22:27:38.8300741Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding2b.cpp.o 2025-12-05T22:27:38.8301611Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding4b.cpp.o 2025-12-05T22:27:38.8302492Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_linear.cpp.o 2025-12-05T22:27:38.8303354Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_mm.cpp.o 2025-12-05T22:27:38.8304204Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_quantize.cpp.o 2025-12-05T22:27:38.8305169Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/__/portable/cpu/util/reduce_util.cpp.o 2025-12-05T22:27:38.8306272Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/__/__/runtime/core/exec_aten/util/tensor_util_aten.cpp.o 2025-12-05T22:27:38.8307070Z [100%] Linking CXX shared library libquantized_ops_aot_lib.so 2025-12-05T22:27:38.8307535Z [100%] Built target quantized_ops_aot_lib 2025-12-05T22:27:38.8307884Z 2025-12-05 22:27:38,822 [INFO] running build_py 2025-12-05T22:27:38.8308474Z 2025-12-05 22:27:38,822 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends 2025-12-05T22:27:38.8309315Z 2025-12-05 22:27:38,823 [INFO] copying src/executorch/backends/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends 2025-12-05T22:27:38.8310146Z 2025-12-05 22:27:38,823 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-12-05T22:27:38.8310961Z 2025-12-05 22:27:38,823 [INFO] copying src/executorch/codegen/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-12-05T22:27:38.8311911Z 2025-12-05 22:27:38,823 [INFO] copying src/executorch/codegen/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-12-05T22:27:38.8312951Z 2025-12-05 22:27:38,823 [INFO] copying src/executorch/codegen/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-12-05T22:27:38.8696592Z 2025-12-05 22:27:38,824 [INFO] copying src/executorch/codegen/parse.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-12-05T22:27:38.8697716Z 2025-12-05 22:27:38,824 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-12-05T22:27:38.8698892Z 2025-12-05 22:27:38,824 [INFO] copying src/executorch/devtools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-12-05T22:27:38.8700128Z 2025-12-05 22:27:38,825 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8701207Z 2025-12-05 22:27:38,825 [INFO] copying src/executorch/exir/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8702113Z 2025-12-05 22:27:38,826 [INFO] copying src/executorch/exir/_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8703085Z 2025-12-05 22:27:38,827 [INFO] copying src/executorch/exir/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8704220Z 2025-12-05 22:27:38,828 [INFO] copying src/executorch/exir/control_flow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8705196Z 2025-12-05 22:27:38,828 [INFO] copying src/executorch/exir/debug_handle_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8706437Z 2025-12-05 22:27:38,829 [INFO] copying src/executorch/exir/delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8707402Z 2025-12-05 22:27:38,830 [INFO] copying src/executorch/exir/dim_order_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8708375Z 2025-12-05 22:27:38,830 [INFO] copying src/executorch/exir/dynamic_shape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8709397Z 2025-12-05 22:27:38,831 [INFO] copying src/executorch/exir/error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8710290Z 2025-12-05 22:27:38,832 [INFO] copying src/executorch/exir/graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8711360Z 2025-12-05 22:27:38,833 [INFO] copying src/executorch/exir/graph_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8712383Z 2025-12-05 22:27:38,834 [INFO] copying src/executorch/exir/lowered_backend_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8713355Z 2025-12-05 22:27:38,836 [INFO] copying src/executorch/exir/memory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8714304Z 2025-12-05 22:27:38,837 [INFO] copying src/executorch/exir/memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8715275Z 2025-12-05 22:27:38,839 [INFO] copying src/executorch/exir/pass_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8716210Z 2025-12-05 22:27:38,839 [INFO] copying src/executorch/exir/pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8717288Z 2025-12-05 22:27:38,840 [INFO] copying src/executorch/exir/print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8718427Z 2025-12-05 22:27:38,841 [INFO] copying src/executorch/exir/scalar_type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8719367Z 2025-12-05 22:27:38,841 [INFO] copying src/executorch/exir/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8720340Z 2025-12-05 22:27:38,842 [INFO] copying src/executorch/exir/sym_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8721360Z 2025-12-05 22:27:38,843 [INFO] copying src/executorch/exir/tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8722426Z 2025-12-05 22:27:38,844 [INFO] copying src/executorch/exir/tensor_layout.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8723437Z 2025-12-05 22:27:38,845 [INFO] copying src/executorch/exir/tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8724347Z 2025-12-05 22:27:38,846 [INFO] copying src/executorch/exir/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8725265Z 2025-12-05 22:27:38,846 [INFO] copying src/executorch/exir/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8726158Z 2025-12-05 22:27:38,847 [INFO] copying src/executorch/exir/wrap.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:38.8726934Z 2025-12-05 22:27:38,848 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/export 2025-12-05T22:27:38.8727737Z 2025-12-05 22:27:38,848 [INFO] copying src/executorch/export/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export 2025-12-05T22:27:38.8728670Z 2025-12-05 22:27:38,849 [INFO] copying src/executorch/export/export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export 2025-12-05T22:27:38.8729795Z 2025-12-05 22:27:38,850 [INFO] copying src/executorch/export/recipe.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export 2025-12-05T22:27:38.8730780Z 2025-12-05 22:27:38,850 [INFO] copying src/executorch/export/recipe_provider.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export 2025-12-05T22:27:38.8731933Z 2025-12-05 22:27:38,851 [INFO] copying src/executorch/export/recipe_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export 2025-12-05T22:27:38.8732925Z 2025-12-05 22:27:38,852 [INFO] copying src/executorch/export/stages.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export 2025-12-05T22:27:38.8733899Z 2025-12-05 22:27:38,853 [INFO] copying src/executorch/export/target_recipes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export 2025-12-05T22:27:38.8734878Z 2025-12-05 22:27:38,853 [INFO] copying src/executorch/export/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export 2025-12-05T22:27:38.8735807Z 2025-12-05 22:27:38,854 [INFO] copying src/executorch/export/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export 2025-12-05T22:27:38.8736606Z 2025-12-05 22:27:38,855 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-12-05T22:27:38.8737423Z 2025-12-05 22:27:38,855 [INFO] copying src/executorch/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-12-05T22:27:38.8738215Z 2025-12-05 22:27:38,856 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-12-05T22:27:38.8739208Z 2025-12-05 22:27:38,856 [INFO] copying src/executorch/util/activation_memory_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-12-05T22:27:38.8740264Z 2025-12-05 22:27:38,857 [INFO] copying src/executorch/util/collect_env.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-12-05T22:27:38.8741232Z 2025-12-05 22:27:38,858 [INFO] copying src/executorch/util/python_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-12-05T22:27:38.8742187Z 2025-12-05 22:27:38,859 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/aoti 2025-12-05T22:27:38.8743115Z 2025-12-05 22:27:38,859 [INFO] copying src/executorch/backends/aoti/aoti_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/aoti 2025-12-05T22:27:38.8744286Z 2025-12-05 22:27:38,859 [INFO] copying src/executorch/backends/aoti/aoti_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/aoti 2025-12-05T22:27:38.8745241Z 2025-12-05 22:27:38,860 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-12-05T22:27:38.8746127Z 2025-12-05 22:27:38,860 [INFO] copying src/executorch/backends/arm/arm_vela.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-12-05T22:27:38.8747399Z 2025-12-05 22:27:38,861 [INFO] copying src/executorch/backends/arm/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-12-05T22:27:38.8748600Z 2025-12-05 22:27:38,862 [INFO] copying src/executorch/backends/arm/process_node.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-12-05T22:27:38.8749514Z 2025-12-05 22:27:38,863 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda 2025-12-05T22:27:38.8750419Z 2025-12-05 22:27:38,863 [INFO] copying src/executorch/backends/cuda/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda 2025-12-05T22:27:38.8751515Z 2025-12-05 22:27:38,864 [INFO] copying src/executorch/backends/cuda/cuda_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda 2025-12-05T22:27:38.8752678Z 2025-12-05 22:27:38,865 [INFO] copying src/executorch/backends/cuda/cuda_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda 2025-12-05T22:27:38.8753641Z 2025-12-05 22:27:38,865 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-12-05T22:27:38.8754632Z 2025-12-05 22:27:38,866 [INFO] copying src/executorch/backends/example/example_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-12-05T22:27:38.8755939Z 2025-12-05 22:27:38,866 [INFO] copying src/executorch/backends/example/example_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-12-05T22:27:38.8757429Z 2025-12-05 22:27:38,867 [INFO] copying src/executorch/backends/example/example_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-12-05T22:27:38.8758822Z 2025-12-05 22:27:38,868 [INFO] copying src/executorch/backends/example/test_example_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-12-05T22:27:38.9059776Z 2025-12-05 22:27:38,869 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-12-05T22:27:38.9060767Z 2025-12-05 22:27:38,869 [INFO] copying src/executorch/backends/mediatek/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-12-05T22:27:38.9062098Z 2025-12-05 22:27:38,870 [INFO] copying src/executorch/backends/mediatek/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-12-05T22:27:38.9063345Z 2025-12-05 22:27:38,870 [INFO] copying src/executorch/backends/mediatek/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-12-05T22:27:38.9064312Z 2025-12-05 22:27:38,871 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-12-05T22:27:38.9065285Z 2025-12-05 22:27:38,871 [INFO] copying src/executorch/backends/nxp/neutron_node_extraction.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-12-05T22:27:38.9066685Z 2025-12-05 22:27:38,872 [INFO] copying src/executorch/backends/nxp/neutron_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-12-05T22:27:38.9067877Z 2025-12-05 22:27:38,873 [INFO] copying src/executorch/backends/nxp/neutron_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-12-05T22:27:38.9069338Z 2025-12-05 22:27:38,874 [INFO] copying src/executorch/backends/nxp/nxp_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-12-05T22:27:38.9070270Z 2025-12-05 22:27:38,875 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-12-05T22:27:38.9071219Z 2025-12-05 22:27:38,875 [INFO] copying src/executorch/backends/openvino/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-12-05T22:27:38.9072421Z 2025-12-05 22:27:38,876 [INFO] copying src/executorch/backends/openvino/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-12-05T22:27:38.9073658Z 2025-12-05 22:27:38,877 [INFO] copying src/executorch/backends/openvino/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-12-05T22:27:38.9074812Z 2025-12-05 22:27:38,877 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-12-05T22:27:38.9075768Z 2025-12-05 22:27:38,878 [INFO] copying src/executorch/backends/qualcomm/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-12-05T22:27:38.9076957Z 2025-12-05 22:27:38,878 [INFO] copying src/executorch/backends/qualcomm/qnn_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-12-05T22:27:38.9077947Z 2025-12-05 22:27:38,879 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung 2025-12-05T22:27:38.9078937Z 2025-12-05 22:27:38,879 [INFO] copying src/executorch/backends/samsung/enn_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung 2025-12-05T22:27:38.9079912Z 2025-12-05 22:27:38,880 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9080889Z 2025-12-05 22:27:38,881 [INFO] copying src/executorch/backends/transforms/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9082174Z 2025-12-05 22:27:38,881 [INFO] copying src/executorch/backends/transforms/addmm_mm_to_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9083767Z 2025-12-05 22:27:38,882 [INFO] copying src/executorch/backends/transforms/convert_dtype_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9085083Z 2025-12-05 22:27:38,883 [INFO] copying src/executorch/backends/transforms/decompose_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9086435Z 2025-12-05 22:27:38,884 [INFO] copying src/executorch/backends/transforms/duplicate_dynamic_quant_chain.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9087839Z 2025-12-05 22:27:38,885 [INFO] copying src/executorch/backends/transforms/fuse_batch_norm_with_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9089183Z 2025-12-05 22:27:38,885 [INFO] copying src/executorch/backends/transforms/fuse_conv_with_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9090471Z 2025-12-05 22:27:38,886 [INFO] copying src/executorch/backends/transforms/fuse_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9091748Z 2025-12-05 22:27:38,887 [INFO] copying src/executorch/backends/transforms/mean_to_sum_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9093009Z 2025-12-05 22:27:38,888 [INFO] copying src/executorch/backends/transforms/rank_0_to_rank_1.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9094457Z 2025-12-05 22:27:38,888 [INFO] copying src/executorch/backends/transforms/remove_clone_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9095973Z 2025-12-05 22:27:38,889 [INFO] copying src/executorch/backends/transforms/remove_getitem_op.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9097327Z 2025-12-05 22:27:38,890 [INFO] copying src/executorch/backends/transforms/replace_scalar_with_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9098616Z 2025-12-05 22:27:38,891 [INFO] copying src/executorch/backends/transforms/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9099925Z 2025-12-05 22:27:38,892 [INFO] copying src/executorch/backends/transforms/view_copy_to_squeeze_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-12-05T22:27:38.9100999Z 2025-12-05 22:27:38,892 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-12-05T22:27:38.9101917Z 2025-12-05 22:27:38,893 [INFO] copying src/executorch/backends/vulkan/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-12-05T22:27:38.9103078Z 2025-12-05 22:27:38,893 [INFO] copying src/executorch/backends/vulkan/custom_ops_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-12-05T22:27:38.9104284Z 2025-12-05 22:27:38,894 [INFO] copying src/executorch/backends/vulkan/op_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-12-05T22:27:38.9105546Z 2025-12-05 22:27:38,895 [INFO] copying src/executorch/backends/vulkan/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-12-05T22:27:38.9106729Z 2025-12-05 22:27:38,896 [INFO] copying src/executorch/backends/vulkan/vulkan_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-12-05T22:27:38.9107705Z 2025-12-05 22:27:38,897 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-12-05T22:27:38.9108739Z 2025-12-05 22:27:38,898 [INFO] copying src/executorch/backends/xnnpack/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-12-05T22:27:38.9109962Z 2025-12-05 22:27:38,898 [INFO] copying src/executorch/backends/xnnpack/xnnpack_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-12-05T22:27:38.9111059Z 2025-12-05 22:27:38,899 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/aoti/passes 2025-12-05T22:27:38.9112158Z 2025-12-05 22:27:38,899 [INFO] copying src/executorch/backends/aoti/passes/replace_view_copy_with_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/aoti/passes 2025-12-05T22:27:38.9113243Z 2025-12-05 22:27:38,900 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml 2025-12-05T22:27:38.9114400Z 2025-12-05 22:27:38,900 [INFO] copying src/executorch/backends/apple/coreml/logging.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml 2025-12-05T22:27:38.9115574Z 2025-12-05 22:27:38,901 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/metal 2025-12-05T22:27:38.9116597Z 2025-12-05 22:27:38,901 [INFO] copying src/executorch/backends/apple/metal/metal_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/metal 2025-12-05T22:27:38.9117914Z 2025-12-05 22:27:38,902 [INFO] copying src/executorch/backends/apple/metal/metal_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/metal 2025-12-05T22:27:38.9119193Z 2025-12-05 22:27:38,903 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-12-05T22:27:38.9120152Z 2025-12-05 22:27:38,903 [INFO] copying src/executorch/backends/apple/mps/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-12-05T22:27:38.9121373Z 2025-12-05 22:27:38,904 [INFO] copying src/executorch/backends/apple/mps/mps_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-12-05T22:27:38.9122549Z 2025-12-05 22:27:38,905 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-12-05T22:27:38.9400407Z 2025-12-05 22:27:38,905 [INFO] copying src/executorch/backends/apple/coreml/compiler/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-12-05T22:27:38.9401959Z 2025-12-05 22:27:38,906 [INFO] copying src/executorch/backends/apple/coreml/compiler/coreml_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-12-05T22:27:38.9403529Z 2025-12-05 22:27:38,907 [INFO] copying src/executorch/backends/apple/coreml/compiler/enumerated_shape_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-12-05T22:27:38.9405067Z 2025-12-05 22:27:38,908 [INFO] copying src/executorch/backends/apple/coreml/compiler/torch_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-12-05T22:27:38.9406358Z 2025-12-05 22:27:38,909 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-12-05T22:27:38.9407578Z 2025-12-05 22:27:38,909 [INFO] copying src/executorch/backends/apple/coreml/partition/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-12-05T22:27:38.9409089Z 2025-12-05 22:27:38,910 [INFO] copying src/executorch/backends/apple/coreml/partition/coreml_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-12-05T22:27:38.9410310Z 2025-12-05 22:27:38,911 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-12-05T22:27:38.9411454Z 2025-12-05 22:27:38,911 [INFO] copying src/executorch/backends/apple/coreml/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-12-05T22:27:38.9412962Z 2025-12-05 22:27:38,912 [INFO] copying src/executorch/backends/apple/coreml/quantizer/coreml_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-12-05T22:27:38.9414197Z 2025-12-05 22:27:38,912 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/recipes 2025-12-05T22:27:38.9415669Z 2025-12-05 22:27:38,913 [INFO] copying src/executorch/backends/apple/coreml/recipes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/recipes 2025-12-05T22:27:38.9417360Z 2025-12-05 22:27:38,913 [INFO] copying src/executorch/backends/apple/coreml/recipes/coreml_recipe_provider.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/recipes 2025-12-05T22:27:38.9419130Z 2025-12-05 22:27:38,914 [INFO] copying src/executorch/backends/apple/coreml/recipes/coreml_recipe_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/recipes 2025-12-05T22:27:38.9420303Z 2025-12-05 22:27:38,915 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-12-05T22:27:38.9421493Z 2025-12-05 22:27:38,915 [INFO] 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-12-05T22:27:38.9423035Z 2025-12-05 22:27:38,916 [INFO] 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-12-05T22:27:38.9424648Z 2025-12-05 22:27:38,917 [INFO] copying src/executorch/backends/apple/coreml/test/test_coreml_recipes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-12-05T22:27:38.9426106Z 2025-12-05 22:27:38,918 [INFO] copying src/executorch/backends/apple/coreml/test/test_coreml_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-12-05T22:27:38.9427576Z 2025-12-05 22:27:38,918 [INFO] copying src/executorch/backends/apple/coreml/test/test_enumerated_shapes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-12-05T22:27:38.9429231Z 2025-12-05 22:27:38,919 [INFO] copying src/executorch/backends/apple/coreml/test/test_torch_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-12-05T22:27:38.9430710Z 2025-12-05 22:27:38,920 [INFO] copying src/executorch/backends/apple/coreml/test/tester.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-12-05T22:27:38.9431852Z 2025-12-05 22:27:38,921 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/runtime/test 2025-12-05T22:27:38.9433306Z 2025-12-05 22:27:38,921 [INFO] 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-12-05T22:27:38.9434687Z 2025-12-05 22:27:38,922 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/metal/tests 2025-12-05T22:27:38.9435772Z 2025-12-05 22:27:38,923 [INFO] copying src/executorch/backends/apple/metal/tests/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/metal/tests 2025-12-05T22:27:38.9437178Z 2025-12-05 22:27:38,923 [INFO] copying src/executorch/backends/apple/metal/tests/test_metal_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/metal/tests 2025-12-05T22:27:38.9438669Z 2025-12-05 22:27:38,924 [INFO] copying src/executorch/backends/apple/metal/tests/test_metal_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/metal/tests 2025-12-05T22:27:38.9439825Z 2025-12-05 22:27:38,925 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9440942Z 2025-12-05 22:27:38,925 [INFO] copying src/executorch/backends/apple/mps/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9442426Z 2025-12-05 22:27:38,926 [INFO] copying src/executorch/backends/apple/mps/operators/activation_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9443996Z 2025-12-05 22:27:38,927 [INFO] copying src/executorch/backends/apple/mps/operators/binary_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9445553Z 2025-12-05 22:27:38,928 [INFO] copying src/executorch/backends/apple/mps/operators/clamp_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9446998Z 2025-12-05 22:27:38,928 [INFO] copying src/executorch/backends/apple/mps/operators/constant_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9448462Z 2025-12-05 22:27:38,929 [INFO] copying src/executorch/backends/apple/mps/operators/convolution_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9449992Z 2025-12-05 22:27:38,930 [INFO] copying src/executorch/backends/apple/mps/operators/indexing_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9451478Z 2025-12-05 22:27:38,931 [INFO] 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-12-05T22:27:38.9453074Z 2025-12-05 22:27:38,931 [INFO] copying src/executorch/backends/apple/mps/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9454717Z 2025-12-05 22:27:38,932 [INFO] copying src/executorch/backends/apple/mps/operators/normalization_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9456169Z 2025-12-05 22:27:38,933 [INFO] copying src/executorch/backends/apple/mps/operators/op_clone.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9457635Z 2025-12-05 22:27:38,934 [INFO] copying src/executorch/backends/apple/mps/operators/op_getitem.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9459077Z 2025-12-05 22:27:38,935 [INFO] 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-12-05T22:27:38.9460515Z 2025-12-05 22:27:38,935 [INFO] 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-12-05T22:27:38.9461901Z 2025-12-05 22:27:38,936 [INFO] copying src/executorch/backends/apple/mps/operators/pad_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9463314Z 2025-12-05 22:27:38,937 [INFO] copying src/executorch/backends/apple/mps/operators/pooling_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9464744Z 2025-12-05 22:27:38,938 [INFO] copying src/executorch/backends/apple/mps/operators/range_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9466148Z 2025-12-05 22:27:38,938 [INFO] copying src/executorch/backends/apple/mps/operators/reduce_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9772315Z 2025-12-05 22:27:38,939 [INFO] copying src/executorch/backends/apple/mps/operators/shape_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9773765Z 2025-12-05 22:27:38,940 [INFO] copying src/executorch/backends/apple/mps/operators/unary_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-12-05T22:27:38.9774881Z 2025-12-05 22:27:38,941 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-12-05T22:27:38.9776025Z 2025-12-05 22:27:38,941 [INFO] copying src/executorch/backends/apple/mps/partition/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-12-05T22:27:38.9777687Z 2025-12-05 22:27:38,942 [INFO] copying src/executorch/backends/apple/mps/partition/mps_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-12-05T22:27:38.9779066Z 2025-12-05 22:27:38,943 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-12-05T22:27:38.9780298Z 2025-12-05 22:27:38,943 [INFO] 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-12-05T22:27:38.9781880Z 2025-12-05 22:27:38,944 [INFO] 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-12-05T22:27:38.9783072Z 2025-12-05 22:27:38,944 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-12-05T22:27:38.9784122Z 2025-12-05 22:27:38,945 [INFO] copying src/executorch/backends/apple/mps/test/test_mps.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-12-05T22:27:38.9785506Z 2025-12-05 22:27:38,946 [INFO] 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-12-05T22:27:38.9787040Z 2025-12-05 22:27:38,947 [INFO] 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-12-05T22:27:38.9788502Z 2025-12-05 22:27:38,948 [INFO] 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-12-05T22:27:38.9789977Z 2025-12-05 22:27:38,949 [INFO] 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-12-05T22:27:38.9791348Z 2025-12-05 22:27:38,950 [INFO] 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-12-05T22:27:38.9792716Z 2025-12-05 22:27:38,950 [INFO] 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-12-05T22:27:38.9793995Z 2025-12-05 22:27:38,951 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-12-05T22:27:38.9795066Z 2025-12-05 22:27:38,951 [INFO] copying src/executorch/backends/apple/mps/utils/mps_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-12-05T22:27:38.9796444Z 2025-12-05 22:27:38,952 [INFO] copying src/executorch/backends/apple/mps/utils/quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-12-05T22:27:38.9797499Z 2025-12-05 22:27:38,954 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9798479Z 2025-12-05 22:27:38,954 [INFO] copying src/executorch/backends/arm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9799693Z 2025-12-05 22:27:38,955 [INFO] copying src/executorch/backends/arm/_passes/_debug_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9801050Z 2025-12-05 22:27:38,956 [INFO] copying src/executorch/backends/arm/_passes/annotate_decomposed_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9802580Z 2025-12-05 22:27:38,956 [INFO] copying src/executorch/backends/arm/_passes/annotate_output_dim_order_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9803881Z 2025-12-05 22:27:38,957 [INFO] copying src/executorch/backends/arm/_passes/arm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9805099Z 2025-12-05 22:27:38,958 [INFO] copying src/executorch/backends/arm/_passes/arm_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9806432Z 2025-12-05 22:27:38,959 [INFO] copying src/executorch/backends/arm/_passes/arm_pass_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9807698Z 2025-12-05 22:27:38,960 [INFO] copying src/executorch/backends/arm/_passes/broadcast_args_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9809185Z 2025-12-05 22:27:38,961 [INFO] copying src/executorch/backends/arm/_passes/cast_int64_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9810456Z 2025-12-05 22:27:38,961 [INFO] copying src/executorch/backends/arm/_passes/cast_to_int32_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9811743Z 2025-12-05 22:27:38,962 [INFO] copying src/executorch/backends/arm/_passes/conv1d_unsqueeze_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9813060Z 2025-12-05 22:27:38,963 [INFO] copying src/executorch/backends/arm/_passes/convert_elu_params.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9814394Z 2025-12-05 22:27:38,964 [INFO] 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-12-05T22:27:38.9815819Z 2025-12-05 22:27:38,964 [INFO] 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-12-05T22:27:38.9817432Z 2025-12-05 22:27:38,965 [INFO] copying src/executorch/backends/arm/_passes/convert_int64_const_ops_to_int32.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9819052Z 2025-12-05 22:27:38,966 [INFO] copying src/executorch/backends/arm/_passes/convert_int64_output_ops_to_int32.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9820404Z 2025-12-05 22:27:38,967 [INFO] copying src/executorch/backends/arm/_passes/convert_minmax_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9821786Z 2025-12-05 22:27:38,968 [INFO] copying src/executorch/backends/arm/_passes/convert_permute_singleton_to_view_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9823184Z 2025-12-05 22:27:38,968 [INFO] copying src/executorch/backends/arm/_passes/convert_split_to_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9824698Z 2025-12-05 22:27:38,969 [INFO] copying src/executorch/backends/arm/_passes/convert_squeezes_to_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9826030Z 2025-12-05 22:27:38,970 [INFO] copying src/executorch/backends/arm/_passes/convert_to_clamp_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9827347Z 2025-12-05 22:27:38,971 [INFO] copying src/executorch/backends/arm/_passes/decompose_acosh_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9828785Z 2025-12-05 22:27:38,972 [INFO] copying src/executorch/backends/arm/_passes/decompose_adaptive_avg_pool2d_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9830192Z 2025-12-05 22:27:38,972 [INFO] copying src/executorch/backends/arm/_passes/decompose_add_sub_alpha_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9831592Z 2025-12-05 22:27:38,973 [INFO] copying src/executorch/backends/arm/_passes/decompose_addmm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9833014Z 2025-12-05 22:27:38,974 [INFO] copying src/executorch/backends/arm/_passes/decompose_any_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9834484Z 2025-12-05 22:27:38,975 [INFO] copying src/executorch/backends/arm/_passes/decompose_asin_and_acos_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:38.9835813Z 2025-12-05 22:27:38,976 [INFO] copying src/executorch/backends/arm/_passes/decompose_asinh_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0135820Z 2025-12-05 22:27:38,976 [INFO] copying src/executorch/backends/arm/_passes/decompose_atan_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0137222Z 2025-12-05 22:27:38,977 [INFO] copying src/executorch/backends/arm/_passes/decompose_atanh_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0138564Z 2025-12-05 22:27:38,978 [INFO] copying src/executorch/backends/arm/_passes/decompose_avg_pool2d_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0139925Z 2025-12-05 22:27:38,979 [INFO] copying src/executorch/backends/arm/_passes/decompose_batch_norm_no_stats.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0141314Z 2025-12-05 22:27:38,979 [INFO] copying src/executorch/backends/arm/_passes/decompose_cosh_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0142871Z 2025-12-05 22:27:38,980 [INFO] copying src/executorch/backends/arm/_passes/decompose_cosine_similarity_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0144441Z 2025-12-05 22:27:38,981 [INFO] copying src/executorch/backends/arm/_passes/decompose_cumsum_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0145753Z 2025-12-05 22:27:38,982 [INFO] copying src/executorch/backends/arm/_passes/decompose_div_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0147078Z 2025-12-05 22:27:38,982 [INFO] copying src/executorch/backends/arm/_passes/decompose_div_tensor_mode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0148383Z 2025-12-05 22:27:38,983 [INFO] copying src/executorch/backends/arm/_passes/decompose_elu_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0149988Z 2025-12-05 22:27:38,984 [INFO] copying src/executorch/backends/arm/_passes/decompose_embedding_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0151315Z 2025-12-05 22:27:38,985 [INFO] copying src/executorch/backends/arm/_passes/decompose_expm1_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0152661Z 2025-12-05 22:27:38,985 [INFO] copying src/executorch/backends/arm/_passes/decompose_floor_divide_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0162636Z 2025-12-05 22:27:38,986 [INFO] copying src/executorch/backends/arm/_passes/decompose_gelu_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0164197Z 2025-12-05 22:27:38,987 [INFO] copying src/executorch/backends/arm/_passes/decompose_glu_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0165608Z 2025-12-05 22:27:38,988 [INFO] copying src/executorch/backends/arm/_passes/decompose_grouped_conv_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0167002Z 2025-12-05 22:27:38,989 [INFO] copying src/executorch/backends/arm/_passes/decompose_groupnorm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0168632Z 2025-12-05 22:27:38,989 [INFO] copying src/executorch/backends/arm/_passes/decompose_int16_activation_conv2d_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0170041Z 2025-12-05 22:27:38,990 [INFO] copying src/executorch/backends/arm/_passes/decompose_int32_clamp_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0171444Z 2025-12-05 22:27:38,991 [INFO] copying src/executorch/backends/arm/_passes/decompose_int_pow_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0172907Z 2025-12-05 22:27:38,992 [INFO] copying src/executorch/backends/arm/_passes/decompose_layernorm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0174249Z 2025-12-05 22:27:38,993 [INFO] copying src/executorch/backends/arm/_passes/decompose_leaky_relu_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0175645Z 2025-12-05 22:27:38,993 [INFO] 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-12-05T22:27:39.0177026Z 2025-12-05 22:27:38,994 [INFO] copying src/executorch/backends/arm/_passes/decompose_linear_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0178331Z 2025-12-05 22:27:38,995 [INFO] copying src/executorch/backends/arm/_passes/decompose_logit_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0179797Z 2025-12-05 22:27:38,996 [INFO] copying src/executorch/backends/arm/_passes/decompose_masked_fill_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0181290Z 2025-12-05 22:27:38,997 [INFO] copying src/executorch/backends/arm/_passes/decompose_maxpool2d_with_dilation_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0182695Z 2025-12-05 22:27:38,997 [INFO] copying src/executorch/backends/arm/_passes/decompose_meandim_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0184004Z 2025-12-05 22:27:38,998 [INFO] copying src/executorch/backends/arm/_passes/decompose_ne_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0185297Z 2025-12-05 22:27:38,999 [INFO] copying src/executorch/backends/arm/_passes/decompose_quant_nodes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0186641Z 2025-12-05 22:27:39,000 [INFO] copying src/executorch/backends/arm/_passes/decompose_remainder_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0188017Z 2025-12-05 22:27:39,000 [INFO] copying src/executorch/backends/arm/_passes/decompose_round_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0189570Z 2025-12-05 22:27:39,001 [INFO] copying src/executorch/backends/arm/_passes/decompose_sdpa_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0190873Z 2025-12-05 22:27:39,002 [INFO] copying src/executorch/backends/arm/_passes/decompose_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0192211Z 2025-12-05 22:27:39,003 [INFO] copying src/executorch/backends/arm/_passes/decompose_select_scatter_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0193552Z 2025-12-05 22:27:39,004 [INFO] copying src/executorch/backends/arm/_passes/decompose_sign_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0194866Z 2025-12-05 22:27:39,004 [INFO] copying src/executorch/backends/arm/_passes/decompose_silu_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0196286Z 2025-12-05 22:27:39,005 [INFO] copying src/executorch/backends/arm/_passes/decompose_sinh_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0197772Z 2025-12-05 22:27:39,006 [INFO] copying src/executorch/backends/arm/_passes/decompose_softmax_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0199147Z 2025-12-05 22:27:39,007 [INFO] copying src/executorch/backends/arm/_passes/decompose_softmax_unstable_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0200507Z 2025-12-05 22:27:39,008 [INFO] copying src/executorch/backends/arm/_passes/decompose_sqrt_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0201796Z 2025-12-05 22:27:39,009 [INFO] copying src/executorch/backends/arm/_passes/decompose_sum_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0203088Z 2025-12-05 22:27:39,009 [INFO] copying src/executorch/backends/arm/_passes/decompose_var_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0204638Z 2025-12-05 22:27:39,010 [INFO] copying src/executorch/backends/arm/_passes/decorate_fp32_to_int32_casting_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0206051Z 2025-12-05 22:27:39,011 [INFO] 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-12-05T22:27:39.0207421Z 2025-12-05 22:27:39,012 [INFO] copying src/executorch/backends/arm/_passes/fuse_batch_norm2d_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0500293Z 2025-12-05 22:27:39,013 [INFO] copying src/executorch/backends/arm/_passes/fuse_constant_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0501671Z 2025-12-05 22:27:39,013 [INFO] copying src/executorch/backends/arm/_passes/fuse_duplicate_users_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0503040Z 2025-12-05 22:27:39,014 [INFO] copying src/executorch/backends/arm/_passes/fuse_equal_placeholders_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0504416Z 2025-12-05 22:27:39,015 [INFO] copying src/executorch/backends/arm/_passes/fuse_quantized_activation_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0506003Z 2025-12-05 22:27:39,016 [INFO] copying src/executorch/backends/arm/_passes/fuse_view_copy_transform_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0507617Z 2025-12-05 22:27:39,016 [INFO] copying src/executorch/backends/arm/_passes/insert_int32_casts_after_int64_placeholders.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0509134Z 2025-12-05 22:27:39,017 [INFO] copying src/executorch/backends/arm/_passes/insert_rescales_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0510416Z 2025-12-05 22:27:39,018 [INFO] copying src/executorch/backends/arm/_passes/insert_table_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0511702Z 2025-12-05 22:27:39,019 [INFO] copying src/executorch/backends/arm/_passes/match_arg_dtype_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0513003Z 2025-12-05 22:27:39,020 [INFO] copying src/executorch/backends/arm/_passes/match_arg_ranks_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0514542Z 2025-12-05 22:27:39,021 [INFO] copying src/executorch/backends/arm/_passes/mm_to_bmm_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0516116Z 2025-12-05 22:27:39,021 [INFO] copying src/executorch/backends/arm/_passes/promote_bool_operands_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0517415Z 2025-12-05 22:27:39,022 [INFO] copying src/executorch/backends/arm/_passes/quant_args.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0518833Z 2025-12-05 22:27:39,023 [INFO] copying src/executorch/backends/arm/_passes/remove_getitem_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0520175Z 2025-12-05 22:27:39,024 [INFO] copying src/executorch/backends/arm/_passes/remove_graph_asserts_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0521486Z 2025-12-05 22:27:39,024 [INFO] copying src/executorch/backends/arm/_passes/remove_noop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0522934Z 2025-12-05 22:27:39,025 [INFO] copying src/executorch/backends/arm/_passes/replace_inf_and_limit_values_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0524390Z 2025-12-05 22:27:39,026 [INFO] 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-12-05T22:27:39.0525722Z 2025-12-05 22:27:39,027 [INFO] copying src/executorch/backends/arm/_passes/rewrite_conv2d_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0527004Z 2025-12-05 22:27:39,028 [INFO] copying src/executorch/backends/arm/_passes/rewrite_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0528389Z 2025-12-05 22:27:39,028 [INFO] copying src/executorch/backends/arm/_passes/rewrite_upsample.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0529696Z 2025-12-05 22:27:39,029 [INFO] copying src/executorch/backends/arm/_passes/scalars_to_attribute_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0531206Z 2025-12-05 22:27:39,030 [INFO] copying src/executorch/backends/arm/_passes/size_adjust_input_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0532535Z 2025-12-05 22:27:39,031 [INFO] copying src/executorch/backends/arm/_passes/to_tosa_memory_format_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0533885Z 2025-12-05 22:27:39,031 [INFO] copying src/executorch/backends/arm/_passes/unsqueeze_before_repeat_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0535312Z 2025-12-05 22:27:39,032 [INFO] copying src/executorch/backends/arm/_passes/unsqueeze_scalar_placeholders_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-12-05T22:27:39.0536418Z 2025-12-05 22:27:39,033 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/common 2025-12-05T22:27:39.0537398Z 2025-12-05 22:27:39,033 [INFO] copying src/executorch/backends/arm/common/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/common 2025-12-05T22:27:39.0538653Z 2025-12-05 22:27:39,034 [INFO] copying src/executorch/backends/arm/common/annotation_meta.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/common 2025-12-05T22:27:39.0540083Z 2025-12-05 22:27:39,035 [INFO] copying src/executorch/backends/arm/common/arm_compile_spec.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/common 2025-12-05T22:27:39.0541322Z 2025-12-05 22:27:39,036 [INFO] copying src/executorch/backends/arm/common/debug.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/common 2025-12-05T22:27:39.0542517Z 2025-12-05 22:27:39,037 [INFO] copying src/executorch/backends/arm/common/type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/common 2025-12-05T22:27:39.0543581Z 2025-12-05 22:27:39,037 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/debug 2025-12-05T22:27:39.0544554Z 2025-12-05 22:27:39,038 [INFO] copying src/executorch/backends/arm/debug/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/debug 2025-12-05T22:27:39.0545736Z 2025-12-05 22:27:39,038 [INFO] copying src/executorch/backends/arm/debug/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/debug 2025-12-05T22:27:39.0546838Z 2025-12-05 22:27:39,039 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/ethosu 2025-12-05T22:27:39.0547844Z 2025-12-05 22:27:39,039 [INFO] copying src/executorch/backends/arm/ethosu/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/ethosu 2025-12-05T22:27:39.0549123Z 2025-12-05 22:27:39,040 [INFO] copying src/executorch/backends/arm/ethosu/backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/ethosu 2025-12-05T22:27:39.0550359Z 2025-12-05 22:27:39,041 [INFO] copying src/executorch/backends/arm/ethosu/compile_spec.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/ethosu 2025-12-05T22:27:39.0551634Z 2025-12-05 22:27:39,042 [INFO] copying src/executorch/backends/arm/ethosu/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/ethosu 2025-12-05T22:27:39.0552684Z 2025-12-05 22:27:39,043 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-12-05T22:27:39.0553804Z 2025-12-05 22:27:39,043 [INFO] copying src/executorch/backends/arm/operator_support/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-12-05T22:27:39.0555482Z 2025-12-05 22:27:39,044 [INFO] copying src/executorch/backends/arm/operator_support/clone_dim_order_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-12-05T22:27:39.0556996Z 2025-12-05 22:27:39,045 [INFO] copying src/executorch/backends/arm/operator_support/control_flow_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-12-05T22:27:39.0558514Z 2025-12-05 22:27:39,046 [INFO] copying src/executorch/backends/arm/operator_support/convolution_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-12-05T22:27:39.0560030Z 2025-12-05 22:27:39,046 [INFO] copying src/executorch/backends/arm/operator_support/embedding_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-12-05T22:27:39.0561514Z 2025-12-05 22:27:39,047 [INFO] 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-12-05T22:27:39.0563179Z 2025-12-05 22:27:39,048 [INFO] copying src/executorch/backends/arm/operator_support/index_select_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-12-05T22:27:39.0879840Z 2025-12-05 22:27:39,049 [INFO] copying src/executorch/backends/arm/operator_support/index_tensor_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-12-05T22:27:39.0881378Z 2025-12-05 22:27:39,050 [INFO] copying src/executorch/backends/arm/operator_support/minmax_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-12-05T22:27:39.0882848Z 2025-12-05 22:27:39,051 [INFO] 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-12-05T22:27:39.0884337Z 2025-12-05 22:27:39,052 [INFO] 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-12-05T22:27:39.0886110Z 2025-12-05 22:27:39,052 [INFO] 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-12-05T22:27:39.0887851Z 2025-12-05 22:27:39,053 [INFO] 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-12-05T22:27:39.0889373Z 2025-12-05 22:27:39,054 [INFO] copying src/executorch/backends/arm/operator_support/to_dim_order_copy_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-12-05T22:27:39.0890931Z 2025-12-05 22:27:39,055 [INFO] copying src/executorch/backends/arm/operator_support/tosa_profile_supported_op_lists.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-12-05T22:27:39.0892523Z 2025-12-05 22:27:39,056 [INFO] 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-12-05T22:27:39.0894216Z 2025-12-05 22:27:39,056 [INFO] copying src/executorch/backends/arm/operator_support/where_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-12-05T22:27:39.0895332Z 2025-12-05 22:27:39,058 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0896369Z 2025-12-05 22:27:39,058 [INFO] copying src/executorch/backends/arm/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0897675Z 2025-12-05 22:27:39,059 [INFO] copying src/executorch/backends/arm/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0899068Z 2025-12-05 22:27:39,060 [INFO] copying src/executorch/backends/arm/operators/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0900332Z 2025-12-05 22:27:39,060 [INFO] copying src/executorch/backends/arm/operators/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0901885Z 2025-12-05 22:27:39,061 [INFO] copying src/executorch/backends/arm/operators/op_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0903186Z 2025-12-05 22:27:39,062 [INFO] copying src/executorch/backends/arm/operators/op_amin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0904448Z 2025-12-05 22:27:39,063 [INFO] copying src/executorch/backends/arm/operators/op_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0905728Z 2025-12-05 22:27:39,063 [INFO] copying src/executorch/backends/arm/operators/op_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0907050Z 2025-12-05 22:27:39,064 [INFO] copying src/executorch/backends/arm/operators/op_bitwise_not.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0908345Z 2025-12-05 22:27:39,065 [INFO] copying src/executorch/backends/arm/operators/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0909868Z 2025-12-05 22:27:39,066 [INFO] copying src/executorch/backends/arm/operators/op_ceil.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0911156Z 2025-12-05 22:27:39,067 [INFO] copying src/executorch/backends/arm/operators/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0912444Z 2025-12-05 22:27:39,067 [INFO] copying src/executorch/backends/arm/operators/op_cond_if.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0913761Z 2025-12-05 22:27:39,068 [INFO] copying src/executorch/backends/arm/operators/op_constant_pad_nd.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0915170Z 2025-12-05 22:27:39,069 [INFO] copying src/executorch/backends/arm/operators/op_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0916428Z 2025-12-05 22:27:39,070 [INFO] copying src/executorch/backends/arm/operators/op_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0917986Z 2025-12-05 22:27:39,070 [INFO] copying src/executorch/backends/arm/operators/op_erf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0919418Z 2025-12-05 22:27:39,071 [INFO] copying src/executorch/backends/arm/operators/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0920700Z 2025-12-05 22:27:39,072 [INFO] copying src/executorch/backends/arm/operators/op_floor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0921950Z 2025-12-05 22:27:39,073 [INFO] copying src/executorch/backends/arm/operators/op_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0923214Z 2025-12-05 22:27:39,074 [INFO] copying src/executorch/backends/arm/operators/op_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0924539Z 2025-12-05 22:27:39,074 [INFO] copying src/executorch/backends/arm/operators/op_index_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0925986Z 2025-12-05 22:27:39,075 [INFO] copying src/executorch/backends/arm/operators/op_index_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0927481Z 2025-12-05 22:27:39,076 [INFO] copying src/executorch/backends/arm/operators/op_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0928718Z 2025-12-05 22:27:39,077 [INFO] copying src/executorch/backends/arm/operators/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0930016Z 2025-12-05 22:27:39,078 [INFO] copying src/executorch/backends/arm/operators/op_logical_not.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0931315Z 2025-12-05 22:27:39,079 [INFO] copying src/executorch/backends/arm/operators/op_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0932629Z 2025-12-05 22:27:39,079 [INFO] copying src/executorch/backends/arm/operators/op_max_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0934177Z 2025-12-05 22:27:39,080 [INFO] copying src/executorch/backends/arm/operators/op_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0935478Z 2025-12-05 22:27:39,081 [INFO] copying src/executorch/backends/arm/operators/op_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0936751Z 2025-12-05 22:27:39,082 [INFO] copying src/executorch/backends/arm/operators/op_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0938002Z 2025-12-05 22:27:39,082 [INFO] copying src/executorch/backends/arm/operators/op_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0939278Z 2025-12-05 22:27:39,083 [INFO] copying src/executorch/backends/arm/operators/op_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0940584Z 2025-12-05 22:27:39,084 [INFO] copying src/executorch/backends/arm/operators/op_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0941980Z 2025-12-05 22:27:39,085 [INFO] copying src/executorch/backends/arm/operators/op_reciprocal.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0943458Z 2025-12-05 22:27:39,085 [INFO] copying src/executorch/backends/arm/operators/op_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.0944786Z 2025-12-05 22:27:39,086 [INFO] copying src/executorch/backends/arm/operators/op_rshift_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1262867Z 2025-12-05 22:27:39,087 [INFO] copying src/executorch/backends/arm/operators/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1264199Z 2025-12-05 22:27:39,088 [INFO] copying src/executorch/backends/arm/operators/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1265483Z 2025-12-05 22:27:39,089 [INFO] copying src/executorch/backends/arm/operators/op_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1266751Z 2025-12-05 22:27:39,089 [INFO] copying src/executorch/backends/arm/operators/op_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1268021Z 2025-12-05 22:27:39,090 [INFO] copying src/executorch/backends/arm/operators/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1269344Z 2025-12-05 22:27:39,091 [INFO] copying src/executorch/backends/arm/operators/op_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1270805Z 2025-12-05 22:27:39,092 [INFO] copying src/executorch/backends/arm/operators/op_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1272572Z 2025-12-05 22:27:39,093 [INFO] 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-12-05T22:27:39.1273991Z 2025-12-05 22:27:39,093 [INFO] copying src/executorch/backends/arm/operators/op_tosa_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1275393Z 2025-12-05 22:27:39,094 [INFO] copying src/executorch/backends/arm/operators/op_tosa_depthwise_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1276761Z 2025-12-05 22:27:39,095 [INFO] copying src/executorch/backends/arm/operators/op_tosa_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1278097Z 2025-12-05 22:27:39,096 [INFO] copying src/executorch/backends/arm/operators/op_tosa_rescale.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1279685Z 2025-12-05 22:27:39,097 [INFO] copying src/executorch/backends/arm/operators/op_tosa_resize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1281068Z 2025-12-05 22:27:39,097 [INFO] copying src/executorch/backends/arm/operators/op_tosa_table.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1282415Z 2025-12-05 22:27:39,098 [INFO] copying src/executorch/backends/arm/operators/op_tosa_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1283733Z 2025-12-05 22:27:39,099 [INFO] copying src/executorch/backends/arm/operators/op_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1284995Z 2025-12-05 22:27:39,100 [INFO] copying src/executorch/backends/arm/operators/op_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1286448Z 2025-12-05 22:27:39,101 [INFO] copying src/executorch/backends/arm/operators/op_while.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1287879Z 2025-12-05 22:27:39,101 [INFO] copying src/executorch/backends/arm/operators/operator_validation_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1289391Z 2025-12-05 22:27:39,102 [INFO] copying src/executorch/backends/arm/operators/ops_binary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1290713Z 2025-12-05 22:27:39,103 [INFO] copying src/executorch/backends/arm/operators/ops_identity.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-12-05T22:27:39.1291751Z 2025-12-05 22:27:39,104 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-12-05T22:27:39.1292773Z 2025-12-05 22:27:39,104 [INFO] copying src/executorch/backends/arm/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-12-05T22:27:39.1294325Z 2025-12-05 22:27:39,105 [INFO] copying src/executorch/backends/arm/quantizer/arm_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-12-05T22:27:39.1295776Z 2025-12-05 22:27:39,106 [INFO] copying src/executorch/backends/arm/quantizer/arm_quantizer_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-12-05T22:27:39.1297194Z 2025-12-05 22:27:39,107 [INFO] copying src/executorch/backends/arm/quantizer/quantization_annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-12-05T22:27:39.1298626Z 2025-12-05 22:27:39,108 [INFO] copying src/executorch/backends/arm/quantizer/quantization_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-12-05T22:27:39.1299705Z 2025-12-05 22:27:39,109 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/scripts 2025-12-05T22:27:39.1300859Z 2025-12-05 22:27:39,109 [INFO] copying src/executorch/backends/arm/scripts/parse_test_names.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/scripts 2025-12-05T22:27:39.1302068Z 2025-12-05 22:27:39,110 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-12-05T22:27:39.1303100Z 2025-12-05 22:27:39,110 [INFO] copying src/executorch/backends/arm/test/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-12-05T22:27:39.1304289Z 2025-12-05 22:27:39,111 [INFO] copying src/executorch/backends/arm/test/conftest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-12-05T22:27:39.1305480Z 2025-12-05 22:27:39,112 [INFO] copying src/executorch/backends/arm/test/runner_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-12-05T22:27:39.1306754Z 2025-12-05 22:27:39,112 [INFO] copying src/executorch/backends/arm/test/test_memory_allocator_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-12-05T22:27:39.1308012Z 2025-12-05 22:27:39,113 [INFO] copying src/executorch/backends/arm/test/test_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-12-05T22:27:39.1309074Z 2025-12-05 22:27:39,114 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa 2025-12-05T22:27:39.1310210Z 2025-12-05 22:27:39,114 [INFO] copying src/executorch/backends/arm/tosa/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa 2025-12-05T22:27:39.1311447Z 2025-12-05 22:27:39,115 [INFO] copying src/executorch/backends/arm/tosa/backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa 2025-12-05T22:27:39.1312636Z 2025-12-05 22:27:39,116 [INFO] copying src/executorch/backends/arm/tosa/compile_spec.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa 2025-12-05T22:27:39.1313838Z 2025-12-05 22:27:39,117 [INFO] copying src/executorch/backends/arm/tosa/mapping.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa 2025-12-05T22:27:39.1315048Z 2025-12-05 22:27:39,118 [INFO] copying src/executorch/backends/arm/tosa/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa 2025-12-05T22:27:39.1316398Z 2025-12-05 22:27:39,118 [INFO] copying src/executorch/backends/arm/tosa/specification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa 2025-12-05T22:27:39.1317616Z 2025-12-05 22:27:39,119 [INFO] copying src/executorch/backends/arm/tosa/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa 2025-12-05T22:27:39.1318827Z 2025-12-05 22:27:39,120 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util 2025-12-05T22:27:39.1319797Z 2025-12-05 22:27:39,120 [INFO] copying src/executorch/backends/arm/util/_factory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util 2025-12-05T22:27:39.1321031Z 2025-12-05 22:27:39,121 [INFO] copying src/executorch/backends/arm/util/arm_model_evaluator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util 2025-12-05T22:27:39.1322027Z 2025-12-05 22:27:39,122 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf 2025-12-05T22:27:39.1322976Z 2025-12-05 22:27:39,122 [INFO] copying src/executorch/backends/arm/vgf/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf 2025-12-05T22:27:39.1324119Z 2025-12-05 22:27:39,123 [INFO] copying src/executorch/backends/arm/vgf/backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf 2025-12-05T22:27:39.1325284Z 2025-12-05 22:27:39,124 [INFO] copying src/executorch/backends/arm/vgf/compile_spec.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf 2025-12-05T22:27:39.1326599Z 2025-12-05 22:27:39,124 [INFO] copying src/executorch/backends/arm/vgf/model_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf 2025-12-05T22:27:39.1628645Z 2025-12-05 22:27:39,125 [INFO] copying src/executorch/backends/arm/vgf/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf 2025-12-05T22:27:39.1629680Z 2025-12-05 22:27:39,126 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1630806Z 2025-12-05 22:27:39,126 [INFO] 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-12-05T22:27:39.1632219Z 2025-12-05 22:27:39,127 [INFO] copying src/executorch/backends/arm/test/misc/test_call_operator_submodule.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1633630Z 2025-12-05 22:27:39,128 [INFO] copying src/executorch/backends/arm/test/misc/test_compile_spec.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1635083Z 2025-12-05 22:27:39,129 [INFO] copying src/executorch/backends/arm/test/misc/test_conv_relu_residual_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1636614Z 2025-12-05 22:27:39,129 [INFO] 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-12-05T22:27:39.1637968Z 2025-12-05 22:27:39,130 [INFO] 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-12-05T22:27:39.1639300Z 2025-12-05 22:27:39,131 [INFO] copying src/executorch/backends/arm/test/misc/test_debug_hook.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1640616Z 2025-12-05 22:27:39,132 [INFO] copying src/executorch/backends/arm/test/misc/test_dim_order.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1642021Z 2025-12-05 22:27:39,133 [INFO] copying src/executorch/backends/arm/test/misc/test_dw_convs_with_shared_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1643593Z 2025-12-05 22:27:39,133 [INFO] copying src/executorch/backends/arm/test/misc/test_extract_io_params_tosa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1645158Z 2025-12-05 22:27:39,134 [INFO] copying src/executorch/backends/arm/test/misc/test_int64.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1646494Z 2025-12-05 22:27:39,135 [INFO] 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-12-05T22:27:39.1647875Z 2025-12-05 22:27:39,136 [INFO] 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-12-05T22:27:39.1649263Z 2025-12-05 22:27:39,137 [INFO] 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-12-05T22:27:39.1650778Z 2025-12-05 22:27:39,137 [INFO] 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-12-05T22:27:39.1652259Z 2025-12-05 22:27:39,138 [INFO] 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-12-05T22:27:39.1653656Z 2025-12-05 22:27:39,139 [INFO] copying src/executorch/backends/arm/test/misc/test_outputs_order.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1655129Z 2025-12-05 22:27:39,140 [INFO] 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-12-05T22:27:39.1656733Z 2025-12-05 22:27:39,141 [INFO] copying src/executorch/backends/arm/test/misc/test_pass_required_order.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1658215Z 2025-12-05 22:27:39,142 [INFO] copying src/executorch/backends/arm/test/misc/test_qat_training_loop.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1659677Z 2025-12-05 22:27:39,143 [INFO] copying src/executorch/backends/arm/test/misc/test_quant_custom_meta.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1661083Z 2025-12-05 22:27:39,143 [INFO] copying src/executorch/backends/arm/test/misc/test_save_exported_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1662486Z 2025-12-05 22:27:39,144 [INFO] copying src/executorch/backends/arm/test/misc/test_tosa_dialect_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1663918Z 2025-12-05 22:27:39,145 [INFO] copying src/executorch/backends/arm/test/misc/test_tosa_dialect_dw_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-12-05T22:27:39.1665339Z 2025-12-05 22:27:39,146 [INFO] 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-12-05T22:27:39.1666445Z 2025-12-05 22:27:39,147 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-12-05T22:27:39.1667600Z 2025-12-05 22:27:39,147 [INFO] copying src/executorch/backends/arm/test/models/test_conformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-12-05T22:27:39.1669061Z 2025-12-05 22:27:39,148 [INFO] 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-12-05T22:27:39.1670430Z 2025-12-05 22:27:39,149 [INFO] 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-12-05T22:27:39.1671823Z 2025-12-05 22:27:39,149 [INFO] copying src/executorch/backends/arm/test/models/test_inception_v3_arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-12-05T22:27:39.1673316Z 2025-12-05 22:27:39,150 [INFO] copying src/executorch/backends/arm/test/models/test_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-12-05T22:27:39.1674767Z 2025-12-05 22:27:39,151 [INFO] 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-12-05T22:27:39.1676163Z 2025-12-05 22:27:39,152 [INFO] 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-12-05T22:27:39.1677572Z 2025-12-05 22:27:39,152 [INFO] 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-12-05T22:27:39.1678996Z 2025-12-05 22:27:39,153 [INFO] 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-12-05T22:27:39.1680402Z 2025-12-05 22:27:39,154 [INFO] 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-12-05T22:27:39.1681830Z 2025-12-05 22:27:39,155 [INFO] copying src/executorch/backends/arm/test/models/test_nss.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-12-05T22:27:39.1683228Z 2025-12-05 22:27:39,155 [INFO] copying src/executorch/backends/arm/test/models/test_resnet18.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-12-05T22:27:39.1684711Z 2025-12-05 22:27:39,156 [INFO] 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-12-05T22:27:39.1686165Z 2025-12-05 22:27:39,157 [INFO] 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-12-05T22:27:39.1687229Z 2025-12-05 22:27:39,159 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.1688300Z 2025-12-05 22:27:39,159 [INFO] copying src/executorch/backends/arm/test/ops/test_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.1689637Z 2025-12-05 22:27:39,159 [INFO] copying src/executorch/backends/arm/test/ops/test_acos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.1690922Z 2025-12-05 22:27:39,160 [INFO] copying src/executorch/backends/arm/test/ops/test_acosh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.1692255Z 2025-12-05 22:27:39,161 [INFO] copying src/executorch/backends/arm/test/ops/test_adaptive_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2022806Z 2025-12-05 22:27:39,162 [INFO] copying src/executorch/backends/arm/test/ops/test_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2024097Z 2025-12-05 22:27:39,163 [INFO] copying src/executorch/backends/arm/test/ops/test_addmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2025377Z 2025-12-05 22:27:39,164 [INFO] 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-12-05T22:27:39.2026670Z 2025-12-05 22:27:39,164 [INFO] copying src/executorch/backends/arm/test/ops/test_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2027938Z 2025-12-05 22:27:39,165 [INFO] copying src/executorch/backends/arm/test/ops/test_amin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2029505Z 2025-12-05 22:27:39,166 [INFO] copying src/executorch/backends/arm/test/ops/test_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2031031Z 2025-12-05 22:27:39,167 [INFO] copying src/executorch/backends/arm/test/ops/test_arange.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2032315Z 2025-12-05 22:27:39,167 [INFO] copying src/executorch/backends/arm/test/ops/test_asin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2033600Z 2025-12-05 22:27:39,168 [INFO] copying src/executorch/backends/arm/test/ops/test_asinh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2034948Z 2025-12-05 22:27:39,169 [INFO] copying src/executorch/backends/arm/test/ops/test_at.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2036207Z 2025-12-05 22:27:39,170 [INFO] copying src/executorch/backends/arm/test/ops/test_atan.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2037463Z 2025-12-05 22:27:39,170 [INFO] copying src/executorch/backends/arm/test/ops/test_atanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2038899Z 2025-12-05 22:27:39,171 [INFO] 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-12-05T22:27:39.2040212Z 2025-12-05 22:27:39,172 [INFO] 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-12-05T22:27:39.2041494Z 2025-12-05 22:27:39,173 [INFO] copying src/executorch/backends/arm/test/ops/test_bitwise.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2042925Z 2025-12-05 22:27:39,174 [INFO] copying src/executorch/backends/arm/test/ops/test_bitwise_not.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2044215Z 2025-12-05 22:27:39,174 [INFO] copying src/executorch/backends/arm/test/ops/test_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2045445Z 2025-12-05 22:27:39,175 [INFO] copying src/executorch/backends/arm/test/ops/test_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2046697Z 2025-12-05 22:27:39,176 [INFO] copying src/executorch/backends/arm/test/ops/test_ceil.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2048065Z 2025-12-05 22:27:39,177 [INFO] copying src/executorch/backends/arm/test/ops/test_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2049360Z 2025-12-05 22:27:39,177 [INFO] copying src/executorch/backends/arm/test/ops/test_clone.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2050632Z 2025-12-05 22:27:39,178 [INFO] copying src/executorch/backends/arm/test/ops/test_cond.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2051935Z 2025-12-05 22:27:39,179 [INFO] 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-12-05T22:27:39.2053230Z 2025-12-05 22:27:39,180 [INFO] copying src/executorch/backends/arm/test/ops/test_conv1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2054580Z 2025-12-05 22:27:39,181 [INFO] copying src/executorch/backends/arm/test/ops/test_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2055856Z 2025-12-05 22:27:39,182 [INFO] copying src/executorch/backends/arm/test/ops/test_conv3d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2057394Z 2025-12-05 22:27:39,182 [INFO] 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-12-05T22:27:39.2058864Z 2025-12-05 22:27:39,183 [INFO] 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-12-05T22:27:39.2060182Z 2025-12-05 22:27:39,184 [INFO] copying src/executorch/backends/arm/test/ops/test_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2061437Z 2025-12-05 22:27:39,185 [INFO] copying src/executorch/backends/arm/test/ops/test_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2062692Z 2025-12-05 22:27:39,186 [INFO] copying src/executorch/backends/arm/test/ops/test_cosh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2063983Z 2025-12-05 22:27:39,187 [INFO] copying src/executorch/backends/arm/test/ops/test_cumsum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2065533Z 2025-12-05 22:27:39,187 [INFO] 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-12-05T22:27:39.2066832Z 2025-12-05 22:27:39,188 [INFO] copying src/executorch/backends/arm/test/ops/test_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2068113Z 2025-12-05 22:27:39,189 [INFO] copying src/executorch/backends/arm/test/ops/test_div_tensor_mode.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2069481Z 2025-12-05 22:27:39,190 [INFO] copying src/executorch/backends/arm/test/ops/test_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2070853Z 2025-12-05 22:27:39,191 [INFO] copying src/executorch/backends/arm/test/ops/test_embedding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2072125Z 2025-12-05 22:27:39,192 [INFO] copying src/executorch/backends/arm/test/ops/test_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2073557Z 2025-12-05 22:27:39,192 [INFO] copying src/executorch/backends/arm/test/ops/test_erf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2074787Z 2025-12-05 22:27:39,193 [INFO] copying src/executorch/backends/arm/test/ops/test_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2076045Z 2025-12-05 22:27:39,194 [INFO] copying src/executorch/backends/arm/test/ops/test_expand.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2077326Z 2025-12-05 22:27:39,195 [INFO] copying src/executorch/backends/arm/test/ops/test_expm1.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2078577Z 2025-12-05 22:27:39,196 [INFO] copying src/executorch/backends/arm/test/ops/test_eye.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2080037Z 2025-12-05 22:27:39,196 [INFO] copying src/executorch/backends/arm/test/ops/test_fill_scalar.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2081330Z 2025-12-05 22:27:39,197 [INFO] copying src/executorch/backends/arm/test/ops/test_floor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2082596Z 2025-12-05 22:27:39,198 [INFO] copying src/executorch/backends/arm/test/ops/test_floor_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2083874Z 2025-12-05 22:27:39,199 [INFO] copying src/executorch/backends/arm/test/ops/test_full.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2085118Z 2025-12-05 22:27:39,200 [INFO] copying src/executorch/backends/arm/test/ops/test_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2086430Z 2025-12-05 22:27:39,200 [INFO] copying src/executorch/backends/arm/test/ops/test_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2409570Z 2025-12-05 22:27:39,201 [INFO] copying src/executorch/backends/arm/test/ops/test_glu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2410881Z 2025-12-05 22:27:39,202 [INFO] 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-12-05T22:27:39.2412183Z 2025-12-05 22:27:39,203 [INFO] copying src/executorch/backends/arm/test/ops/test_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2413475Z 2025-12-05 22:27:39,204 [INFO] copying src/executorch/backends/arm/test/ops/test_hardsigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2415036Z 2025-12-05 22:27:39,205 [INFO] copying src/executorch/backends/arm/test/ops/test_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2416342Z 2025-12-05 22:27:39,206 [INFO] copying src/executorch/backends/arm/test/ops/test_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2417659Z 2025-12-05 22:27:39,206 [INFO] copying src/executorch/backends/arm/test/ops/test_index_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2419154Z 2025-12-05 22:27:39,207 [INFO] copying src/executorch/backends/arm/test/ops/test_index_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2420654Z 2025-12-05 22:27:39,208 [INFO] 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-12-05T22:27:39.2421933Z 2025-12-05 22:27:39,209 [INFO] copying src/executorch/backends/arm/test/ops/test_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2423358Z 2025-12-05 22:27:39,209 [INFO] 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-12-05T22:27:39.2424680Z 2025-12-05 22:27:39,210 [INFO] 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-12-05T22:27:39.2426004Z 2025-12-05 22:27:39,211 [INFO] copying src/executorch/backends/arm/test/ops/test_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2427251Z 2025-12-05 22:27:39,212 [INFO] copying src/executorch/backends/arm/test/ops/test_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2428595Z 2025-12-05 22:27:39,213 [INFO] copying src/executorch/backends/arm/test/ops/test_logical.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2429869Z 2025-12-05 22:27:39,213 [INFO] copying src/executorch/backends/arm/test/ops/test_logit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2431356Z 2025-12-05 22:27:39,214 [INFO] copying src/executorch/backends/arm/test/ops/test_logsoftmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2432653Z 2025-12-05 22:27:39,215 [INFO] copying src/executorch/backends/arm/test/ops/test_lshift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2433916Z 2025-12-05 22:27:39,216 [INFO] copying src/executorch/backends/arm/test/ops/test_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2435305Z 2025-12-05 22:27:39,216 [INFO] copying src/executorch/backends/arm/test/ops/test_masked_fill.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2436615Z 2025-12-05 22:27:39,217 [INFO] copying src/executorch/backends/arm/test/ops/test_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2437895Z 2025-12-05 22:27:39,218 [INFO] 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-12-05T22:27:39.2439167Z 2025-12-05 22:27:39,219 [INFO] copying src/executorch/backends/arm/test/ops/test_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2440467Z 2025-12-05 22:27:39,220 [INFO] 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-12-05T22:27:39.2441998Z 2025-12-05 22:27:39,220 [INFO] copying src/executorch/backends/arm/test/ops/test_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2443262Z 2025-12-05 22:27:39,221 [INFO] copying src/executorch/backends/arm/test/ops/test_mm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2444506Z 2025-12-05 22:27:39,222 [INFO] copying src/executorch/backends/arm/test/ops/test_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2445832Z 2025-12-05 22:27:39,223 [INFO] copying src/executorch/backends/arm/test/ops/test_multihead_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2447222Z 2025-12-05 22:27:39,224 [INFO] copying src/executorch/backends/arm/test/ops/test_ne.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2448458Z 2025-12-05 22:27:39,225 [INFO] copying src/executorch/backends/arm/test/ops/test_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2449699Z 2025-12-05 22:27:39,225 [INFO] copying src/executorch/backends/arm/test/ops/test_ones.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2451165Z 2025-12-05 22:27:39,226 [INFO] copying src/executorch/backends/arm/test/ops/test_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2452501Z 2025-12-05 22:27:39,227 [INFO] copying src/executorch/backends/arm/test/ops/test_pixel_shuffling.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2453793Z 2025-12-05 22:27:39,228 [INFO] copying src/executorch/backends/arm/test/ops/test_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2455084Z 2025-12-05 22:27:39,229 [INFO] copying src/executorch/backends/arm/test/ops/test_reciprocal.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2456375Z 2025-12-05 22:27:39,229 [INFO] copying src/executorch/backends/arm/test/ops/test_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2457646Z 2025-12-05 22:27:39,230 [INFO] copying src/executorch/backends/arm/test/ops/test_remainder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2458935Z 2025-12-05 22:27:39,231 [INFO] copying src/executorch/backends/arm/test/ops/test_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2460209Z 2025-12-05 22:27:39,232 [INFO] copying src/executorch/backends/arm/test/ops/test_round.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2461473Z 2025-12-05 22:27:39,233 [INFO] copying src/executorch/backends/arm/test/ops/test_rshift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2462846Z 2025-12-05 22:27:39,234 [INFO] copying src/executorch/backends/arm/test/ops/test_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2464159Z 2025-12-05 22:27:39,234 [INFO] copying src/executorch/backends/arm/test/ops/test_rsub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2465610Z 2025-12-05 22:27:39,235 [INFO] 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-12-05T22:27:39.2466940Z 2025-12-05 22:27:39,236 [INFO] copying src/executorch/backends/arm/test/ops/test_scalars.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2468216Z 2025-12-05 22:27:39,237 [INFO] copying src/executorch/backends/arm/test/ops/test_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2469555Z 2025-12-05 22:27:39,238 [INFO] copying src/executorch/backends/arm/test/ops/test_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2470878Z 2025-12-05 22:27:39,238 [INFO] copying src/executorch/backends/arm/test/ops/test_select_scatter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2472197Z 2025-12-05 22:27:39,239 [INFO] copying src/executorch/backends/arm/test/ops/test_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2778280Z 2025-12-05 22:27:39,240 [INFO] 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-12-05T22:27:39.2779825Z 2025-12-05 22:27:39,241 [INFO] copying src/executorch/backends/arm/test/ops/test_sign.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2781405Z 2025-12-05 22:27:39,241 [INFO] copying src/executorch/backends/arm/test/ops/test_silu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2783104Z 2025-12-05 22:27:39,242 [INFO] copying src/executorch/backends/arm/test/ops/test_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2784702Z 2025-12-05 22:27:39,243 [INFO] copying src/executorch/backends/arm/test/ops/test_sinh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2786149Z 2025-12-05 22:27:39,244 [INFO] copying src/executorch/backends/arm/test/ops/test_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2787419Z 2025-12-05 22:27:39,246 [INFO] copying src/executorch/backends/arm/test/ops/test_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2788778Z 2025-12-05 22:27:39,247 [INFO] copying src/executorch/backends/arm/test/ops/test_split.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2790052Z 2025-12-05 22:27:39,248 [INFO] copying src/executorch/backends/arm/test/ops/test_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2791317Z 2025-12-05 22:27:39,248 [INFO] copying src/executorch/backends/arm/test/ops/test_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2792600Z 2025-12-05 22:27:39,249 [INFO] copying src/executorch/backends/arm/test/ops/test_stack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2794024Z 2025-12-05 22:27:39,250 [INFO] copying src/executorch/backends/arm/test/ops/test_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2795278Z 2025-12-05 22:27:39,251 [INFO] copying src/executorch/backends/arm/test/ops/test_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2796678Z 2025-12-05 22:27:39,252 [INFO] copying src/executorch/backends/arm/test/ops/test_t_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2797930Z 2025-12-05 22:27:39,252 [INFO] copying src/executorch/backends/arm/test/ops/test_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2799197Z 2025-12-05 22:27:39,253 [INFO] 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-12-05T22:27:39.2800506Z 2025-12-05 22:27:39,254 [INFO] copying src/executorch/backends/arm/test/ops/test_transpose_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2801840Z 2025-12-05 22:27:39,254 [INFO] copying src/executorch/backends/arm/test/ops/test_unary_combos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2803148Z 2025-12-05 22:27:39,255 [INFO] copying src/executorch/backends/arm/test/ops/test_unbind.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2804442Z 2025-12-05 22:27:39,256 [INFO] copying src/executorch/backends/arm/test/ops/test_unflatten.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2805789Z 2025-12-05 22:27:39,257 [INFO] copying src/executorch/backends/arm/test/ops/test_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2807218Z 2025-12-05 22:27:39,257 [INFO] 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-12-05T22:27:39.2808700Z 2025-12-05 22:27:39,258 [INFO] 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-12-05T22:27:39.2810005Z 2025-12-05 22:27:39,259 [INFO] copying src/executorch/backends/arm/test/ops/test_var.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2811284Z 2025-12-05 22:27:39,260 [INFO] copying src/executorch/backends/arm/test/ops/test_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2812541Z 2025-12-05 22:27:39,260 [INFO] copying src/executorch/backends/arm/test/ops/test_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2813812Z 2025-12-05 22:27:39,261 [INFO] copying src/executorch/backends/arm/test/ops/test_while.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2815085Z 2025-12-05 22:27:39,262 [INFO] copying src/executorch/backends/arm/test/ops/test_zeros.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-12-05T22:27:39.2816117Z 2025-12-05 22:27:39,263 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.2817270Z 2025-12-05 22:27:39,263 [INFO] 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-12-05T22:27:39.2819197Z 2025-12-05 22:27:39,264 [INFO] 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-12-05T22:27:39.2820678Z 2025-12-05 22:27:39,265 [INFO] 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-12-05T22:27:39.2822237Z 2025-12-05 22:27:39,266 [INFO] copying src/executorch/backends/arm/test/passes/test_convert_int32_clamp_to_minmax_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.2823813Z 2025-12-05 22:27:39,266 [INFO] copying src/executorch/backends/arm/test/passes/test_convert_int64_const_ops_to_int32.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.2825477Z 2025-12-05 22:27:39,267 [INFO] copying src/executorch/backends/arm/test/passes/test_convert_int64_output_ops_to_int32.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.2827242Z 2025-12-05 22:27:39,268 [INFO] copying src/executorch/backends/arm/test/passes/test_convert_permute_singleton_to_view_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.2828860Z 2025-12-05 22:27:39,269 [INFO] 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-12-05T22:27:39.2830324Z 2025-12-05 22:27:39,270 [INFO] 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-12-05T22:27:39.2831809Z 2025-12-05 22:27:39,271 [INFO] copying src/executorch/backends/arm/test/passes/test_decompose_avg_pool2d_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.2833367Z 2025-12-05 22:27:39,272 [INFO] 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-12-05T22:27:39.2834982Z 2025-12-05 22:27:39,272 [INFO] 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-12-05T22:27:39.2836523Z 2025-12-05 22:27:39,273 [INFO] copying src/executorch/backends/arm/test/passes/test_decompose_int_pow_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.2838120Z 2025-12-05 22:27:39,274 [INFO] 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-12-05T22:27:39.2839672Z 2025-12-05 22:27:39,275 [INFO] 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-12-05T22:27:39.2841218Z 2025-12-05 22:27:39,275 [INFO] 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-12-05T22:27:39.2842694Z 2025-12-05 22:27:39,276 [INFO] copying src/executorch/backends/arm/test/passes/test_decompose_quant_nodes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.3147018Z 2025-12-05 22:27:39,277 [INFO] 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-12-05T22:27:39.3148596Z 2025-12-05 22:27:39,278 [INFO] 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-12-05T22:27:39.3150151Z 2025-12-05 22:27:39,278 [INFO] copying src/executorch/backends/arm/test/passes/test_decorate_fp32_to_int32_casting_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.3151641Z 2025-12-05 22:27:39,280 [INFO] 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-12-05T22:27:39.3153212Z 2025-12-05 22:27:39,281 [INFO] 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-12-05T22:27:39.3154695Z 2025-12-05 22:27:39,282 [INFO] 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-12-05T22:27:39.3156352Z 2025-12-05 22:27:39,283 [INFO] copying src/executorch/backends/arm/test/passes/test_fuse_duplicate_users_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.3157909Z 2025-12-05 22:27:39,284 [INFO] 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-12-05T22:27:39.3159409Z 2025-12-05 22:27:39,284 [INFO] copying src/executorch/backends/arm/test/passes/test_fuse_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.3161050Z 2025-12-05 22:27:39,285 [INFO] copying src/executorch/backends/arm/test/passes/test_insert_int32_casts_after_int64_placeholders_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.3162662Z 2025-12-05 22:27:39,286 [INFO] copying src/executorch/backends/arm/test/passes/test_insert_rescale_i32_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.3164141Z 2025-12-05 22:27:39,287 [INFO] 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-12-05T22:27:39.3165609Z 2025-12-05 22:27:39,288 [INFO] copying src/executorch/backends/arm/test/passes/test_int32_cast_embedding_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.3167110Z 2025-12-05 22:27:39,288 [INFO] 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-12-05T22:27:39.3168605Z 2025-12-05 22:27:39,289 [INFO] copying src/executorch/backends/arm/test/passes/test_promote_bool_operands_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.3170321Z 2025-12-05 22:27:39,290 [INFO] 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-12-05T22:27:39.3171747Z 2025-12-05 22:27:39,291 [INFO] 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-12-05T22:27:39.3173207Z 2025-12-05 22:27:39,291 [INFO] copying src/executorch/backends/arm/test/passes/test_to_tosa_memory_format.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-12-05T22:27:39.3174699Z 2025-12-05 22:27:39,292 [INFO] 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-12-05T22:27:39.3175892Z 2025-12-05 22:27:39,293 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer 2025-12-05T22:27:39.3177078Z 2025-12-05 22:27:39,293 [INFO] 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-12-05T22:27:39.3178570Z 2025-12-05 22:27:39,294 [INFO] copying src/executorch/backends/arm/test/quantizer/test_set_module_name.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer 2025-12-05T22:27:39.3179777Z 2025-12-05 22:27:39,295 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-12-05T22:27:39.3180847Z 2025-12-05 22:27:39,295 [INFO] copying src/executorch/backends/arm/test/tester/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-12-05T22:27:39.3182336Z 2025-12-05 22:27:39,296 [INFO] 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-12-05T22:27:39.3183732Z 2025-12-05 22:27:39,297 [INFO] copying src/executorch/backends/arm/test/tester/arm_tester.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-12-05T22:27:39.3185170Z 2025-12-05 22:27:39,298 [INFO] copying src/executorch/backends/arm/test/tester/quantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-12-05T22:27:39.3186526Z 2025-12-05 22:27:39,299 [INFO] copying src/executorch/backends/arm/test/tester/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-12-05T22:27:39.3187898Z 2025-12-05 22:27:39,300 [INFO] copying src/executorch/backends/arm/test/tester/test_pipeline.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-12-05T22:27:39.3189068Z 2025-12-05 22:27:39,301 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tosautil 2025-12-05T22:27:39.3190249Z 2025-12-05 22:27:39,302 [INFO] copying src/executorch/backends/arm/test/tosautil/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tosautil 2025-12-05T22:27:39.3191416Z 2025-12-05 22:27:39,303 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/stable_diffusion 2025-12-05T22:27:39.3192851Z 2025-12-05 22:27:39,303 [INFO] copying src/executorch/backends/arm/test/models/stable_diffusion/stable_diffusion_module_test_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/stable_diffusion 2025-12-05T22:27:39.3194794Z 2025-12-05 22:27:39,304 [INFO] copying src/executorch/backends/arm/test/models/stable_diffusion/test_CLIPTextModelWithProjection.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/stable_diffusion 2025-12-05T22:27:39.3196834Z 2025-12-05 22:27:39,304 [INFO] copying src/executorch/backends/arm/test/models/stable_diffusion/test_SD3Transformer2DModel.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/stable_diffusion 2025-12-05T22:27:39.3198717Z 2025-12-05 22:27:39,305 [INFO] copying src/executorch/backends/arm/test/models/stable_diffusion/test_T5EncoderModel.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/stable_diffusion 2025-12-05T22:27:39.3200502Z 2025-12-05 22:27:39,307 [INFO] copying src/executorch/backends/arm/test/models/stable_diffusion/test_vae_AutoencoderKL.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/stable_diffusion 2025-12-05T22:27:39.3201810Z 2025-12-05 22:27:39,308 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect 2025-12-05T22:27:39.3202869Z 2025-12-05 22:27:39,309 [INFO] copying src/executorch/backends/arm/tosa/dialect/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect 2025-12-05T22:27:39.3204172Z 2025-12-05 22:27:39,309 [INFO] copying src/executorch/backends/arm/tosa/dialect/lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect 2025-12-05T22:27:39.3205716Z 2025-12-05 22:27:39,310 [INFO] copying src/executorch/backends/arm/tosa/dialect/ops_registration.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect 2025-12-05T22:27:39.3206845Z 2025-12-05 22:27:39,311 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:39.3207982Z 2025-12-05 22:27:39,311 [INFO] copying src/executorch/backends/arm/tosa/dialect/ops/conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:39.3209455Z 2025-12-05 22:27:39,312 [INFO] copying src/executorch/backends/arm/tosa/dialect/ops/depthwise_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:39.3210914Z 2025-12-05 22:27:39,313 [INFO] copying src/executorch/backends/arm/tosa/dialect/ops/matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:39.3575994Z 2025-12-05 22:27:39,314 [INFO] copying src/executorch/backends/arm/tosa/dialect/ops/rescale.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:39.3577762Z 2025-12-05 22:27:39,314 [INFO] copying src/executorch/backends/arm/tosa/dialect/ops/resize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:39.3579177Z 2025-12-05 22:27:39,315 [INFO] copying src/executorch/backends/arm/tosa/dialect/ops/table.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:39.3580619Z 2025-12-05 22:27:39,316 [INFO] copying src/executorch/backends/arm/tosa/dialect/ops/transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:39.3581742Z 2025-12-05 22:27:39,317 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3582946Z 2025-12-05 22:27:39,317 [INFO] copying src/executorch/backends/cadence/aot/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3584194Z 2025-12-05 22:27:39,318 [INFO] copying src/executorch/backends/cadence/aot/compiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3585470Z 2025-12-05 22:27:39,319 [INFO] copying src/executorch/backends/cadence/aot/compiler_funcs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3586778Z 2025-12-05 22:27:39,320 [INFO] copying src/executorch/backends/cadence/aot/compiler_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3588085Z 2025-12-05 22:27:39,320 [INFO] copying src/executorch/backends/cadence/aot/decompose_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3589600Z 2025-12-05 22:27:39,321 [INFO] copying src/executorch/backends/cadence/aot/export_example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3590959Z 2025-12-05 22:27:39,322 [INFO] copying src/executorch/backends/cadence/aot/fuse_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3592343Z 2025-12-05 22:27:39,324 [INFO] copying src/executorch/backends/cadence/aot/graph_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3593653Z 2025-12-05 22:27:39,324 [INFO] copying src/executorch/backends/cadence/aot/memory_constraints.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3594989Z 2025-12-05 22:27:39,325 [INFO] copying src/executorch/backends/cadence/aot/memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3596352Z 2025-12-05 22:27:39,326 [INFO] copying src/executorch/backends/cadence/aot/memory_planning_algo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3597691Z 2025-12-05 22:27:39,327 [INFO] copying src/executorch/backends/cadence/aot/ops_registrations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3599144Z 2025-12-05 22:27:39,328 [INFO] copying src/executorch/backends/cadence/aot/pass_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3600398Z 2025-12-05 22:27:39,329 [INFO] copying src/executorch/backends/cadence/aot/passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3601662Z 2025-12-05 22:27:39,330 [INFO] copying src/executorch/backends/cadence/aot/program_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3602996Z 2025-12-05 22:27:39,331 [INFO] copying src/executorch/backends/cadence/aot/ref_implementations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3604307Z 2025-12-05 22:27:39,332 [INFO] copying src/executorch/backends/cadence/aot/remove_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3605647Z 2025-12-05 22:27:39,334 [INFO] copying src/executorch/backends/cadence/aot/reorder_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3606929Z 2025-12-05 22:27:39,336 [INFO] copying src/executorch/backends/cadence/aot/replace_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3608211Z 2025-12-05 22:27:39,337 [INFO] copying src/executorch/backends/cadence/aot/simplify_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3609492Z 2025-12-05 22:27:39,338 [INFO] copying src/executorch/backends/cadence/aot/type_dispatch.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3610803Z 2025-12-05 22:27:39,339 [INFO] copying src/executorch/backends/cadence/aot/typing_stubs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3612045Z 2025-12-05 22:27:39,339 [INFO] copying src/executorch/backends/cadence/aot/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:39.3613062Z 2025-12-05 22:27:39,341 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-12-05T22:27:39.3614130Z 2025-12-05 22:27:39,341 [INFO] copying src/executorch/backends/cadence/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-12-05T22:27:39.3615456Z 2025-12-05 22:27:39,341 [INFO] copying src/executorch/backends/cadence/runtime/etdump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-12-05T22:27:39.3616962Z 2025-12-05 22:27:39,342 [INFO] copying src/executorch/backends/cadence/runtime/executor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-12-05T22:27:39.3618874Z 2025-12-05 22:27:39,343 [INFO] copying src/executorch/backends/cadence/runtime/runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-12-05T22:27:39.3620204Z 2025-12-05 22:27:39,344 [INFO] copying src/executorch/backends/cadence/runtime/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-12-05T22:27:39.3621261Z 2025-12-05 22:27:39,345 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-12-05T22:27:39.3622321Z 2025-12-05 22:27:39,345 [INFO] copying src/executorch/backends/cadence/utils/facto_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-12-05T22:27:39.3623626Z 2025-12-05 22:27:39,346 [INFO] copying src/executorch/backends/cadence/utils/gen_header.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-12-05T22:27:39.3624979Z 2025-12-05 22:27:39,346 [INFO] copying src/executorch/backends/cadence/utils/post_compilation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-12-05T22:27:39.3626086Z 2025-12-05 22:27:39,347 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-12-05T22:27:39.3627268Z 2025-12-05 22:27:39,347 [INFO] copying src/executorch/backends/cadence/aot/quantizer/fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-12-05T22:27:39.3628838Z 2025-12-05 22:27:39,348 [INFO] copying src/executorch/backends/cadence/aot/quantizer/patterns.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-12-05T22:27:39.3630307Z 2025-12-05 22:27:39,349 [INFO] copying src/executorch/backends/cadence/aot/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-12-05T22:27:39.3631831Z 2025-12-05 22:27:39,350 [INFO] copying src/executorch/backends/cadence/aot/quantizer/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-12-05T22:27:39.3633142Z 2025-12-05 22:27:39,351 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-12-05T22:27:39.3634451Z 2025-12-05 22:27:39,351 [INFO] 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-12-05T22:27:39.3635949Z 2025-12-05 22:27:39,352 [INFO] 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-12-05T22:27:39.3637408Z 2025-12-05 22:27:39,354 [INFO] 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-12-05T22:27:39.3638824Z 2025-12-05 22:27:39,354 [INFO] copying src/executorch/backends/cadence/aot/tests/test_idma_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-12-05T22:27:39.3640257Z 2025-12-05 22:27:39,355 [INFO] 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-12-05T22:27:39.3874108Z 2025-12-05 22:27:39,357 [INFO] 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-12-05T22:27:39.3875611Z 2025-12-05 22:27:39,358 [INFO] copying src/executorch/backends/cadence/aot/tests/test_program_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-12-05T22:27:39.3877074Z 2025-12-05 22:27:39,358 [INFO] copying src/executorch/backends/cadence/aot/tests/test_quantizer_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-12-05T22:27:39.3878747Z 2025-12-05 22:27:39,359 [INFO] copying src/executorch/backends/cadence/aot/tests/test_ref_implementations.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-12-05T22:27:39.3880372Z 2025-12-05 22:27:39,361 [INFO] 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-12-05T22:27:39.3882077Z 2025-12-05 22:27:39,362 [INFO] 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-12-05T22:27:39.3883761Z 2025-12-05 22:27:39,363 [INFO] 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-12-05T22:27:39.3885309Z 2025-12-05 22:27:39,365 [INFO] 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-12-05T22:27:39.3886816Z 2025-12-05 22:27:39,366 [INFO] copying src/executorch/backends/cadence/aot/tests/test_type_dispatch_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-12-05T22:27:39.3887992Z 2025-12-05 22:27:39,368 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO 2025-12-05T22:27:39.3889105Z 2025-12-05 22:27:39,368 [INFO] copying src/executorch/backends/cadence/utils/FACTO/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO 2025-12-05T22:27:39.3890271Z 2025-12-05 22:27:39,369 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator 2025-12-05T22:27:39.3891562Z 2025-12-05 22:27:39,369 [INFO] 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-12-05T22:27:39.3893547Z 2025-12-05 22:27:39,369 [INFO] 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-12-05T22:27:39.3895065Z 2025-12-05 22:27:39,370 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-12-05T22:27:39.3896630Z 2025-12-05 22:27:39,370 [INFO] 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-12-05T22:27:39.3898281Z 2025-12-05 22:27:39,371 [INFO] 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-12-05T22:27:39.3899951Z 2025-12-05 22:27:39,372 [INFO] 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-12-05T22:27:39.3901221Z 2025-12-05 22:27:39,373 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto 2025-12-05T22:27:39.3902415Z 2025-12-05 22:27:39,373 [INFO] 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-12-05T22:27:39.3903840Z 2025-12-05 22:27:39,374 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-12-05T22:27:39.3905192Z 2025-12-05 22:27:39,374 [INFO] 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-12-05T22:27:39.3906533Z 2025-12-05 22:27:39,374 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-12-05T22:27:39.3907842Z 2025-12-05 22:27:39,374 [INFO] 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-12-05T22:27:39.3909692Z 2025-12-05 22:27:39,376 [INFO] 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-12-05T22:27:39.3911589Z 2025-12-05 22:27:39,377 [INFO] 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-12-05T22:27:39.3913307Z 2025-12-05 22:27:39,378 [INFO] 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-12-05T22:27:39.3914707Z 2025-12-05 22:27:39,379 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-12-05T22:27:39.3916220Z 2025-12-05 22:27:39,379 [INFO] 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-12-05T22:27:39.3918505Z 2025-12-05 22:27:39,379 [INFO] 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-12-05T22:27:39.3920446Z 2025-12-05 22:27:39,380 [INFO] 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-12-05T22:27:39.3921950Z 2025-12-05 22:27:39,381 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-12-05T22:27:39.3923451Z 2025-12-05 22:27:39,381 [INFO] 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-12-05T22:27:39.3925359Z 2025-12-05 22:27:39,381 [INFO] 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-12-05T22:27:39.3927581Z 2025-12-05 22:27:39,382 [INFO] 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-12-05T22:27:39.3929516Z 2025-12-05 22:27:39,383 [INFO] 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-12-05T22:27:39.3931021Z 2025-12-05 22:27:39,384 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-12-05T22:27:39.3932559Z 2025-12-05 22:27:39,384 [INFO] 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-12-05T22:27:39.3934741Z 2025-12-05 22:27:39,384 [INFO] 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-12-05T22:27:39.3936700Z 2025-12-05 22:27:39,385 [INFO] 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-12-05T22:27:39.3938668Z 2025-12-05 22:27:39,385 [INFO] 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-12-05T22:27:39.3940287Z 2025-12-05 22:27:39,386 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-12-05T22:27:39.3941737Z 2025-12-05 22:27:39,386 [INFO] 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-12-05T22:27:39.4168001Z 2025-12-05 22:27:39,386 [INFO] 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-12-05T22:27:39.4169525Z 2025-12-05 22:27:39,387 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-12-05T22:27:39.4170989Z 2025-12-05 22:27:39,387 [INFO] 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-12-05T22:27:39.4173210Z 2025-12-05 22:27:39,388 [INFO] 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-12-05T22:27:39.4174726Z 2025-12-05 22:27:39,388 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-12-05T22:27:39.4176230Z 2025-12-05 22:27:39,389 [INFO] 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-12-05T22:27:39.4178176Z 2025-12-05 22:27:39,389 [INFO] 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-12-05T22:27:39.4180461Z 2025-12-05 22:27:39,390 [INFO] 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-12-05T22:27:39.4182580Z 2025-12-05 22:27:39,390 [INFO] 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-12-05T22:27:39.4184518Z 2025-12-05 22:27:39,391 [INFO] 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-12-05T22:27:39.4186435Z 2025-12-05 22:27:39,392 [INFO] 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-12-05T22:27:39.4188372Z 2025-12-05 22:27:39,393 [INFO] 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-12-05T22:27:39.4190183Z 2025-12-05 22:27:39,394 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-12-05T22:27:39.4191855Z 2025-12-05 22:27:39,394 [INFO] 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-12-05T22:27:39.4193707Z 2025-12-05 22:27:39,394 [INFO] 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-12-05T22:27:39.4195572Z 2025-12-05 22:27:39,395 [INFO] 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-12-05T22:27:39.4197567Z 2025-12-05 22:27:39,396 [INFO] 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-12-05T22:27:39.4199560Z 2025-12-05 22:27:39,397 [INFO] 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-12-05T22:27:39.4201510Z 2025-12-05 22:27:39,398 [INFO] 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-12-05T22:27:39.4203332Z 2025-12-05 22:27:39,399 [INFO] 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-12-05T22:27:39.4205158Z 2025-12-05 22:27:39,400 [INFO] 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-12-05T22:27:39.4207003Z 2025-12-05 22:27:39,401 [INFO] 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-12-05T22:27:39.4208986Z 2025-12-05 22:27:39,401 [INFO] 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-12-05T22:27:39.4210778Z 2025-12-05 22:27:39,402 [INFO] 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-12-05T22:27:39.4212632Z 2025-12-05 22:27:39,403 [INFO] 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-12-05T22:27:39.4214587Z 2025-12-05 22:27:39,404 [INFO] 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-12-05T22:27:39.4216869Z 2025-12-05 22:27:39,404 [INFO] 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-12-05T22:27:39.4218920Z 2025-12-05 22:27:39,405 [INFO] 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-12-05T22:27:39.4220239Z 2025-12-05 22:27:39,406 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-12-05T22:27:39.4221264Z 2025-12-05 22:27:39,407 [INFO] copying src/executorch/backends/cortex_m/ops/operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-12-05T22:27:39.4222310Z 2025-12-05 22:27:39,408 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-12-05T22:27:39.4223351Z 2025-12-05 22:27:39,408 [INFO] copying src/executorch/backends/cortex_m/passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-12-05T22:27:39.4224832Z 2025-12-05 22:27:39,409 [INFO] copying src/executorch/backends/cortex_m/passes/activation_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-12-05T22:27:39.4226610Z 2025-12-05 22:27:39,410 [INFO] copying src/executorch/backends/cortex_m/passes/clamp_hardswish_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-12-05T22:27:39.4228202Z 2025-12-05 22:27:39,411 [INFO] copying src/executorch/backends/cortex_m/passes/convert_to_cortex_m_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-12-05T22:27:39.4229702Z 2025-12-05 22:27:39,411 [INFO] copying src/executorch/backends/cortex_m/passes/cortex_m_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-12-05T22:27:39.4231139Z 2025-12-05 22:27:39,412 [INFO] copying src/executorch/backends/cortex_m/passes/decompose_hardswish_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-12-05T22:27:39.4232524Z 2025-12-05 22:27:39,413 [INFO] copying src/executorch/backends/cortex_m/passes/passes_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-12-05T22:27:39.4234197Z 2025-12-05 22:27:39,414 [INFO] copying src/executorch/backends/cortex_m/passes/quantized_op_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-12-05T22:27:39.4235646Z 2025-12-05 22:27:39,415 [INFO] 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-12-05T22:27:39.4236772Z 2025-12-05 22:27:39,416 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/quantizer 2025-12-05T22:27:39.4479141Z 2025-12-05 22:27:39,416 [INFO] copying src/executorch/backends/cortex_m/quantizer/operator_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/quantizer 2025-12-05T22:27:39.4480703Z 2025-12-05 22:27:39,416 [INFO] copying src/executorch/backends/cortex_m/quantizer/quantization_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/quantizer 2025-12-05T22:27:39.4482128Z 2025-12-05 22:27:39,417 [INFO] copying src/executorch/backends/cortex_m/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/quantizer 2025-12-05T22:27:39.4483239Z 2025-12-05 22:27:39,418 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test 2025-12-05T22:27:39.4484335Z 2025-12-05 22:27:39,418 [INFO] copying src/executorch/backends/cortex_m/test/test_helpers_passes_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test 2025-12-05T22:27:39.4485924Z 2025-12-05 22:27:39,419 [INFO] 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-12-05T22:27:39.4487592Z 2025-12-05 22:27:39,420 [INFO] copying src/executorch/backends/cortex_m/test/tester.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test 2025-12-05T22:27:39.4488717Z 2025-12-05 22:27:39,421 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/misc 2025-12-05T22:27:39.4489864Z 2025-12-05 22:27:39,421 [INFO] copying src/executorch/backends/cortex_m/test/misc/test_quantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/misc 2025-12-05T22:27:39.4490992Z 2025-12-05 22:27:39,422 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/models 2025-12-05T22:27:39.4492087Z 2025-12-05 22:27:39,422 [INFO] copying src/executorch/backends/cortex_m/test/models/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/models 2025-12-05T22:27:39.4493487Z 2025-12-05 22:27:39,423 [INFO] copying src/executorch/backends/cortex_m/test/models/test_mobilenet_v3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/models 2025-12-05T22:27:39.4494727Z 2025-12-05 22:27:39,423 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops 2025-12-05T22:27:39.4495849Z 2025-12-05 22:27:39,423 [INFO] copying src/executorch/backends/cortex_m/test/ops/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops 2025-12-05T22:27:39.4497305Z 2025-12-05 22:27:39,424 [INFO] copying src/executorch/backends/cortex_m/test/ops/test_activation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops 2025-12-05T22:27:39.4498664Z 2025-12-05 22:27:39,425 [INFO] copying src/executorch/backends/cortex_m/test/ops/test_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops 2025-12-05T22:27:39.4499976Z 2025-12-05 22:27:39,426 [INFO] copying src/executorch/backends/cortex_m/test/ops/test_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops 2025-12-05T22:27:39.4501338Z 2025-12-05 22:27:39,426 [INFO] copying src/executorch/backends/cortex_m/test/ops/test_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops 2025-12-05T22:27:39.4502822Z 2025-12-05 22:27:39,427 [INFO] copying src/executorch/backends/cortex_m/test/ops/test_lstm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops 2025-12-05T22:27:39.4504219Z 2025-12-05 22:27:39,428 [INFO] copying src/executorch/backends/cortex_m/test/ops/test_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops 2025-12-05T22:27:39.4505585Z 2025-12-05 22:27:39,429 [INFO] copying src/executorch/backends/cortex_m/test/ops/test_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops 2025-12-05T22:27:39.4506930Z 2025-12-05 22:27:39,429 [INFO] copying src/executorch/backends/cortex_m/test/ops/test_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops 2025-12-05T22:27:39.4508272Z 2025-12-05 22:27:39,430 [INFO] copying src/executorch/backends/cortex_m/test/ops/test_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops 2025-12-05T22:27:39.4509436Z 2025-12-05 22:27:39,431 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/tests 2025-12-05T22:27:39.4510569Z 2025-12-05 22:27:39,431 [INFO] copying src/executorch/backends/cuda/tests/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/tests 2025-12-05T22:27:39.4511850Z 2025-12-05 22:27:39,432 [INFO] copying src/executorch/backends/cuda/tests/test_cuda_export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/tests 2025-12-05T22:27:39.4513271Z 2025-12-05 22:27:39,433 [INFO] copying src/executorch/backends/cuda/tests/test_cuda_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/tests 2025-12-05T22:27:39.4514318Z 2025-12-05 22:27:39,434 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/triton 2025-12-05T22:27:39.4515316Z 2025-12-05 22:27:39,434 [INFO] copying src/executorch/backends/cuda/triton/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/triton 2025-12-05T22:27:39.4516593Z 2025-12-05 22:27:39,435 [INFO] copying src/executorch/backends/cuda/triton/replacement_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/triton 2025-12-05T22:27:39.4517668Z 2025-12-05 22:27:39,436 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/triton/kernels 2025-12-05T22:27:39.4518972Z 2025-12-05 22:27:39,436 [INFO] copying src/executorch/backends/cuda/triton/kernels/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/triton/kernels 2025-12-05T22:27:39.4520357Z 2025-12-05 22:27:39,437 [INFO] copying src/executorch/backends/cuda/triton/kernels/sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/triton/kernels 2025-12-05T22:27:39.4521713Z 2025-12-05 22:27:39,437 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes 2025-12-05T22:27:39.4523404Z 2025-12-05 22:27:39,438 [INFO] 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-12-05T22:27:39.4525451Z 2025-12-05 22:27:39,438 [INFO] 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-12-05T22:27:39.4526879Z 2025-12-05 22:27:39,439 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-12-05T22:27:39.4528158Z 2025-12-05 22:27:39,439 [INFO] 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-12-05T22:27:39.4529710Z 2025-12-05 22:27:39,440 [INFO] copying src/executorch/backends/example/example_operators/add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-12-05T22:27:39.4531291Z 2025-12-05 22:27:39,441 [INFO] copying src/executorch/backends/example/example_operators/conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-12-05T22:27:39.4533035Z 2025-12-05 22:27:39,442 [INFO] copying src/executorch/backends/example/example_operators/conv_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-12-05T22:27:39.4534615Z 2025-12-05 22:27:39,442 [INFO] copying src/executorch/backends/example/example_operators/dropout.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-12-05T22:27:39.4536120Z 2025-12-05 22:27:39,443 [INFO] copying src/executorch/backends/example/example_operators/flatten.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-12-05T22:27:39.4537631Z 2025-12-05 22:27:39,444 [INFO] copying src/executorch/backends/example/example_operators/linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-12-05T22:27:39.4539118Z 2025-12-05 22:27:39,445 [INFO] copying src/executorch/backends/example/example_operators/op_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-12-05T22:27:39.4540741Z 2025-12-05 22:27:39,445 [INFO] copying src/executorch/backends/example/example_operators/ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-12-05T22:27:39.4542453Z 2025-12-05 22:27:39,446 [INFO] copying src/executorch/backends/example/example_operators/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-12-05T22:27:39.4543602Z 2025-12-05 22:27:39,447 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-12-05T22:27:39.4833929Z 2025-12-05 22:27:39,447 [INFO] copying src/executorch/backends/mediatek/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-12-05T22:27:39.4835598Z 2025-12-05 22:27:39,447 [INFO] 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-12-05T22:27:39.4836828Z 2025-12-05 22:27:39,448 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-12-05T22:27:39.4837944Z 2025-12-05 22:27:39,448 [INFO] copying src/executorch/backends/mediatek/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-12-05T22:27:39.4839387Z 2025-12-05 22:27:39,449 [INFO] copying src/executorch/backends/mediatek/quantizer/annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-12-05T22:27:39.4840807Z 2025-12-05 22:27:39,450 [INFO] copying src/executorch/backends/mediatek/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-12-05T22:27:39.4842239Z 2025-12-05 22:27:39,450 [INFO] copying src/executorch/backends/mediatek/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-12-05T22:27:39.4843522Z 2025-12-05 22:27:39,451 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/_passes 2025-12-05T22:27:39.4844555Z 2025-12-05 22:27:39,451 [INFO] copying src/executorch/backends/nxp/_passes/remove_getitem_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/_passes 2025-12-05T22:27:39.4845615Z 2025-12-05 22:27:39,452 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-12-05T22:27:39.4846751Z 2025-12-05 22:27:39,453 [INFO] 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-12-05T22:27:39.4848253Z 2025-12-05 22:27:39,453 [INFO] 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-12-05T22:27:39.4849709Z 2025-12-05 22:27:39,454 [INFO] copying src/executorch/backends/nxp/aten_passes/fuse_linear_and_add_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-12-05T22:27:39.4851154Z 2025-12-05 22:27:39,455 [INFO] copying src/executorch/backends/nxp/aten_passes/move_activation_before_concat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-12-05T22:27:39.4852601Z 2025-12-05 22:27:39,456 [INFO] 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-12-05T22:27:39.4854057Z 2025-12-05 22:27:39,456 [INFO] copying src/executorch/backends/nxp/aten_passes/remove_nodes_with_known_outputs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-12-05T22:27:39.4855517Z 2025-12-05 22:27:39,457 [INFO] copying src/executorch/backends/nxp/aten_passes/split_group_convolution.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-12-05T22:27:39.4856996Z 2025-12-05 22:27:39,458 [INFO] copying src/executorch/backends/nxp/aten_passes/split_gru_based_on_num_layers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-12-05T22:27:39.4858103Z 2025-12-05 22:27:39,459 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-12-05T22:27:39.4859310Z 2025-12-05 22:27:39,459 [INFO] copying src/executorch/backends/nxp/backend/custom_delegation_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-12-05T22:27:39.4860646Z 2025-12-05 22:27:39,460 [INFO] copying src/executorch/backends/nxp/backend/edge_helper.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-12-05T22:27:39.4861966Z 2025-12-05 22:27:39,461 [INFO] copying src/executorch/backends/nxp/backend/edge_program_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-12-05T22:27:39.4863364Z 2025-12-05 22:27:39,462 [INFO] copying src/executorch/backends/nxp/backend/neutron_converter_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-12-05T22:27:39.4864800Z 2025-12-05 22:27:39,463 [INFO] copying src/executorch/backends/nxp/backend/neutron_operator_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-12-05T22:27:39.4866183Z 2025-12-05 22:27:39,463 [INFO] copying src/executorch/backends/nxp/backend/neutron_target_spec.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-12-05T22:27:39.4867489Z 2025-12-05 22:27:39,464 [INFO] copying src/executorch/backends/nxp/backend/node_format.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-12-05T22:27:39.4868880Z 2025-12-05 22:27:39,465 [INFO] copying src/executorch/backends/nxp/backend/node_format_inference.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-12-05T22:27:39.4870131Z 2025-12-05 22:27:39,466 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/edge_passes 2025-12-05T22:27:39.4871371Z 2025-12-05 22:27:39,466 [INFO] copying src/executorch/backends/nxp/edge_passes/move_auxiliary_operator_into_separate_qdq_cluster_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/edge_passes 2025-12-05T22:27:39.4873013Z 2025-12-05 22:27:39,467 [INFO] copying src/executorch/backends/nxp/edge_passes/neutron_edge_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/edge_passes 2025-12-05T22:27:39.4874496Z 2025-12-05 22:27:39,468 [INFO] copying src/executorch/backends/nxp/edge_passes/neutron_edge_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/edge_passes 2025-12-05T22:27:39.4876041Z 2025-12-05 22:27:39,468 [INFO] copying src/executorch/backends/nxp/edge_passes/remove_additional_quantize_dequantize_nodes_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/edge_passes 2025-12-05T22:27:39.4877583Z 2025-12-05 22:27:39,469 [INFO] copying src/executorch/backends/nxp/edge_passes/remove_io_quant_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/edge_passes 2025-12-05T22:27:39.4878688Z 2025-12-05 22:27:39,470 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-12-05T22:27:39.4879774Z 2025-12-05 22:27:39,470 [INFO] copying src/executorch/backends/nxp/quantizer/neutron_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-12-05T22:27:39.4881127Z 2025-12-05 22:27:39,471 [INFO] copying src/executorch/backends/nxp/quantizer/patterns.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-12-05T22:27:39.4882423Z 2025-12-05 22:27:39,472 [INFO] copying src/executorch/backends/nxp/quantizer/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-12-05T22:27:39.4883426Z 2025-12-05 22:27:39,473 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.4884480Z 2025-12-05 22:27:39,473 [INFO] copying src/executorch/backends/nxp/tests/executorch_pipeline.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.4885849Z 2025-12-05 22:27:39,474 [INFO] copying src/executorch/backends/nxp/tests/executors.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.4887055Z 2025-12-05 22:27:39,475 [INFO] copying src/executorch/backends/nxp/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.4888309Z 2025-12-05 22:27:39,476 [INFO] copying src/executorch/backends/nxp/tests/test_batch_norm_fusion.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.4889680Z 2025-12-05 22:27:39,476 [INFO] copying src/executorch/backends/nxp/tests/test_context_sensitive_delegation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.4891044Z 2025-12-05 22:27:39,477 [INFO] copying src/executorch/backends/nxp/tests/test_edge_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.4892324Z 2025-12-05 22:27:39,478 [INFO] copying src/executorch/backends/nxp/tests/test_gru_splitting.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.4893601Z 2025-12-05 22:27:39,479 [INFO] copying src/executorch/backends/nxp/tests/test_integration.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.4894916Z 2025-12-05 22:27:39,480 [INFO] copying src/executorch/backends/nxp/tests/test_linear_and_add_fusion.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.4896341Z 2025-12-05 22:27:39,481 [INFO] copying src/executorch/backends/nxp/tests/test_move_activation_before_concatenation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.5134455Z 2025-12-05 22:27:39,482 [INFO] copying src/executorch/backends/nxp/tests/test_neutron_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.5135863Z 2025-12-05 22:27:39,483 [INFO] copying src/executorch/backends/nxp/tests/test_neutron_backend_executor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.5137292Z 2025-12-05 22:27:39,484 [INFO] copying src/executorch/backends/nxp/tests/test_neutron_converter_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.5138652Z 2025-12-05 22:27:39,485 [INFO] copying src/executorch/backends/nxp/tests/test_node_format_inference.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.5139996Z 2025-12-05 22:27:39,486 [INFO] copying src/executorch/backends/nxp/tests/test_operator_selector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.5141365Z 2025-12-05 22:27:39,486 [INFO] copying src/executorch/backends/nxp/tests/test_per_channel_conversion.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.5142818Z 2025-12-05 22:27:39,487 [INFO] copying src/executorch/backends/nxp/tests/test_qdq_clustering_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.5144197Z 2025-12-05 22:27:39,488 [INFO] copying src/executorch/backends/nxp/tests/test_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.5145488Z 2025-12-05 22:27:39,489 [INFO] copying src/executorch/backends/nxp/tests/test_removing_dead_code.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.5146867Z 2025-12-05 22:27:39,490 [INFO] copying src/executorch/backends/nxp/tests/test_removing_nodes_with_known_outputs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.5148301Z 2025-12-05 22:27:39,490 [INFO] copying src/executorch/backends/nxp/tests/test_split_group_convolution.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-12-05T22:27:39.5149510Z 2025-12-05 22:27:39,491 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-12-05T22:27:39.5150860Z 2025-12-05 22:27:39,491 [INFO] copying src/executorch/backends/nxp/backend/ir/conversion_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-12-05T22:27:39.5152277Z 2025-12-05 22:27:39,492 [INFO] copying src/executorch/backends/nxp/backend/ir/conversion_context.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-12-05T22:27:39.5153665Z 2025-12-05 22:27:39,493 [INFO] copying src/executorch/backends/nxp/backend/ir/logger.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-12-05T22:27:39.5154995Z 2025-12-05 22:27:39,494 [INFO] copying src/executorch/backends/nxp/backend/ir/tensor_formatting.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-12-05T22:27:39.5156155Z 2025-12-05 22:27:39,495 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-12-05T22:27:39.5157390Z 2025-12-05 22:27:39,495 [INFO] 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-12-05T22:27:39.5158987Z 2025-12-05 22:27:39,495 [INFO] 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-12-05T22:27:39.5160606Z 2025-12-05 22:27:39,496 [INFO] 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-12-05T22:27:39.5162220Z 2025-12-05 22:27:39,497 [INFO] 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-12-05T22:27:39.5163533Z 2025-12-05 22:27:39,498 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib 2025-12-05T22:27:39.5164685Z 2025-12-05 22:27:39,498 [INFO] 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-12-05T22:27:39.5165865Z 2025-12-05 22:27:39,498 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator 2025-12-05T22:27:39.5167157Z 2025-12-05 22:27:39,498 [INFO] 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-12-05T22:27:39.5168794Z 2025-12-05 22:27:39,498 [INFO] 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-12-05T22:27:39.5170102Z 2025-12-05 22:27:39,499 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-12-05T22:27:39.5171428Z 2025-12-05 22:27:39,499 [INFO] 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-12-05T22:27:39.5173113Z 2025-12-05 22:27:39,500 [INFO] 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-12-05T22:27:39.5174777Z 2025-12-05 22:27:39,500 [INFO] 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-12-05T22:27:39.5176452Z 2025-12-05 22:27:39,501 [INFO] 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-12-05T22:27:39.5178145Z 2025-12-05 22:27:39,502 [INFO] 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-12-05T22:27:39.5179974Z 2025-12-05 22:27:39,503 [INFO] 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-12-05T22:27:39.5181303Z 2025-12-05 22:27:39,504 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-12-05T22:27:39.5182639Z 2025-12-05 22:27:39,504 [INFO] 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-12-05T22:27:39.5184415Z 2025-12-05 22:27:39,505 [INFO] 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-12-05T22:27:39.5186238Z 2025-12-05 22:27:39,506 [INFO] 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-12-05T22:27:39.5188170Z 2025-12-05 22:27:39,507 [INFO] 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-12-05T22:27:39.5189709Z 2025-12-05 22:27:39,508 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-12-05T22:27:39.5191090Z 2025-12-05 22:27:39,509 [INFO] 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-12-05T22:27:39.5192958Z 2025-12-05 22:27:39,509 [INFO] 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-12-05T22:27:39.5194755Z 2025-12-05 22:27:39,510 [INFO] 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-12-05T22:27:39.5196651Z 2025-12-05 22:27:39,510 [INFO] 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-12-05T22:27:39.5198089Z 2025-12-05 22:27:39,511 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters 2025-12-05T22:27:39.5199513Z 2025-12-05 22:27:39,511 [INFO] 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-12-05T22:27:39.5398511Z 2025-12-05 22:27:39,512 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:39.5400250Z 2025-12-05 22:27:39,513 [INFO] 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-12-05T22:27:39.5402389Z 2025-12-05 22:27:39,513 [INFO] copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/abs_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:39.5404761Z 2025-12-05 22:27:39,514 [INFO] copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/adaptive_avg_pool_2d_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:39.5407227Z 2025-12-05 22:27:39,515 [INFO] copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/add_tensor_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:39.5409441Z 2025-12-05 22:27:39,516 [INFO] 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-12-05T22:27:39.5411732Z 2025-12-05 22:27:39,516 [INFO] 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-12-05T22:27:39.5413931Z 2025-12-05 22:27:39,517 [INFO] copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/cat_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:39.5416127Z 2025-12-05 22:27:39,518 [INFO] copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/clone_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:39.5418573Z 2025-12-05 22:27:39,519 [INFO] 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-12-05T22:27:39.5420855Z 2025-12-05 22:27:39,520 [INFO] 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-12-05T22:27:39.5423213Z 2025-12-05 22:27:39,520 [INFO] copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/hardtanh_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:39.5425441Z 2025-12-05 22:27:39,521 [INFO] 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-12-05T22:27:39.5427741Z 2025-12-05 22:27:39,522 [INFO] copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mean_dim_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:39.5430001Z 2025-12-05 22:27:39,523 [INFO] 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-12-05T22:27:39.5432222Z 2025-12-05 22:27:39,523 [INFO] 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-12-05T22:27:39.5434574Z 2025-12-05 22:27:39,524 [INFO] 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-12-05T22:27:39.5436847Z 2025-12-05 22:27:39,525 [INFO] 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-12-05T22:27:39.5439186Z 2025-12-05 22:27:39,526 [INFO] 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-12-05T22:27:39.5441479Z 2025-12-05 22:27:39,527 [INFO] copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/sigmoid_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:39.5443679Z 2025-12-05 22:27:39,528 [INFO] 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-12-05T22:27:39.5445905Z 2025-12-05 22:27:39,529 [INFO] copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/sub_tensor_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:39.5448149Z 2025-12-05 22:27:39,530 [INFO] copying src/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/tanh_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:39.5450395Z 2025-12-05 22:27:39,531 [INFO] 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-12-05T22:27:39.5452082Z 2025-12-05 22:27:39,532 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-12-05T22:27:39.5453696Z 2025-12-05 22:27:39,532 [INFO] 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-12-05T22:27:39.5455671Z 2025-12-05 22:27:39,532 [INFO] copying src/executorch/backends/nxp/backend/ir/converter/node_converters/shared/conv_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-12-05T22:27:39.5457787Z 2025-12-05 22:27:39,533 [INFO] 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-12-05T22:27:39.5459822Z 2025-12-05 22:27:39,533 [INFO] 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-12-05T22:27:39.5461892Z 2025-12-05 22:27:39,534 [INFO] 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-12-05T22:27:39.5463430Z 2025-12-05 22:27:39,536 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-12-05T22:27:39.5464749Z 2025-12-05 22:27:39,536 [INFO] 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-12-05T22:27:39.5466375Z 2025-12-05 22:27:39,537 [INFO] 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-12-05T22:27:39.5468061Z 2025-12-05 22:27:39,538 [INFO] 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-12-05T22:27:39.5715954Z 2025-12-05 22:27:39,539 [INFO] 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-12-05T22:27:39.5717802Z 2025-12-05 22:27:39,540 [INFO] 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-12-05T22:27:39.5719577Z 2025-12-05 22:27:39,540 [INFO] 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-12-05T22:27:39.5721212Z 2025-12-05 22:27:39,541 [INFO] 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-12-05T22:27:39.5723028Z 2025-12-05 22:27:39,542 [INFO] 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-12-05T22:27:39.5724754Z 2025-12-05 22:27:39,543 [INFO] 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-12-05T22:27:39.5726491Z 2025-12-05 22:27:39,543 [INFO] 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-12-05T22:27:39.5728316Z 2025-12-05 22:27:39,544 [INFO] 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-12-05T22:27:39.5730291Z 2025-12-05 22:27:39,545 [INFO] 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-12-05T22:27:39.5732185Z 2025-12-05 22:27:39,546 [INFO] 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-12-05T22:27:39.5733876Z 2025-12-05 22:27:39,546 [INFO] 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-12-05T22:27:39.5735560Z 2025-12-05 22:27:39,547 [INFO] 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-12-05T22:27:39.5737292Z 2025-12-05 22:27:39,548 [INFO] 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-12-05T22:27:39.5738983Z 2025-12-05 22:27:39,549 [INFO] 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-12-05T22:27:39.5740590Z 2025-12-05 22:27:39,549 [INFO] 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-12-05T22:27:39.5742249Z 2025-12-05 22:27:39,550 [INFO] 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-12-05T22:27:39.5743914Z 2025-12-05 22:27:39,551 [INFO] 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-12-05T22:27:39.5745692Z 2025-12-05 22:27:39,552 [INFO] 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-12-05T22:27:39.5748213Z 2025-12-05 22:27:39,553 [INFO] 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-12-05T22:27:39.5750863Z 2025-12-05 22:27:39,553 [INFO] 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-12-05T22:27:39.5753796Z 2025-12-05 22:27:39,554 [INFO] 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-12-05T22:27:39.5756964Z 2025-12-05 22:27:39,555 [INFO] 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-12-05T22:27:39.5760263Z 2025-12-05 22:27:39,556 [INFO] 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-12-05T22:27:39.5762770Z 2025-12-05 22:27:39,557 [INFO] 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-12-05T22:27:39.5765256Z 2025-12-05 22:27:39,557 [INFO] 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-12-05T22:27:39.5767994Z 2025-12-05 22:27:39,558 [INFO] 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-12-05T22:27:39.5769964Z 2025-12-05 22:27:39,559 [INFO] 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-12-05T22:27:39.5771746Z 2025-12-05 22:27:39,560 [INFO] 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-12-05T22:27:39.5773597Z 2025-12-05 22:27:39,560 [INFO] 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-12-05T22:27:39.5775273Z 2025-12-05 22:27:39,561 [INFO] 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-12-05T22:27:39.5776944Z 2025-12-05 22:27:39,562 [INFO] 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-12-05T22:27:39.5778685Z 2025-12-05 22:27:39,563 [INFO] 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-12-05T22:27:39.5780412Z 2025-12-05 22:27:39,564 [INFO] 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-12-05T22:27:39.5782057Z 2025-12-05 22:27:39,564 [INFO] 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-12-05T22:27:39.5783715Z 2025-12-05 22:27:39,565 [INFO] 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-12-05T22:27:39.5785485Z 2025-12-05 22:27:39,566 [INFO] 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-12-05T22:27:39.5787096Z 2025-12-05 22:27:39,567 [INFO] 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-12-05T22:27:39.5788953Z 2025-12-05 22:27:39,567 [INFO] 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-12-05T22:27:39.5790786Z 2025-12-05 22:27:39,568 [INFO] 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-12-05T22:27:39.5792506Z 2025-12-05 22:27:39,569 [INFO] 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-12-05T22:27:39.5794124Z 2025-12-05 22:27:39,570 [INFO] 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-12-05T22:27:39.6054920Z 2025-12-05 22:27:39,571 [INFO] 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-12-05T22:27:39.6056636Z 2025-12-05 22:27:39,571 [INFO] 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-12-05T22:27:39.6058366Z 2025-12-05 22:27:39,572 [INFO] 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-12-05T22:27:39.6060012Z 2025-12-05 22:27:39,573 [INFO] 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-12-05T22:27:39.6061892Z 2025-12-05 22:27:39,574 [INFO] 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-12-05T22:27:39.6063612Z 2025-12-05 22:27:39,574 [INFO] 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-12-05T22:27:39.6065453Z 2025-12-05 22:27:39,575 [INFO] 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-12-05T22:27:39.6067237Z 2025-12-05 22:27:39,576 [INFO] 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-12-05T22:27:39.6068983Z 2025-12-05 22:27:39,577 [INFO] 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-12-05T22:27:39.6070625Z 2025-12-05 22:27:39,578 [INFO] 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-12-05T22:27:39.6072278Z 2025-12-05 22:27:39,579 [INFO] 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-12-05T22:27:39.6073972Z 2025-12-05 22:27:39,579 [INFO] 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-12-05T22:27:39.6075634Z 2025-12-05 22:27:39,580 [INFO] 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-12-05T22:27:39.6077327Z 2025-12-05 22:27:39,581 [INFO] 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-12-05T22:27:39.6079226Z 2025-12-05 22:27:39,582 [INFO] 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-12-05T22:27:39.6080953Z 2025-12-05 22:27:39,583 [INFO] 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-12-05T22:27:39.6082647Z 2025-12-05 22:27:39,584 [INFO] 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-12-05T22:27:39.6084307Z 2025-12-05 22:27:39,585 [INFO] 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-12-05T22:27:39.6085905Z 2025-12-05 22:27:39,585 [INFO] 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-12-05T22:27:39.6087656Z 2025-12-05 22:27:39,586 [INFO] 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-12-05T22:27:39.6089548Z 2025-12-05 22:27:39,587 [INFO] 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-12-05T22:27:39.6091368Z 2025-12-05 22:27:39,588 [INFO] 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-12-05T22:27:39.6093385Z 2025-12-05 22:27:39,589 [INFO] 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-12-05T22:27:39.6095140Z 2025-12-05 22:27:39,589 [INFO] 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-12-05T22:27:39.6106541Z 2025-12-05 22:27:39,590 [INFO] 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-12-05T22:27:39.6108354Z 2025-12-05 22:27:39,591 [INFO] 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-12-05T22:27:39.6110228Z 2025-12-05 22:27:39,592 [INFO] 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-12-05T22:27:39.6112044Z 2025-12-05 22:27:39,593 [INFO] 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-12-05T22:27:39.6113867Z 2025-12-05 22:27:39,594 [INFO] 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-12-05T22:27:39.6115566Z 2025-12-05 22:27:39,594 [INFO] 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-12-05T22:27:39.6117243Z 2025-12-05 22:27:39,595 [INFO] 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-12-05T22:27:39.6119246Z 2025-12-05 22:27:39,596 [INFO] 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-12-05T22:27:39.6121206Z 2025-12-05 22:27:39,597 [INFO] 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-12-05T22:27:39.6123075Z 2025-12-05 22:27:39,598 [INFO] 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-12-05T22:27:39.6124939Z 2025-12-05 22:27:39,599 [INFO] 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-12-05T22:27:39.6126722Z 2025-12-05 22:27:39,599 [INFO] 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-12-05T22:27:39.6128491Z 2025-12-05 22:27:39,600 [INFO] 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-12-05T22:27:39.6130268Z 2025-12-05 22:27:39,601 [INFO] 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-12-05T22:27:39.6131986Z 2025-12-05 22:27:39,602 [INFO] 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-12-05T22:27:39.6133681Z 2025-12-05 22:27:39,603 [INFO] 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-12-05T22:27:39.6135507Z 2025-12-05 22:27:39,604 [INFO] 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-12-05T22:27:39.6408295Z 2025-12-05 22:27:39,604 [INFO] 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-12-05T22:27:39.6410131Z 2025-12-05 22:27:39,605 [INFO] 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-12-05T22:27:39.6411883Z 2025-12-05 22:27:39,606 [INFO] 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-12-05T22:27:39.6413532Z 2025-12-05 22:27:39,607 [INFO] 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-12-05T22:27:39.6415246Z 2025-12-05 22:27:39,608 [INFO] 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-12-05T22:27:39.6416842Z 2025-12-05 22:27:39,609 [INFO] 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-12-05T22:27:39.6418592Z 2025-12-05 22:27:39,610 [INFO] 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-12-05T22:27:39.6420193Z 2025-12-05 22:27:39,611 [INFO] 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-12-05T22:27:39.6421814Z 2025-12-05 22:27:39,612 [INFO] 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-12-05T22:27:39.6423636Z 2025-12-05 22:27:39,613 [INFO] 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-12-05T22:27:39.6425231Z 2025-12-05 22:27:39,614 [INFO] 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-12-05T22:27:39.6426847Z 2025-12-05 22:27:39,614 [INFO] 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-12-05T22:27:39.6428574Z 2025-12-05 22:27:39,615 [INFO] 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-12-05T22:27:39.6430305Z 2025-12-05 22:27:39,616 [INFO] 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-12-05T22:27:39.6432131Z 2025-12-05 22:27:39,617 [INFO] 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-12-05T22:27:39.6433771Z 2025-12-05 22:27:39,618 [INFO] 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-12-05T22:27:39.6435372Z 2025-12-05 22:27:39,619 [INFO] 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-12-05T22:27:39.6437106Z 2025-12-05 22:27:39,620 [INFO] 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-12-05T22:27:39.6438731Z 2025-12-05 22:27:39,620 [INFO] 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-12-05T22:27:39.6440390Z 2025-12-05 22:27:39,621 [INFO] 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-12-05T22:27:39.6442123Z 2025-12-05 22:27:39,622 [INFO] 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-12-05T22:27:39.6443850Z 2025-12-05 22:27:39,623 [INFO] 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-12-05T22:27:39.6445571Z 2025-12-05 22:27:39,624 [INFO] 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-12-05T22:27:39.6447282Z 2025-12-05 22:27:39,624 [INFO] 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-12-05T22:27:39.6448993Z 2025-12-05 22:27:39,625 [INFO] 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-12-05T22:27:39.6450781Z 2025-12-05 22:27:39,626 [INFO] 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-12-05T22:27:39.6452594Z 2025-12-05 22:27:39,627 [INFO] 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-12-05T22:27:39.6454319Z 2025-12-05 22:27:39,628 [INFO] 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-12-05T22:27:39.6456037Z 2025-12-05 22:27:39,629 [INFO] 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-12-05T22:27:39.6457700Z 2025-12-05 22:27:39,629 [INFO] 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-12-05T22:27:39.6459458Z 2025-12-05 22:27:39,630 [INFO] 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-12-05T22:27:39.6461066Z 2025-12-05 22:27:39,631 [INFO] 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-12-05T22:27:39.6462708Z 2025-12-05 22:27:39,632 [INFO] 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-12-05T22:27:39.6464396Z 2025-12-05 22:27:39,633 [INFO] 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-12-05T22:27:39.6466052Z 2025-12-05 22:27:39,634 [INFO] 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-12-05T22:27:39.6467869Z 2025-12-05 22:27:39,635 [INFO] 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-12-05T22:27:39.6469610Z 2025-12-05 22:27:39,636 [INFO] 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-12-05T22:27:39.6471266Z 2025-12-05 22:27:39,636 [INFO] 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-12-05T22:27:39.6472886Z 2025-12-05 22:27:39,637 [INFO] 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-12-05T22:27:39.6474555Z 2025-12-05 22:27:39,638 [INFO] 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-12-05T22:27:39.6476249Z 2025-12-05 22:27:39,639 [INFO] 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-12-05T22:27:39.6761061Z 2025-12-05 22:27:39,640 [INFO] 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-12-05T22:27:39.6762712Z 2025-12-05 22:27:39,641 [INFO] 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-12-05T22:27:39.6764407Z 2025-12-05 22:27:39,641 [INFO] 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-12-05T22:27:39.6766147Z 2025-12-05 22:27:39,642 [INFO] 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-12-05T22:27:39.6767984Z 2025-12-05 22:27:39,644 [INFO] 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-12-05T22:27:39.6769853Z 2025-12-05 22:27:39,645 [INFO] 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-12-05T22:27:39.6771588Z 2025-12-05 22:27:39,646 [INFO] 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-12-05T22:27:39.6773259Z 2025-12-05 22:27:39,647 [INFO] 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-12-05T22:27:39.6774935Z 2025-12-05 22:27:39,647 [INFO] 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-12-05T22:27:39.6776667Z 2025-12-05 22:27:39,648 [INFO] 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-12-05T22:27:39.6778382Z 2025-12-05 22:27:39,649 [INFO] 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-12-05T22:27:39.6780106Z 2025-12-05 22:27:39,650 [INFO] 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-12-05T22:27:39.6781854Z 2025-12-05 22:27:39,651 [INFO] 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-12-05T22:27:39.6783896Z 2025-12-05 22:27:39,652 [INFO] 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-12-05T22:27:39.6785710Z 2025-12-05 22:27:39,653 [INFO] 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-12-05T22:27:39.6787520Z 2025-12-05 22:27:39,654 [INFO] 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-12-05T22:27:39.6789408Z 2025-12-05 22:27:39,654 [INFO] 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-12-05T22:27:39.6791296Z 2025-12-05 22:27:39,655 [INFO] 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-12-05T22:27:39.6793189Z 2025-12-05 22:27:39,656 [INFO] 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-12-05T22:27:39.6795016Z 2025-12-05 22:27:39,657 [INFO] 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-12-05T22:27:39.6796857Z 2025-12-05 22:27:39,658 [INFO] 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-12-05T22:27:39.6798702Z 2025-12-05 22:27:39,659 [INFO] 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-12-05T22:27:39.6800586Z 2025-12-05 22:27:39,660 [INFO] 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-12-05T22:27:39.6802317Z 2025-12-05 22:27:39,660 [INFO] 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-12-05T22:27:39.6804055Z 2025-12-05 22:27:39,661 [INFO] 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-12-05T22:27:39.6805828Z 2025-12-05 22:27:39,662 [INFO] 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-12-05T22:27:39.6807761Z 2025-12-05 22:27:39,663 [INFO] 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-12-05T22:27:39.6809626Z 2025-12-05 22:27:39,664 [INFO] 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-12-05T22:27:39.6811462Z 2025-12-05 22:27:39,665 [INFO] 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-12-05T22:27:39.6813225Z 2025-12-05 22:27:39,666 [INFO] 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-12-05T22:27:39.6815024Z 2025-12-05 22:27:39,667 [INFO] 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-12-05T22:27:39.6816927Z 2025-12-05 22:27:39,667 [INFO] 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-12-05T22:27:39.6818855Z 2025-12-05 22:27:39,668 [INFO] 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-12-05T22:27:39.6820597Z 2025-12-05 22:27:39,669 [INFO] 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-12-05T22:27:39.6822261Z 2025-12-05 22:27:39,670 [INFO] 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-12-05T22:27:39.6823906Z 2025-12-05 22:27:39,671 [INFO] 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-12-05T22:27:39.6825536Z 2025-12-05 22:27:39,672 [INFO] 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-12-05T22:27:39.6827102Z 2025-12-05 22:27:39,673 [INFO] 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-12-05T22:27:39.6828757Z 2025-12-05 22:27:39,673 [INFO] 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-12-05T22:27:39.6830355Z 2025-12-05 22:27:39,674 [INFO] 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-12-05T22:27:39.7057303Z 2025-12-05 22:27:39,675 [INFO] 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-12-05T22:27:39.7059063Z 2025-12-05 22:27:39,676 [INFO] 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-12-05T22:27:39.7060782Z 2025-12-05 22:27:39,677 [INFO] 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-12-05T22:27:39.7062425Z 2025-12-05 22:27:39,678 [INFO] 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-12-05T22:27:39.7064089Z 2025-12-05 22:27:39,678 [INFO] 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-12-05T22:27:39.7066109Z 2025-12-05 22:27:39,679 [INFO] 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-12-05T22:27:39.7067884Z 2025-12-05 22:27:39,680 [INFO] 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-12-05T22:27:39.7069595Z 2025-12-05 22:27:39,681 [INFO] 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-12-05T22:27:39.7071441Z 2025-12-05 22:27:39,682 [INFO] 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-12-05T22:27:39.7073431Z 2025-12-05 22:27:39,682 [INFO] 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-12-05T22:27:39.7075243Z 2025-12-05 22:27:39,683 [INFO] 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-12-05T22:27:39.7077063Z 2025-12-05 22:27:39,684 [INFO] 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-12-05T22:27:39.7078789Z 2025-12-05 22:27:39,685 [INFO] 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-12-05T22:27:39.7080456Z 2025-12-05 22:27:39,686 [INFO] 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-12-05T22:27:39.7082274Z 2025-12-05 22:27:39,687 [INFO] 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-12-05T22:27:39.7083886Z 2025-12-05 22:27:39,687 [INFO] 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-12-05T22:27:39.7085539Z 2025-12-05 22:27:39,688 [INFO] 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-12-05T22:27:39.7087132Z 2025-12-05 22:27:39,689 [INFO] 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-12-05T22:27:39.7088435Z 2025-12-05 22:27:39,690 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-12-05T22:27:39.7090141Z 2025-12-05 22:27:39,690 [INFO] 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-12-05T22:27:39.7092172Z 2025-12-05 22:27:39,691 [INFO] 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-12-05T22:27:39.7094140Z 2025-12-05 22:27:39,691 [INFO] 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-12-05T22:27:39.7096128Z 2025-12-05 22:27:39,692 [INFO] 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-12-05T22:27:39.7098287Z 2025-12-05 22:27:39,693 [INFO] 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-12-05T22:27:39.7100279Z 2025-12-05 22:27:39,694 [INFO] 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-12-05T22:27:39.7102411Z 2025-12-05 22:27:39,695 [INFO] 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-12-05T22:27:39.7104479Z 2025-12-05 22:27:39,696 [INFO] 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-12-05T22:27:39.7106782Z 2025-12-05 22:27:39,696 [INFO] 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-12-05T22:27:39.7109069Z 2025-12-05 22:27:39,697 [INFO] 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-12-05T22:27:39.7111197Z 2025-12-05 22:27:39,698 [INFO] 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-12-05T22:27:39.7113258Z 2025-12-05 22:27:39,699 [INFO] 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-12-05T22:27:39.7115461Z 2025-12-05 22:27:39,700 [INFO] 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-12-05T22:27:39.7117576Z 2025-12-05 22:27:39,701 [INFO] 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-12-05T22:27:39.7119803Z 2025-12-05 22:27:39,701 [INFO] 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-12-05T22:27:39.7121905Z 2025-12-05 22:27:39,702 [INFO] 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-12-05T22:27:39.7124116Z 2025-12-05 22:27:39,703 [INFO] 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-12-05T22:27:39.7126153Z 2025-12-05 22:27:39,704 [INFO] 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-12-05T22:27:39.7340682Z 2025-12-05 22:27:39,705 [INFO] 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-12-05T22:27:39.7342786Z 2025-12-05 22:27:39,706 [INFO] 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-12-05T22:27:39.7344801Z 2025-12-05 22:27:39,706 [INFO] 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-12-05T22:27:39.7347051Z 2025-12-05 22:27:39,707 [INFO] 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-12-05T22:27:39.7349225Z 2025-12-05 22:27:39,708 [INFO] 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-12-05T22:27:39.7351232Z 2025-12-05 22:27:39,709 [INFO] 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-12-05T22:27:39.7353305Z 2025-12-05 22:27:39,710 [INFO] 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-12-05T22:27:39.7355363Z 2025-12-05 22:27:39,711 [INFO] 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-12-05T22:27:39.7357610Z 2025-12-05 22:27:39,711 [INFO] 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-12-05T22:27:39.7359633Z 2025-12-05 22:27:39,712 [INFO] 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-12-05T22:27:39.7361666Z 2025-12-05 22:27:39,713 [INFO] 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-12-05T22:27:39.7363702Z 2025-12-05 22:27:39,714 [INFO] 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-12-05T22:27:39.7366052Z 2025-12-05 22:27:39,715 [INFO] 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-12-05T22:27:39.7368102Z 2025-12-05 22:27:39,716 [INFO] 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-12-05T22:27:39.7370132Z 2025-12-05 22:27:39,716 [INFO] 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-12-05T22:27:39.7372159Z 2025-12-05 22:27:39,717 [INFO] 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-12-05T22:27:39.7374385Z 2025-12-05 22:27:39,718 [INFO] 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-12-05T22:27:39.7376421Z 2025-12-05 22:27:39,719 [INFO] 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-12-05T22:27:39.7378464Z 2025-12-05 22:27:39,720 [INFO] 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-12-05T22:27:39.7380578Z 2025-12-05 22:27:39,720 [INFO] 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-12-05T22:27:39.7382806Z 2025-12-05 22:27:39,721 [INFO] 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-12-05T22:27:39.7384778Z 2025-12-05 22:27:39,722 [INFO] 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-12-05T22:27:39.7386785Z 2025-12-05 22:27:39,723 [INFO] 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-12-05T22:27:39.7388992Z 2025-12-05 22:27:39,724 [INFO] 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-12-05T22:27:39.7391225Z 2025-12-05 22:27:39,725 [INFO] 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-12-05T22:27:39.7393214Z 2025-12-05 22:27:39,725 [INFO] 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-12-05T22:27:39.7395239Z 2025-12-05 22:27:39,726 [INFO] 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-12-05T22:27:39.7397323Z 2025-12-05 22:27:39,727 [INFO] 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-12-05T22:27:39.7399572Z 2025-12-05 22:27:39,728 [INFO] 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-12-05T22:27:39.7401602Z 2025-12-05 22:27:39,729 [INFO] 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-12-05T22:27:39.7403603Z 2025-12-05 22:27:39,730 [INFO] 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-12-05T22:27:39.7405608Z 2025-12-05 22:27:39,730 [INFO] 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-12-05T22:27:39.7407604Z 2025-12-05 22:27:39,731 [INFO] 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-12-05T22:27:39.7409723Z 2025-12-05 22:27:39,732 [INFO] 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-12-05T22:27:39.7609016Z 2025-12-05 22:27:39,733 [INFO] 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-12-05T22:27:39.7611079Z 2025-12-05 22:27:39,734 [INFO] 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-12-05T22:27:39.7613105Z 2025-12-05 22:27:39,735 [INFO] 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-12-05T22:27:39.7615252Z 2025-12-05 22:27:39,736 [INFO] 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-12-05T22:27:39.7617360Z 2025-12-05 22:27:39,737 [INFO] 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-12-05T22:27:39.7619561Z 2025-12-05 22:27:39,737 [INFO] 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-12-05T22:27:39.7621599Z 2025-12-05 22:27:39,738 [INFO] 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-12-05T22:27:39.7623661Z 2025-12-05 22:27:39,739 [INFO] 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-12-05T22:27:39.7626392Z 2025-12-05 22:27:39,740 [INFO] 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-12-05T22:27:39.7629012Z 2025-12-05 22:27:39,741 [INFO] 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-12-05T22:27:39.7631090Z 2025-12-05 22:27:39,742 [INFO] 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-12-05T22:27:39.7633104Z 2025-12-05 22:27:39,742 [INFO] 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-12-05T22:27:39.7635119Z 2025-12-05 22:27:39,743 [INFO] 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-12-05T22:27:39.7637443Z 2025-12-05 22:27:39,744 [INFO] 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-12-05T22:27:39.7639420Z 2025-12-05 22:27:39,745 [INFO] 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-12-05T22:27:39.7641576Z 2025-12-05 22:27:39,746 [INFO] 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-12-05T22:27:39.7643625Z 2025-12-05 22:27:39,747 [INFO] 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-12-05T22:27:39.7645862Z 2025-12-05 22:27:39,747 [INFO] 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-12-05T22:27:39.7647856Z 2025-12-05 22:27:39,748 [INFO] 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-12-05T22:27:39.7649866Z 2025-12-05 22:27:39,749 [INFO] 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-12-05T22:27:39.7651920Z 2025-12-05 22:27:39,750 [INFO] 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-12-05T22:27:39.7654269Z 2025-12-05 22:27:39,751 [INFO] 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-12-05T22:27:39.7656613Z 2025-12-05 22:27:39,752 [INFO] 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-12-05T22:27:39.7659199Z 2025-12-05 22:27:39,752 [INFO] 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-12-05T22:27:39.7661210Z 2025-12-05 22:27:39,753 [INFO] 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-12-05T22:27:39.7663714Z 2025-12-05 22:27:39,754 [INFO] 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-12-05T22:27:39.7666048Z 2025-12-05 22:27:39,755 [INFO] 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-12-05T22:27:39.7668123Z 2025-12-05 22:27:39,756 [INFO] 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-12-05T22:27:39.7670322Z 2025-12-05 22:27:39,757 [INFO] 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-12-05T22:27:39.7672540Z 2025-12-05 22:27:39,758 [INFO] 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-12-05T22:27:39.7674281Z 2025-12-05 22:27:39,759 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-12-05T22:27:39.7675870Z 2025-12-05 22:27:39,759 [INFO] 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-12-05T22:27:39.7677696Z 2025-12-05 22:27:39,760 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-12-05T22:27:39.7679335Z 2025-12-05 22:27:39,760 [INFO] 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-12-05T22:27:39.7876625Z 2025-12-05 22:27:39,760 [INFO] 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-12-05T22:27:39.7878378Z 2025-12-05 22:27:39,761 [INFO] 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-12-05T22:27:39.7879816Z 2025-12-05 22:27:39,762 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-12-05T22:27:39.7881334Z 2025-12-05 22:27:39,762 [INFO] 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-12-05T22:27:39.7883308Z 2025-12-05 22:27:39,762 [INFO] 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-12-05T22:27:39.7885738Z 2025-12-05 22:27:39,763 [INFO] 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-12-05T22:27:39.7888190Z 2025-12-05 22:27:39,764 [INFO] 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-12-05T22:27:39.7889730Z 2025-12-05 22:27:39,765 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir 2025-12-05T22:27:39.7890736Z 2025-12-05 22:27:39,765 [INFO] copying src/executorch/backends/nxp/tests/ir/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir 2025-12-05T22:27:39.7891795Z 2025-12-05 22:27:39,765 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter 2025-12-05T22:27:39.7892933Z 2025-12-05 22:27:39,765 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter 2025-12-05T22:27:39.7894097Z 2025-12-05 22:27:39,765 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/edge_passes 2025-12-05T22:27:39.7895379Z 2025-12-05 22:27:39,766 [INFO] copying src/executorch/backends/nxp/tests/ir/edge_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/edge_passes 2025-12-05T22:27:39.7897234Z 2025-12-05 22:27:39,766 [INFO] copying src/executorch/backends/nxp/tests/ir/edge_passes/test_remove_io_quant_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/edge_passes 2025-12-05T22:27:39.7898575Z 2025-12-05 22:27:39,767 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7900187Z 2025-12-05 22:27:39,767 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7901995Z 2025-12-05 22:27:39,767 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_abs_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7903911Z 2025-12-05 22:27:39,768 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_adaptive_avg_pool2d_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7905979Z 2025-12-05 22:27:39,769 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_add_tensor_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7907886Z 2025-12-05 22:27:39,770 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_addmm_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7909882Z 2025-12-05 22:27:39,771 [INFO] 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-12-05T22:27:39.7911761Z 2025-12-05 22:27:39,771 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_cat_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7913746Z 2025-12-05 22:27:39,772 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_clone_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7915656Z 2025-12-05 22:27:39,773 [INFO] 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-12-05T22:27:39.7917650Z 2025-12-05 22:27:39,774 [INFO] 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-12-05T22:27:39.7919710Z 2025-12-05 22:27:39,775 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_hardtanh_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7921726Z 2025-12-05 22:27:39,776 [INFO] 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-12-05T22:27:39.7923628Z 2025-12-05 22:27:39,777 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_mean_dim_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7925478Z 2025-12-05 22:27:39,777 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_mm_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7927371Z 2025-12-05 22:27:39,778 [INFO] 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-12-05T22:27:39.7929372Z 2025-12-05 22:27:39,779 [INFO] 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-12-05T22:27:39.7931348Z 2025-12-05 22:27:39,780 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_sigmoid_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7933254Z 2025-12-05 22:27:39,780 [INFO] 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-12-05T22:27:39.7935165Z 2025-12-05 22:27:39,781 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_sub_tensor_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7937043Z 2025-12-05 22:27:39,782 [INFO] copying src/executorch/backends/nxp/tests/ir/converter/node_converter/test_tanh_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:39.7939111Z 2025-12-05 22:27:39,783 [INFO] 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-12-05T22:27:39.7940484Z 2025-12-05 22:27:39,784 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-12-05T22:27:39.7941573Z 2025-12-05 22:27:39,784 [INFO] copying src/executorch/backends/openvino/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-12-05T22:27:39.7942971Z 2025-12-05 22:27:39,785 [INFO] copying src/executorch/backends/openvino/quantizer/observers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-12-05T22:27:39.7944393Z 2025-12-05 22:27:39,786 [INFO] copying src/executorch/backends/openvino/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-12-05T22:27:39.8226768Z 2025-12-05 22:27:39,787 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests 2025-12-05T22:27:39.8227951Z 2025-12-05 22:27:39,787 [INFO] copying src/executorch/backends/openvino/tests/test_runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests 2025-12-05T22:27:39.8229392Z 2025-12-05 22:27:39,788 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/models 2025-12-05T22:27:39.8230600Z 2025-12-05 22:27:39,788 [INFO] copying src/executorch/backends/openvino/tests/models/test_classification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/models 2025-12-05T22:27:39.8231810Z 2025-12-05 22:27:39,789 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-12-05T22:27:39.8233070Z 2025-12-05 22:27:39,789 [INFO] 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-12-05T22:27:39.8234625Z 2025-12-05 22:27:39,790 [INFO] copying src/executorch/backends/openvino/tests/ops/test_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-12-05T22:27:39.8236016Z 2025-12-05 22:27:39,791 [INFO] copying src/executorch/backends/openvino/tests/ops/test_addmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-12-05T22:27:39.8237416Z 2025-12-05 22:27:39,791 [INFO] copying src/executorch/backends/openvino/tests/ops/test_arange.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-12-05T22:27:39.8238821Z 2025-12-05 22:27:39,792 [INFO] 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-12-05T22:27:39.8240283Z 2025-12-05 22:27:39,793 [INFO] copying src/executorch/backends/openvino/tests/ops/test_convolution.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-12-05T22:27:39.8241975Z 2025-12-05 22:27:39,794 [INFO] copying src/executorch/backends/openvino/tests/ops/test_mean.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-12-05T22:27:39.8243445Z 2025-12-05 22:27:39,795 [INFO] copying src/executorch/backends/openvino/tests/ops/test_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-12-05T22:27:39.8244869Z 2025-12-05 22:27:39,796 [INFO] copying src/executorch/backends/openvino/tests/ops/test_pooling.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-12-05T22:27:39.8246293Z 2025-12-05 22:27:39,796 [INFO] 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-12-05T22:27:39.8247697Z 2025-12-05 22:27:39,797 [INFO] copying src/executorch/backends/openvino/tests/ops/test_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-12-05T22:27:39.8248793Z 2025-12-05 22:27:39,799 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8249997Z 2025-12-05 22:27:39,799 [INFO] copying src/executorch/backends/qualcomm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8251389Z 2025-12-05 22:27:39,799 [INFO] copying src/executorch/backends/qualcomm/_passes/annotate_adaptive_avg_pool1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8252847Z 2025-12-05 22:27:39,800 [INFO] copying src/executorch/backends/qualcomm/_passes/annotate_quant_attrs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8254226Z 2025-12-05 22:27:39,801 [INFO] copying src/executorch/backends/qualcomm/_passes/annotate_stack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8255605Z 2025-12-05 22:27:39,802 [INFO] copying src/executorch/backends/qualcomm/_passes/annotate_unbind.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8257079Z 2025-12-05 22:27:39,803 [INFO] copying src/executorch/backends/qualcomm/_passes/build_quant_io.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8258530Z 2025-12-05 22:27:39,804 [INFO] copying src/executorch/backends/qualcomm/_passes/canonicalize_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8259964Z 2025-12-05 22:27:39,804 [INFO] copying src/executorch/backends/qualcomm/_passes/convert_bmm_to_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8261394Z 2025-12-05 22:27:39,805 [INFO] copying src/executorch/backends/qualcomm/_passes/convert_linear_to_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8262818Z 2025-12-05 22:27:39,806 [INFO] copying src/executorch/backends/qualcomm/_passes/convert_square_to_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8264203Z 2025-12-05 22:27:39,807 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_any.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8265752Z 2025-12-05 22:27:39,808 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_binary_alpha.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8267158Z 2025-12-05 22:27:39,809 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_cdist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8268695Z 2025-12-05 22:27:39,809 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_col_im.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8270090Z 2025-12-05 22:27:39,810 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_einsum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8271470Z 2025-12-05 22:27:39,811 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_expm1.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8272883Z 2025-12-05 22:27:39,812 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_floor_divide.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8274371Z 2025-12-05 22:27:39,813 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_glu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8275794Z 2025-12-05 22:27:39,813 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_linalg_vector_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8277248Z 2025-12-05 22:27:39,814 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_minmaxdim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8278654Z 2025-12-05 22:27:39,815 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_roll.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8280017Z 2025-12-05 22:27:39,816 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_silu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8281419Z 2025-12-05 22:27:39,816 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_threshold.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8282906Z 2025-12-05 22:27:39,817 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_triu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8284325Z 2025-12-05 22:27:39,818 [INFO] copying src/executorch/backends/qualcomm/_passes/decompose_wrap_with_autocast.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8285886Z 2025-12-05 22:27:39,819 [INFO] copying src/executorch/backends/qualcomm/_passes/expand_broadcast_tensor_shape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8287348Z 2025-12-05 22:27:39,819 [INFO] copying src/executorch/backends/qualcomm/_passes/fixed_linear_keep_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8288702Z 2025-12-05 22:27:39,820 [INFO] copying src/executorch/backends/qualcomm/_passes/fold_qdq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8290156Z 2025-12-05 22:27:39,821 [INFO] copying src/executorch/backends/qualcomm/_passes/fuse_consecutive_cast.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8602458Z 2025-12-05 22:27:39,822 [INFO] copying src/executorch/backends/qualcomm/_passes/fuse_consecutive_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8603891Z 2025-12-05 22:27:39,823 [INFO] copying src/executorch/backends/qualcomm/_passes/i64_to_i32.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8605230Z 2025-12-05 22:27:39,823 [INFO] copying src/executorch/backends/qualcomm/_passes/insert_io_qdq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8606605Z 2025-12-05 22:27:39,824 [INFO] copying src/executorch/backends/qualcomm/_passes/insert_requantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8608390Z 2025-12-05 22:27:39,825 [INFO] copying src/executorch/backends/qualcomm/_passes/insert_reshape_for_reduce_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8609851Z 2025-12-05 22:27:39,826 [INFO] copying src/executorch/backends/qualcomm/_passes/layout_transform.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8611304Z 2025-12-05 22:27:39,827 [INFO] copying src/executorch/backends/qualcomm/_passes/lift_constant_scalar_operands.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8612730Z 2025-12-05 22:27:39,827 [INFO] copying src/executorch/backends/qualcomm/_passes/qnn_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8614153Z 2025-12-05 22:27:39,828 [INFO] copying src/executorch/backends/qualcomm/_passes/recompose_pixel_unshuffle.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8615699Z 2025-12-05 22:27:39,829 [INFO] copying src/executorch/backends/qualcomm/_passes/recompose_rms_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8617169Z 2025-12-05 22:27:39,830 [INFO] copying src/executorch/backends/qualcomm/_passes/reduce_dynamic_range.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8618731Z 2025-12-05 22:27:39,831 [INFO] copying src/executorch/backends/qualcomm/_passes/remove_0d_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8620131Z 2025-12-05 22:27:39,831 [INFO] copying src/executorch/backends/qualcomm/_passes/remove_redundancy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8621526Z 2025-12-05 22:27:39,832 [INFO] copying src/executorch/backends/qualcomm/_passes/replace_arange_args.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8622941Z 2025-12-05 22:27:39,833 [INFO] copying src/executorch/backends/qualcomm/_passes/replace_inf_values.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8624604Z 2025-12-05 22:27:39,834 [INFO] copying src/executorch/backends/qualcomm/_passes/seq_mse.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8625916Z 2025-12-05 22:27:39,835 [INFO] copying src/executorch/backends/qualcomm/_passes/tag_quant_io.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8627230Z 2025-12-05 22:27:39,835 [INFO] copying src/executorch/backends/qualcomm/_passes/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-12-05T22:27:39.8628269Z 2025-12-05 22:27:39,838 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8629434Z 2025-12-05 22:27:39,838 [INFO] copying src/executorch/backends/qualcomm/builders/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8630903Z 2025-12-05 22:27:39,838 [INFO] copying src/executorch/backends/qualcomm/builders/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8632418Z 2025-12-05 22:27:39,839 [INFO] copying src/executorch/backends/qualcomm/builders/node_visitor_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8633825Z 2025-12-05 22:27:39,840 [INFO] copying src/executorch/backends/qualcomm/builders/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8635233Z 2025-12-05 22:27:39,841 [INFO] copying src/executorch/backends/qualcomm/builders/op_adaptive_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8636792Z 2025-12-05 22:27:39,842 [INFO] copying src/executorch/backends/qualcomm/builders/op_adaptive_max_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8638293Z 2025-12-05 22:27:39,843 [INFO] copying src/executorch/backends/qualcomm/builders/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8639721Z 2025-12-05 22:27:39,843 [INFO] copying src/executorch/backends/qualcomm/builders/op_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8641064Z 2025-12-05 22:27:39,844 [INFO] copying src/executorch/backends/qualcomm/builders/op_amin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8642414Z 2025-12-05 22:27:39,845 [INFO] copying src/executorch/backends/qualcomm/builders/op_and.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8643773Z 2025-12-05 22:27:39,846 [INFO] copying src/executorch/backends/qualcomm/builders/op_arange.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8645136Z 2025-12-05 22:27:39,847 [INFO] copying src/executorch/backends/qualcomm/builders/op_argmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8646676Z 2025-12-05 22:27:39,847 [INFO] copying src/executorch/backends/qualcomm/builders/op_argmin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8648032Z 2025-12-05 22:27:39,848 [INFO] copying src/executorch/backends/qualcomm/builders/op_asin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8649375Z 2025-12-05 22:27:39,849 [INFO] copying src/executorch/backends/qualcomm/builders/op_atan.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8650747Z 2025-12-05 22:27:39,850 [INFO] copying src/executorch/backends/qualcomm/builders/op_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8652238Z 2025-12-05 22:27:39,851 [INFO] copying src/executorch/backends/qualcomm/builders/op_avg_pool3d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8653750Z 2025-12-05 22:27:39,851 [INFO] copying src/executorch/backends/qualcomm/builders/op_batch_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8655196Z 2025-12-05 22:27:39,852 [INFO] copying src/executorch/backends/qualcomm/builders/op_binary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8656552Z 2025-12-05 22:27:39,853 [INFO] copying src/executorch/backends/qualcomm/builders/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8657899Z 2025-12-05 22:27:39,854 [INFO] copying src/executorch/backends/qualcomm/builders/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8659242Z 2025-12-05 22:27:39,854 [INFO] copying src/executorch/backends/qualcomm/builders/op_ceil.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8660605Z 2025-12-05 22:27:39,855 [INFO] copying src/executorch/backends/qualcomm/builders/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8662134Z 2025-12-05 22:27:39,856 [INFO] copying src/executorch/backends/qualcomm/builders/op_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8663469Z 2025-12-05 22:27:39,857 [INFO] copying src/executorch/backends/qualcomm/builders/op_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8664877Z 2025-12-05 22:27:39,858 [INFO] copying src/executorch/backends/qualcomm/builders/op_cos.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8666217Z 2025-12-05 22:27:39,858 [INFO] copying src/executorch/backends/qualcomm/builders/op_cum_sum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8969971Z 2025-12-05 22:27:39,859 [INFO] copying src/executorch/backends/qualcomm/builders/op_custom_op.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8971399Z 2025-12-05 22:27:39,860 [INFO] copying src/executorch/backends/qualcomm/builders/op_depth_to_space.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8972807Z 2025-12-05 22:27:39,861 [INFO] copying src/executorch/backends/qualcomm/builders/op_dequantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8974202Z 2025-12-05 22:27:39,862 [INFO] copying src/executorch/backends/qualcomm/builders/op_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8975631Z 2025-12-05 22:27:39,862 [INFO] copying src/executorch/backends/qualcomm/builders/op_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8977052Z 2025-12-05 22:27:39,863 [INFO] copying src/executorch/backends/qualcomm/builders/op_embedding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8978405Z 2025-12-05 22:27:39,864 [INFO] copying src/executorch/backends/qualcomm/builders/op_eq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8979734Z 2025-12-05 22:27:39,865 [INFO] copying src/executorch/backends/qualcomm/builders/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8981101Z 2025-12-05 22:27:39,865 [INFO] copying src/executorch/backends/qualcomm/builders/op_expand.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8982631Z 2025-12-05 22:27:39,866 [INFO] copying src/executorch/backends/qualcomm/builders/op_flip.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8984071Z 2025-12-05 22:27:39,867 [INFO] copying src/executorch/backends/qualcomm/builders/op_floor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8985410Z 2025-12-05 22:27:39,868 [INFO] copying src/executorch/backends/qualcomm/builders/op_full.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8986778Z 2025-12-05 22:27:39,868 [INFO] copying src/executorch/backends/qualcomm/builders/op_full_like.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8988154Z 2025-12-05 22:27:39,869 [INFO] copying src/executorch/backends/qualcomm/builders/op_gather.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8989558Z 2025-12-05 22:27:39,870 [INFO] copying src/executorch/backends/qualcomm/builders/op_ge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8990899Z 2025-12-05 22:27:39,871 [INFO] copying src/executorch/backends/qualcomm/builders/op_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8992363Z 2025-12-05 22:27:39,872 [INFO] copying src/executorch/backends/qualcomm/builders/op_grid_sampler_2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8993769Z 2025-12-05 22:27:39,872 [INFO] copying src/executorch/backends/qualcomm/builders/op_group_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8995269Z 2025-12-05 22:27:39,873 [INFO] copying src/executorch/backends/qualcomm/builders/op_gt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8996728Z 2025-12-05 22:27:39,874 [INFO] copying src/executorch/backends/qualcomm/builders/op_hardsigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8998132Z 2025-12-05 22:27:39,875 [INFO] copying src/executorch/backends/qualcomm/builders/op_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.8999633Z 2025-12-05 22:27:39,875 [INFO] copying src/executorch/backends/qualcomm/builders/op_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9001014Z 2025-12-05 22:27:39,876 [INFO] copying src/executorch/backends/qualcomm/builders/op_index.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9002378Z 2025-12-05 22:27:39,877 [INFO] copying src/executorch/backends/qualcomm/builders/op_index_put.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9003778Z 2025-12-05 22:27:39,878 [INFO] copying src/executorch/backends/qualcomm/builders/op_index_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9005194Z 2025-12-05 22:27:39,879 [INFO] copying src/executorch/backends/qualcomm/builders/op_instance_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9006736Z 2025-12-05 22:27:39,880 [INFO] copying src/executorch/backends/qualcomm/builders/op_layer_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9008260Z 2025-12-05 22:27:39,880 [INFO] copying src/executorch/backends/qualcomm/builders/op_le.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9009606Z 2025-12-05 22:27:39,881 [INFO] copying src/executorch/backends/qualcomm/builders/op_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9010962Z 2025-12-05 22:27:39,882 [INFO] copying src/executorch/backends/qualcomm/builders/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9012436Z 2025-12-05 22:27:39,883 [INFO] copying src/executorch/backends/qualcomm/builders/op_log_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9013832Z 2025-12-05 22:27:39,884 [INFO] copying src/executorch/backends/qualcomm/builders/op_logical_not.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9015331Z 2025-12-05 22:27:39,885 [INFO] copying src/executorch/backends/qualcomm/builders/op_lt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9016690Z 2025-12-05 22:27:39,886 [INFO] copying src/executorch/backends/qualcomm/builders/op_matmul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9018044Z 2025-12-05 22:27:39,887 [INFO] copying src/executorch/backends/qualcomm/builders/op_max.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9019580Z 2025-12-05 22:27:39,888 [INFO] copying src/executorch/backends/qualcomm/builders/op_max_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9020964Z 2025-12-05 22:27:39,888 [INFO] copying src/executorch/backends/qualcomm/builders/op_max_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9022335Z 2025-12-05 22:27:39,889 [INFO] copying src/executorch/backends/qualcomm/builders/op_mean_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9024097Z 2025-12-05 22:27:39,890 [INFO] copying src/executorch/backends/qualcomm/builders/op_min.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9025460Z 2025-12-05 22:27:39,891 [INFO] copying src/executorch/backends/qualcomm/builders/op_min_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9026803Z 2025-12-05 22:27:39,892 [INFO] copying src/executorch/backends/qualcomm/builders/op_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9028134Z 2025-12-05 22:27:39,892 [INFO] copying src/executorch/backends/qualcomm/builders/op_ne.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9029536Z 2025-12-05 22:27:39,893 [INFO] copying src/executorch/backends/qualcomm/builders/op_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9030852Z 2025-12-05 22:27:39,894 [INFO] copying src/executorch/backends/qualcomm/builders/op_or.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9032304Z 2025-12-05 22:27:39,895 [INFO] copying src/executorch/backends/qualcomm/builders/op_pad.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9033634Z 2025-12-05 22:27:39,895 [INFO] copying src/executorch/backends/qualcomm/builders/op_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9338046Z 2025-12-05 22:27:39,896 [INFO] copying src/executorch/backends/qualcomm/builders/op_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9339452Z 2025-12-05 22:27:39,897 [INFO] copying src/executorch/backends/qualcomm/builders/op_quantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9340833Z 2025-12-05 22:27:39,898 [INFO] copying src/executorch/backends/qualcomm/builders/op_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9342189Z 2025-12-05 22:27:39,898 [INFO] copying src/executorch/backends/qualcomm/builders/op_repeat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9343775Z 2025-12-05 22:27:39,899 [INFO] copying src/executorch/backends/qualcomm/builders/op_reshape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9345409Z 2025-12-05 22:27:39,900 [INFO] copying src/executorch/backends/qualcomm/builders/op_resize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9346771Z 2025-12-05 22:27:39,901 [INFO] copying src/executorch/backends/qualcomm/builders/op_rms_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9348137Z 2025-12-05 22:27:39,902 [INFO] copying src/executorch/backends/qualcomm/builders/op_round.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9349563Z 2025-12-05 22:27:39,902 [INFO] copying src/executorch/backends/qualcomm/builders/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9350959Z 2025-12-05 22:27:39,903 [INFO] copying src/executorch/backends/qualcomm/builders/op_scalar_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9352371Z 2025-12-05 22:27:39,904 [INFO] copying src/executorch/backends/qualcomm/builders/op_select_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9353747Z 2025-12-05 22:27:39,905 [INFO] copying src/executorch/backends/qualcomm/builders/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9355365Z 2025-12-05 22:27:39,905 [INFO] copying src/executorch/backends/qualcomm/builders/op_sign.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9356947Z 2025-12-05 22:27:39,906 [INFO] copying src/executorch/backends/qualcomm/builders/op_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9358301Z 2025-12-05 22:27:39,907 [INFO] copying src/executorch/backends/qualcomm/builders/op_skip_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9359686Z 2025-12-05 22:27:39,908 [INFO] copying src/executorch/backends/qualcomm/builders/op_slice_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9361093Z 2025-12-05 22:27:39,909 [INFO] copying src/executorch/backends/qualcomm/builders/op_slice_scatter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9362473Z 2025-12-05 22:27:39,909 [INFO] copying src/executorch/backends/qualcomm/builders/op_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9363959Z 2025-12-05 22:27:39,910 [INFO] copying src/executorch/backends/qualcomm/builders/op_space_to_depth.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9365393Z 2025-12-05 22:27:39,911 [INFO] copying src/executorch/backends/qualcomm/builders/op_split_with_sizes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9366774Z 2025-12-05 22:27:39,912 [INFO] copying src/executorch/backends/qualcomm/builders/op_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9368139Z 2025-12-05 22:27:39,912 [INFO] copying src/executorch/backends/qualcomm/builders/op_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9369518Z 2025-12-05 22:27:39,913 [INFO] copying src/executorch/backends/qualcomm/builders/op_stack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9370846Z 2025-12-05 22:27:39,914 [INFO] copying src/executorch/backends/qualcomm/builders/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9372538Z 2025-12-05 22:27:39,915 [INFO] copying src/executorch/backends/qualcomm/builders/op_sum_int_list.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9373930Z 2025-12-05 22:27:39,915 [INFO] copying src/executorch/backends/qualcomm/builders/op_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9375257Z 2025-12-05 22:27:39,916 [INFO] copying src/executorch/backends/qualcomm/builders/op_to.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9376604Z 2025-12-05 22:27:39,917 [INFO] copying src/executorch/backends/qualcomm/builders/op_topk.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9377978Z 2025-12-05 22:27:39,918 [INFO] copying src/executorch/backends/qualcomm/builders/op_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9379355Z 2025-12-05 22:27:39,918 [INFO] copying src/executorch/backends/qualcomm/builders/op_unbind.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9380739Z 2025-12-05 22:27:39,919 [INFO] copying src/executorch/backends/qualcomm/builders/op_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9382268Z 2025-12-05 22:27:39,920 [INFO] copying src/executorch/backends/qualcomm/builders/op_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9384047Z 2025-12-05 22:27:39,921 [INFO] copying src/executorch/backends/qualcomm/builders/op_upsample_nearest2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9385466Z 2025-12-05 22:27:39,922 [INFO] copying src/executorch/backends/qualcomm/builders/op_where.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9386805Z 2025-12-05 22:27:39,922 [INFO] copying src/executorch/backends/qualcomm/builders/op_xor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9388174Z 2025-12-05 22:27:39,923 [INFO] copying src/executorch/backends/qualcomm/builders/qnn_constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9389643Z 2025-12-05 22:27:39,924 [INFO] copying src/executorch/backends/qualcomm/builders/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-12-05T22:27:39.9390711Z 2025-12-05 22:27:39,925 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-12-05T22:27:39.9391804Z 2025-12-05 22:27:39,925 [INFO] copying src/executorch/backends/qualcomm/debugger/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-12-05T22:27:39.9392991Z 2025-12-05 22:27:39,926 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-12-05T22:27:39.9394266Z 2025-12-05 22:27:39,926 [INFO] copying src/executorch/backends/qualcomm/partition/common_defs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-12-05T22:27:39.9395717Z 2025-12-05 22:27:39,927 [INFO] copying src/executorch/backends/qualcomm/partition/qnn_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-12-05T22:27:39.9397138Z 2025-12-05 22:27:39,928 [INFO] copying src/executorch/backends/qualcomm/partition/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-12-05T22:27:39.9398230Z 2025-12-05 22:27:39,929 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-12-05T22:27:39.9399364Z 2025-12-05 22:27:39,929 [INFO] copying src/executorch/backends/qualcomm/quantizer/annotators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-12-05T22:27:39.9400907Z 2025-12-05 22:27:39,931 [INFO] copying src/executorch/backends/qualcomm/quantizer/custom_annotation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-12-05T22:27:39.9402493Z 2025-12-05 22:27:39,932 [INFO] copying src/executorch/backends/qualcomm/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-12-05T22:27:39.9734289Z 2025-12-05 22:27:39,933 [INFO] copying src/executorch/backends/qualcomm/quantizer/quant_recipe.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-12-05T22:27:39.9735775Z 2025-12-05 22:27:39,934 [INFO] copying src/executorch/backends/qualcomm/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-12-05T22:27:39.9736881Z 2025-12-05 22:27:39,935 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/recipes 2025-12-05T22:27:39.9737970Z 2025-12-05 22:27:39,935 [INFO] copying src/executorch/backends/qualcomm/recipes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/recipes 2025-12-05T22:27:39.9739396Z 2025-12-05 22:27:39,936 [INFO] copying src/executorch/backends/qualcomm/recipes/qnn_recipe_provider.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/recipes 2025-12-05T22:27:39.9741123Z 2025-12-05 22:27:39,936 [INFO] copying src/executorch/backends/qualcomm/recipes/qnn_recipe_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/recipes 2025-12-05T22:27:39.9742434Z 2025-12-05 22:27:39,937 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/scripts 2025-12-05T22:27:39.9743541Z 2025-12-05 22:27:39,938 [INFO] copying src/executorch/backends/qualcomm/scripts/download_qnn_sdk.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/scripts 2025-12-05T22:27:39.9744692Z 2025-12-05 22:27:39,938 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-12-05T22:27:39.9745876Z 2025-12-05 22:27:39,939 [INFO] copying src/executorch/backends/qualcomm/serialization/qc_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-12-05T22:27:39.9747599Z 2025-12-05 22:27:39,939 [INFO] copying src/executorch/backends/qualcomm/serialization/qc_schema_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-12-05T22:27:39.9748973Z 2025-12-05 22:27:39,940 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-12-05T22:27:39.9750036Z 2025-12-05 22:27:39,941 [INFO] copying src/executorch/backends/qualcomm/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-12-05T22:27:39.9751347Z 2025-12-05 22:27:39,943 [INFO] copying src/executorch/backends/qualcomm/tests/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-12-05T22:27:39.9752705Z 2025-12-05 22:27:39,944 [INFO] copying src/executorch/backends/qualcomm/tests/test_qnn_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-12-05T22:27:39.9754041Z 2025-12-05 22:27:39,947 [INFO] copying src/executorch/backends/qualcomm/tests/tester.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-12-05T22:27:39.9755495Z 2025-12-05 22:27:39,947 [INFO] copying src/executorch/backends/qualcomm/tests/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-12-05T22:27:39.9756646Z 2025-12-05 22:27:39,948 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-12-05T22:27:39.9757707Z 2025-12-05 22:27:39,949 [INFO] copying src/executorch/backends/qualcomm/utils/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-12-05T22:27:39.9759161Z 2025-12-05 22:27:39,949 [INFO] copying src/executorch/backends/qualcomm/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-12-05T22:27:39.9760277Z 2025-12-05 22:27:39,951 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers 2025-12-05T22:27:39.9761607Z 2025-12-05 22:27:39,952 [INFO] copying src/executorch/backends/qualcomm/quantizer/observers/concat_observer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers 2025-12-05T22:27:39.9763609Z 2025-12-05 22:27:39,953 [INFO] 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-12-05T22:27:39.9765423Z 2025-12-05 22:27:39,953 [INFO] 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-12-05T22:27:39.9766699Z 2025-12-05 22:27:39,955 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes 2025-12-05T22:27:39.9767797Z 2025-12-05 22:27:39,955 [INFO] copying src/executorch/backends/samsung/_passes/annotate_qparams.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes 2025-12-05T22:27:39.9769229Z 2025-12-05 22:27:39,956 [INFO] copying src/executorch/backends/samsung/_passes/annotate_scalar_parameters.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes 2025-12-05T22:27:39.9770889Z 2025-12-05 22:27:39,956 [INFO] copying src/executorch/backends/samsung/_passes/conv1d_to_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes 2025-12-05T22:27:39.9772403Z 2025-12-05 22:27:39,957 [INFO] copying src/executorch/backends/samsung/_passes/customized_constant_prop.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes 2025-12-05T22:27:39.9773778Z 2025-12-05 22:27:39,958 [INFO] copying src/executorch/backends/samsung/_passes/fold_qdq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes 2025-12-05T22:27:39.9775079Z 2025-12-05 22:27:39,959 [INFO] copying src/executorch/backends/samsung/_passes/fuse_conv_act.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes 2025-12-05T22:27:39.9776400Z 2025-12-05 22:27:39,959 [INFO] copying src/executorch/backends/samsung/_passes/insert_qdq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes 2025-12-05T22:27:39.9777760Z 2025-12-05 22:27:39,960 [INFO] copying src/executorch/backends/samsung/_passes/remove_useless_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes 2025-12-05T22:27:39.9779383Z 2025-12-05 22:27:39,961 [INFO] copying src/executorch/backends/samsung/_passes/replace_scalar_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes 2025-12-05T22:27:39.9780716Z 2025-12-05 22:27:39,962 [INFO] copying src/executorch/backends/samsung/_passes/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes 2025-12-05T22:27:39.9781761Z 2025-12-05 22:27:39,963 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:39.9782820Z 2025-12-05 22:27:39,963 [INFO] copying src/executorch/backends/samsung/builders/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:39.9784173Z 2025-12-05 22:27:39,964 [INFO] copying src/executorch/backends/samsung/builders/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:39.9785516Z 2025-12-05 22:27:39,965 [INFO] copying src/executorch/backends/samsung/builders/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:39.9787128Z 2025-12-05 22:27:39,966 [INFO] copying src/executorch/backends/samsung/builders/op_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:39.9788693Z 2025-12-05 22:27:39,966 [INFO] copying src/executorch/backends/samsung/builders/op_batch_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:39.9790032Z 2025-12-05 22:27:39,967 [INFO] copying src/executorch/backends/samsung/builders/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:39.9791353Z 2025-12-05 22:27:39,968 [INFO] copying src/executorch/backends/samsung/builders/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:39.9792689Z 2025-12-05 22:27:39,969 [INFO] copying src/executorch/backends/samsung/builders/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:39.9794237Z 2025-12-05 22:27:39,969 [INFO] copying src/executorch/backends/samsung/builders/op_constant_pad_nd.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:39.9795741Z 2025-12-05 22:27:39,970 [INFO] copying src/executorch/backends/samsung/builders/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:39.9797126Z 2025-12-05 22:27:39,971 [INFO] copying src/executorch/backends/samsung/builders/op_dequantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:39.9798467Z 2025-12-05 22:27:39,972 [INFO] copying src/executorch/backends/samsung/builders/op_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0096901Z 2025-12-05 22:27:39,972 [INFO] copying src/executorch/backends/samsung/builders/op_embedding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0098330Z 2025-12-05 22:27:39,973 [INFO] copying src/executorch/backends/samsung/builders/op_expand_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0099704Z 2025-12-05 22:27:39,974 [INFO] copying src/executorch/backends/samsung/builders/op_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0101071Z 2025-12-05 22:27:39,975 [INFO] copying src/executorch/backends/samsung/builders/op_getitem.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0102501Z 2025-12-05 22:27:39,976 [INFO] copying src/executorch/backends/samsung/builders/op_hardsigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0104281Z 2025-12-05 22:27:39,976 [INFO] copying src/executorch/backends/samsung/builders/op_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0105660Z 2025-12-05 22:27:39,977 [INFO] copying src/executorch/backends/samsung/builders/op_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0107042Z 2025-12-05 22:27:39,978 [INFO] copying src/executorch/backends/samsung/builders/op_layer_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0108459Z 2025-12-05 22:27:39,979 [INFO] copying src/executorch/backends/samsung/builders/op_leaky_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0109829Z 2025-12-05 22:27:39,979 [INFO] copying src/executorch/backends/samsung/builders/op_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0111202Z 2025-12-05 22:27:39,980 [INFO] copying src/executorch/backends/samsung/builders/op_log_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0112571Z 2025-12-05 22:27:39,981 [INFO] copying src/executorch/backends/samsung/builders/op_max_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0114134Z 2025-12-05 22:27:39,982 [INFO] copying src/executorch/backends/samsung/builders/op_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0115500Z 2025-12-05 22:27:39,983 [INFO] copying src/executorch/backends/samsung/builders/op_mean_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0117199Z 2025-12-05 22:27:39,983 [INFO] copying src/executorch/backends/samsung/builders/op_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0118707Z 2025-12-05 22:27:39,984 [INFO] copying src/executorch/backends/samsung/builders/op_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0120053Z 2025-12-05 22:27:39,985 [INFO] copying src/executorch/backends/samsung/builders/op_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0121429Z 2025-12-05 22:27:39,986 [INFO] copying src/executorch/backends/samsung/builders/op_pixel_shuffle.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0122824Z 2025-12-05 22:27:39,986 [INFO] copying src/executorch/backends/samsung/builders/op_quantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0124164Z 2025-12-05 22:27:39,987 [INFO] copying src/executorch/backends/samsung/builders/op_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0125636Z 2025-12-05 22:27:39,988 [INFO] copying src/executorch/backends/samsung/builders/op_reshape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0127002Z 2025-12-05 22:27:39,989 [INFO] copying src/executorch/backends/samsung/builders/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0128579Z 2025-12-05 22:27:39,990 [INFO] copying src/executorch/backends/samsung/builders/op_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0129956Z 2025-12-05 22:27:39,990 [INFO] copying src/executorch/backends/samsung/builders/op_slice_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0131331Z 2025-12-05 22:27:39,991 [INFO] copying src/executorch/backends/samsung/builders/op_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0132667Z 2025-12-05 22:27:39,992 [INFO] copying src/executorch/backends/samsung/builders/op_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0134019Z 2025-12-05 22:27:39,993 [INFO] copying src/executorch/backends/samsung/builders/op_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0135363Z 2025-12-05 22:27:39,993 [INFO] copying src/executorch/backends/samsung/builders/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0136673Z 2025-12-05 22:27:39,994 [INFO] copying src/executorch/backends/samsung/builders/op_to_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0138255Z 2025-12-05 22:27:39,995 [INFO] copying src/executorch/backends/samsung/builders/op_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0139680Z 2025-12-05 22:27:39,996 [INFO] copying src/executorch/backends/samsung/builders/op_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0141146Z 2025-12-05 22:27:39,996 [INFO] copying src/executorch/backends/samsung/builders/op_upsample_nearest2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0142660Z 2025-12-05 22:27:39,997 [INFO] copying src/executorch/backends/samsung/builders/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders 2025-12-05T22:27:40.0143751Z 2025-12-05 22:27:39,998 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/partition 2025-12-05T22:27:40.0144883Z 2025-12-05 22:27:39,998 [INFO] copying src/executorch/backends/samsung/partition/enn_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/partition 2025-12-05T22:27:40.0146033Z 2025-12-05 22:27:39,999 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/quantizer 2025-12-05T22:27:40.0147315Z 2025-12-05 22:27:39,999 [INFO] copying src/executorch/backends/samsung/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/quantizer 2025-12-05T22:27:40.0148767Z 2025-12-05 22:27:40,000 [INFO] copying src/executorch/backends/samsung/quantizer/annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/quantizer 2025-12-05T22:27:40.0150168Z 2025-12-05 22:27:40,001 [INFO] copying src/executorch/backends/samsung/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/quantizer 2025-12-05T22:27:40.0151547Z 2025-12-05 22:27:40,002 [INFO] copying src/executorch/backends/samsung/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/quantizer 2025-12-05T22:27:40.0152679Z 2025-12-05 22:27:40,003 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/serialization 2025-12-05T22:27:40.0154017Z 2025-12-05 22:27:40,003 [INFO] copying src/executorch/backends/samsung/serialization/compile_options.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/serialization 2025-12-05T22:27:40.0155704Z 2025-12-05 22:27:40,004 [INFO] copying src/executorch/backends/samsung/serialization/enn_graph_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/serialization 2025-12-05T22:27:40.0156870Z 2025-12-05 22:27:40,005 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/utils 2025-12-05T22:27:40.0157929Z 2025-12-05 22:27:40,005 [INFO] copying src/executorch/backends/samsung/utils/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/utils 2025-12-05T22:27:40.0159243Z 2025-12-05 22:27:40,007 [INFO] copying src/executorch/backends/samsung/utils/export_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/utils 2025-12-05T22:27:40.0160541Z 2025-12-05 22:27:40,007 [INFO] copying src/executorch/backends/samsung/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/utils 2025-12-05T22:27:40.0161684Z 2025-12-05 22:27:40,009 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0457153Z 2025-12-05 22:27:40,009 [INFO] copying src/executorch/backends/samsung/test/ops/test_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0458589Z 2025-12-05 22:27:40,010 [INFO] copying src/executorch/backends/samsung/test/ops/test_avg_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0459992Z 2025-12-05 22:27:40,011 [INFO] copying src/executorch/backends/samsung/test/ops/test_batch_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0461348Z 2025-12-05 22:27:40,012 [INFO] copying src/executorch/backends/samsung/test/ops/test_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0462783Z 2025-12-05 22:27:40,013 [INFO] copying src/executorch/backends/samsung/test/ops/test_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0464446Z 2025-12-05 22:27:40,014 [INFO] copying src/executorch/backends/samsung/test/ops/test_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0465848Z 2025-12-05 22:27:40,015 [INFO] copying src/executorch/backends/samsung/test/ops/test_constant_pad_nd.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0467267Z 2025-12-05 22:27:40,015 [INFO] copying src/executorch/backends/samsung/test/ops/test_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0468685Z 2025-12-05 22:27:40,016 [INFO] copying src/executorch/backends/samsung/test/ops/test_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0470074Z 2025-12-05 22:27:40,017 [INFO] copying src/executorch/backends/samsung/test/ops/test_embedding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0471646Z 2025-12-05 22:27:40,018 [INFO] copying src/executorch/backends/samsung/test/ops/test_expand_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0473038Z 2025-12-05 22:27:40,018 [INFO] copying src/executorch/backends/samsung/test/ops/test_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0474416Z 2025-12-05 22:27:40,019 [INFO] copying src/executorch/backends/samsung/test/ops/test_leaky_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0475808Z 2025-12-05 22:27:40,020 [INFO] copying src/executorch/backends/samsung/test/ops/test_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0477324Z 2025-12-05 22:27:40,021 [INFO] copying src/executorch/backends/samsung/test/ops/test_log_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0478772Z 2025-12-05 22:27:40,021 [INFO] copying src/executorch/backends/samsung/test/ops/test_max_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0480331Z 2025-12-05 22:27:40,022 [INFO] copying src/executorch/backends/samsung/test/ops/test_mean_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0481707Z 2025-12-05 22:27:40,023 [INFO] copying src/executorch/backends/samsung/test/ops/test_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0483066Z 2025-12-05 22:27:40,024 [INFO] copying src/executorch/backends/samsung/test/ops/test_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0484600Z 2025-12-05 22:27:40,025 [INFO] copying src/executorch/backends/samsung/test/ops/test_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0486001Z 2025-12-05 22:27:40,025 [INFO] copying src/executorch/backends/samsung/test/ops/test_pixel_shuffle.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0487534Z 2025-12-05 22:27:40,026 [INFO] copying src/executorch/backends/samsung/test/ops/test_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0489031Z 2025-12-05 22:27:40,027 [INFO] copying src/executorch/backends/samsung/test/ops/test_reshape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0490398Z 2025-12-05 22:27:40,027 [INFO] copying src/executorch/backends/samsung/test/ops/test_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0491773Z 2025-12-05 22:27:40,028 [INFO] copying src/executorch/backends/samsung/test/ops/test_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0493255Z 2025-12-05 22:27:40,029 [INFO] copying src/executorch/backends/samsung/test/ops/test_slice_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0494644Z 2025-12-05 22:27:40,030 [INFO] copying src/executorch/backends/samsung/test/ops/test_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0496154Z 2025-12-05 22:27:40,030 [INFO] copying src/executorch/backends/samsung/test/ops/test_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0497529Z 2025-12-05 22:27:40,031 [INFO] copying src/executorch/backends/samsung/test/ops/test_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0498887Z 2025-12-05 22:27:40,032 [INFO] copying src/executorch/backends/samsung/test/ops/test_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0500341Z 2025-12-05 22:27:40,033 [INFO] copying src/executorch/backends/samsung/test/ops/test_to_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0501721Z 2025-12-05 22:27:40,034 [INFO] copying src/executorch/backends/samsung/test/ops/test_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0503180Z 2025-12-05 22:27:40,035 [INFO] copying src/executorch/backends/samsung/test/ops/test_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0504728Z 2025-12-05 22:27:40,035 [INFO] copying src/executorch/backends/samsung/test/ops/test_upsample_nearest2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops 2025-12-05T22:27:40.0506073Z 2025-12-05 22:27:40,036 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/tester 2025-12-05T22:27:40.0507187Z 2025-12-05 22:27:40,036 [INFO] copying src/executorch/backends/samsung/test/tester/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/tester 2025-12-05T22:27:40.0508683Z 2025-12-05 22:27:40,037 [INFO] copying src/executorch/backends/samsung/test/tester/samsung_tester.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/tester 2025-12-05T22:27:40.0509790Z 2025-12-05 22:27:40,038 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/facto 2025-12-05T22:27:40.0510770Z 2025-12-05 22:27:40,038 [INFO] copying src/executorch/backends/test/facto/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/facto 2025-12-05T22:27:40.0511991Z 2025-12-05 22:27:40,039 [INFO] copying src/executorch/backends/test/facto/facto_specs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/facto 2025-12-05T22:27:40.0513222Z 2025-12-05 22:27:40,039 [INFO] copying src/executorch/backends/test/facto/test_facto.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/facto 2025-12-05T22:27:40.0514236Z 2025-12-05 22:27:40,040 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness 2025-12-05T22:27:40.0515549Z 2025-12-05 22:27:40,040 [INFO] copying src/executorch/backends/test/harness/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness 2025-12-05T22:27:40.0517127Z 2025-12-05 22:27:40,041 [INFO] copying src/executorch/backends/test/harness/error_statistics.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness 2025-12-05T22:27:40.0518584Z 2025-12-05 22:27:40,042 [INFO] copying src/executorch/backends/test/harness/tester.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness 2025-12-05T22:27:40.0519587Z 2025-12-05 22:27:40,043 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite 2025-12-05T22:27:40.0520559Z 2025-12-05 22:27:40,043 [INFO] copying src/executorch/backends/test/suite/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite 2025-12-05T22:27:40.0521894Z 2025-12-05 22:27:40,044 [INFO] copying src/executorch/backends/test/suite/conftest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite 2025-12-05T22:27:40.0814684Z 2025-12-05 22:27:40,045 [INFO] copying src/executorch/backends/test/suite/context.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite 2025-12-05T22:27:40.0815942Z 2025-12-05 22:27:40,046 [INFO] copying src/executorch/backends/test/suite/discovery.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite 2025-12-05T22:27:40.0817160Z 2025-12-05 22:27:40,046 [INFO] copying src/executorch/backends/test/suite/flow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite 2025-12-05T22:27:40.0818646Z 2025-12-05 22:27:40,047 [INFO] copying src/executorch/backends/test/suite/generate_markdown_summary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite 2025-12-05T22:27:40.0820056Z 2025-12-05 22:27:40,048 [INFO] copying src/executorch/backends/test/suite/generate_markdown_summary_json.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite 2025-12-05T22:27:40.0821500Z 2025-12-05 22:27:40,049 [INFO] copying src/executorch/backends/test/suite/reporting.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite 2025-12-05T22:27:40.0822904Z 2025-12-05 22:27:40,050 [INFO] copying src/executorch/backends/test/suite/runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite 2025-12-05T22:27:40.0823910Z 2025-12-05 22:27:40,051 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages 2025-12-05T22:27:40.0825211Z 2025-12-05 22:27:40,051 [INFO] copying src/executorch/backends/test/harness/stages/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages 2025-12-05T22:27:40.0826610Z 2025-12-05 22:27:40,052 [INFO] copying src/executorch/backends/test/harness/stages/export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages 2025-12-05T22:27:40.0828028Z 2025-12-05 22:27:40,052 [INFO] copying src/executorch/backends/test/harness/stages/partition.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages 2025-12-05T22:27:40.0829530Z 2025-12-05 22:27:40,053 [INFO] copying src/executorch/backends/test/harness/stages/quantize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages 2025-12-05T22:27:40.0831048Z 2025-12-05 22:27:40,054 [INFO] copying src/executorch/backends/test/harness/stages/run_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages 2025-12-05T22:27:40.0832623Z 2025-12-05 22:27:40,055 [INFO] copying src/executorch/backends/test/harness/stages/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages 2025-12-05T22:27:40.0834040Z 2025-12-05 22:27:40,056 [INFO] copying src/executorch/backends/test/harness/stages/stage.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages 2025-12-05T22:27:40.0835433Z 2025-12-05 22:27:40,056 [INFO] copying src/executorch/backends/test/harness/stages/to_edge.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages 2025-12-05T22:27:40.0836883Z 2025-12-05 22:27:40,057 [INFO] copying src/executorch/backends/test/harness/stages/to_edge_transform_and_lower.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages 2025-12-05T22:27:40.0838369Z 2025-12-05 22:27:40,058 [INFO] copying src/executorch/backends/test/harness/stages/to_executorch.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages 2025-12-05T22:27:40.0839493Z 2025-12-05 22:27:40,059 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/tests 2025-12-05T22:27:40.0840800Z 2025-12-05 22:27:40,059 [INFO] copying src/executorch/backends/test/harness/tests/test_error_statistics.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/tests 2025-12-05T22:27:40.0842218Z 2025-12-05 22:27:40,060 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows 2025-12-05T22:27:40.0843282Z 2025-12-05 22:27:40,060 [INFO] copying src/executorch/backends/test/suite/flows/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows 2025-12-05T22:27:40.0844589Z 2025-12-05 22:27:40,061 [INFO] copying src/executorch/backends/test/suite/flows/arm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows 2025-12-05T22:27:40.0845908Z 2025-12-05 22:27:40,062 [INFO] copying src/executorch/backends/test/suite/flows/coreml.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows 2025-12-05T22:27:40.0847255Z 2025-12-05 22:27:40,063 [INFO] copying src/executorch/backends/test/suite/flows/portable.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows 2025-12-05T22:27:40.0848622Z 2025-12-05 22:27:40,063 [INFO] copying src/executorch/backends/test/suite/flows/qualcomm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows 2025-12-05T22:27:40.0850213Z 2025-12-05 22:27:40,064 [INFO] copying src/executorch/backends/test/suite/flows/vulkan.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows 2025-12-05T22:27:40.0851547Z 2025-12-05 22:27:40,065 [INFO] copying src/executorch/backends/test/suite/flows/xnnpack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows 2025-12-05T22:27:40.0852719Z 2025-12-05 22:27:40,066 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/models 2025-12-05T22:27:40.0853876Z 2025-12-05 22:27:40,066 [INFO] copying src/executorch/backends/test/suite/models/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/models 2025-12-05T22:27:40.0855262Z 2025-12-05 22:27:40,067 [INFO] copying src/executorch/backends/test/suite/models/test_torchaudio.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/models 2025-12-05T22:27:40.0856707Z 2025-12-05 22:27:40,068 [INFO] copying src/executorch/backends/test/suite/models/test_torchvision.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/models 2025-12-05T22:27:40.0858015Z 2025-12-05 22:27:40,069 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0859203Z 2025-12-05 22:27:40,069 [INFO] copying src/executorch/backends/test/suite/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0860682Z 2025-12-05 22:27:40,070 [INFO] copying src/executorch/backends/test/suite/operators/test_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0862171Z 2025-12-05 22:27:40,071 [INFO] copying src/executorch/backends/test/suite/operators/test_adaptive_avgpool1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0863893Z 2025-12-05 22:27:40,072 [INFO] copying src/executorch/backends/test/suite/operators/test_adaptive_avgpool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0865657Z 2025-12-05 22:27:40,072 [INFO] copying src/executorch/backends/test/suite/operators/test_adaptive_avgpool3d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0867294Z 2025-12-05 22:27:40,073 [INFO] copying src/executorch/backends/test/suite/operators/test_adaptive_maxpool1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0868925Z 2025-12-05 22:27:40,074 [INFO] copying src/executorch/backends/test/suite/operators/test_adaptive_maxpool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0870607Z 2025-12-05 22:27:40,075 [INFO] copying src/executorch/backends/test/suite/operators/test_adaptive_maxpool3d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0872098Z 2025-12-05 22:27:40,076 [INFO] copying src/executorch/backends/test/suite/operators/test_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0873777Z 2025-12-05 22:27:40,076 [INFO] copying src/executorch/backends/test/suite/operators/test_amax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0875227Z 2025-12-05 22:27:40,077 [INFO] copying src/executorch/backends/test/suite/operators/test_amin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0876666Z 2025-12-05 22:27:40,078 [INFO] copying src/executorch/backends/test/suite/operators/test_argmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0878124Z 2025-12-05 22:27:40,079 [INFO] copying src/executorch/backends/test/suite/operators/test_argmin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.0879603Z 2025-12-05 22:27:40,080 [INFO] copying src/executorch/backends/test/suite/operators/test_avgpool1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1165479Z 2025-12-05 22:27:40,080 [INFO] copying src/executorch/backends/test/suite/operators/test_avgpool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1167019Z 2025-12-05 22:27:40,081 [INFO] copying src/executorch/backends/test/suite/operators/test_avgpool3d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1168692Z 2025-12-05 22:27:40,082 [INFO] copying src/executorch/backends/test/suite/operators/test_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1170118Z 2025-12-05 22:27:40,083 [INFO] copying src/executorch/backends/test/suite/operators/test_ceil.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1171621Z 2025-12-05 22:27:40,084 [INFO] copying src/executorch/backends/test/suite/operators/test_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1173142Z 2025-12-05 22:27:40,085 [INFO] copying src/executorch/backends/test/suite/operators/test_conv1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1174581Z 2025-12-05 22:27:40,086 [INFO] copying src/executorch/backends/test/suite/operators/test_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1176039Z 2025-12-05 22:27:40,087 [INFO] copying src/executorch/backends/test/suite/operators/test_conv3d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1177545Z 2025-12-05 22:27:40,087 [INFO] copying src/executorch/backends/test/suite/operators/test_convtranspose1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1179095Z 2025-12-05 22:27:40,088 [INFO] copying src/executorch/backends/test/suite/operators/test_convtranspose2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1180782Z 2025-12-05 22:27:40,089 [INFO] copying src/executorch/backends/test/suite/operators/test_convtranspose3d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1182276Z 2025-12-05 22:27:40,090 [INFO] copying src/executorch/backends/test/suite/operators/test_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1183684Z 2025-12-05 22:27:40,090 [INFO] copying src/executorch/backends/test/suite/operators/test_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1185250Z 2025-12-05 22:27:40,091 [INFO] copying src/executorch/backends/test/suite/operators/test_embedding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1186758Z 2025-12-05 22:27:40,092 [INFO] copying src/executorch/backends/test/suite/operators/test_embedding_bag.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1188210Z 2025-12-05 22:27:40,093 [INFO] copying src/executorch/backends/test/suite/operators/test_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1189800Z 2025-12-05 22:27:40,093 [INFO] copying src/executorch/backends/test/suite/operators/test_expand.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1191347Z 2025-12-05 22:27:40,094 [INFO] copying src/executorch/backends/test/suite/operators/test_floor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1192818Z 2025-12-05 22:27:40,095 [INFO] copying src/executorch/backends/test/suite/operators/test_floor_divide.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1194291Z 2025-12-05 22:27:40,096 [INFO] copying src/executorch/backends/test/suite/operators/test_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1195717Z 2025-12-05 22:27:40,097 [INFO] copying src/executorch/backends/test/suite/operators/test_glu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1197233Z 2025-12-05 22:27:40,097 [INFO] copying src/executorch/backends/test/suite/operators/test_hardsigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1198736Z 2025-12-05 22:27:40,098 [INFO] copying src/executorch/backends/test/suite/operators/test_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1200350Z 2025-12-05 22:27:40,099 [INFO] copying src/executorch/backends/test/suite/operators/test_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1201819Z 2025-12-05 22:27:40,100 [INFO] copying src/executorch/backends/test/suite/operators/test_index_put.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1203303Z 2025-12-05 22:27:40,101 [INFO] copying src/executorch/backends/test/suite/operators/test_index_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1204812Z 2025-12-05 22:27:40,101 [INFO] copying src/executorch/backends/test/suite/operators/test_leaky_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1206274Z 2025-12-05 22:27:40,102 [INFO] copying src/executorch/backends/test/suite/operators/test_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1207711Z 2025-12-05 22:27:40,103 [INFO] copying src/executorch/backends/test/suite/operators/test_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1209269Z 2025-12-05 22:27:40,104 [INFO] copying src/executorch/backends/test/suite/operators/test_log10.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1210704Z 2025-12-05 22:27:40,105 [INFO] copying src/executorch/backends/test/suite/operators/test_log1p.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1212144Z 2025-12-05 22:27:40,105 [INFO] copying src/executorch/backends/test/suite/operators/test_log2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1213674Z 2025-12-05 22:27:40,106 [INFO] copying src/executorch/backends/test/suite/operators/test_logsigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1215139Z 2025-12-05 22:27:40,107 [INFO] copying src/executorch/backends/test/suite/operators/test_lstm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1216605Z 2025-12-05 22:27:40,108 [INFO] copying src/executorch/backends/test/suite/operators/test_masked_fill.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1218380Z 2025-12-05 22:27:40,108 [INFO] copying src/executorch/backends/test/suite/operators/test_maxpool1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1219874Z 2025-12-05 22:27:40,109 [INFO] copying src/executorch/backends/test/suite/operators/test_maxpool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1221381Z 2025-12-05 22:27:40,110 [INFO] copying src/executorch/backends/test/suite/operators/test_maxpool3d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1222835Z 2025-12-05 22:27:40,111 [INFO] copying src/executorch/backends/test/suite/operators/test_mean.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1224279Z 2025-12-05 22:27:40,111 [INFO] copying src/executorch/backends/test/suite/operators/test_median.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1225819Z 2025-12-05 22:27:40,112 [INFO] copying src/executorch/backends/test/suite/operators/test_mul.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1227352Z 2025-12-05 22:27:40,113 [INFO] copying src/executorch/backends/test/suite/operators/test_neg.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1228861Z 2025-12-05 22:27:40,114 [INFO] copying src/executorch/backends/test/suite/operators/test_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1230317Z 2025-12-05 22:27:40,115 [INFO] copying src/executorch/backends/test/suite/operators/test_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1510974Z 2025-12-05 22:27:40,116 [INFO] copying src/executorch/backends/test/suite/operators/test_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1512519Z 2025-12-05 22:27:40,116 [INFO] copying src/executorch/backends/test/suite/operators/test_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1513971Z 2025-12-05 22:27:40,117 [INFO] copying src/executorch/backends/test/suite/operators/test_reshape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1515437Z 2025-12-05 22:27:40,118 [INFO] copying src/executorch/backends/test/suite/operators/test_round.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1516964Z 2025-12-05 22:27:40,119 [INFO] copying src/executorch/backends/test/suite/operators/test_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1518868Z 2025-12-05 22:27:40,120 [INFO] copying src/executorch/backends/test/suite/operators/test_select.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1520341Z 2025-12-05 22:27:40,121 [INFO] copying src/executorch/backends/test/suite/operators/test_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1522006Z 2025-12-05 22:27:40,122 [INFO] copying src/executorch/backends/test/suite/operators/test_silu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1523447Z 2025-12-05 22:27:40,123 [INFO] copying src/executorch/backends/test/suite/operators/test_slice.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1524928Z 2025-12-05 22:27:40,123 [INFO] copying src/executorch/backends/test/suite/operators/test_split.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1526693Z 2025-12-05 22:27:40,124 [INFO] copying src/executorch/backends/test/suite/operators/test_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1528149Z 2025-12-05 22:27:40,125 [INFO] copying src/executorch/backends/test/suite/operators/test_square.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1529621Z 2025-12-05 22:27:40,126 [INFO] copying src/executorch/backends/test/suite/operators/test_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1531079Z 2025-12-05 22:27:40,126 [INFO] copying src/executorch/backends/test/suite/operators/test_stack.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1532516Z 2025-12-05 22:27:40,127 [INFO] copying src/executorch/backends/test/suite/operators/test_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1533995Z 2025-12-05 22:27:40,128 [INFO] copying src/executorch/backends/test/suite/operators/test_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1535844Z 2025-12-05 22:27:40,129 [INFO] copying src/executorch/backends/test/suite/operators/test_threshold.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1537347Z 2025-12-05 22:27:40,129 [INFO] copying src/executorch/backends/test/suite/operators/test_transpose.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1538803Z 2025-12-05 22:27:40,130 [INFO] copying src/executorch/backends/test/suite/operators/test_trunc.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1540267Z 2025-12-05 22:27:40,131 [INFO] copying src/executorch/backends/test/suite/operators/test_unsqueeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1541805Z 2025-12-05 22:27:40,132 [INFO] copying src/executorch/backends/test/suite/operators/test_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1543760Z 2025-12-05 22:27:40,132 [INFO] copying src/executorch/backends/test/suite/operators/test_upsample_nearest2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1545278Z 2025-12-05 22:27:40,133 [INFO] copying src/executorch/backends/test/suite/operators/test_view.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators 2025-12-05T22:27:40.1546408Z 2025-12-05 22:27:40,134 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/tests 2025-12-05T22:27:40.1547469Z 2025-12-05 22:27:40,134 [INFO] copying src/executorch/backends/test/suite/tests/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/tests 2025-12-05T22:27:40.1548913Z 2025-12-05 22:27:40,134 [INFO] copying src/executorch/backends/test/suite/tests/test_reporting.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/tests 2025-12-05T22:27:40.1550039Z 2025-12-05 22:27:40,135 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-12-05T22:27:40.1551712Z 2025-12-05 22:27:40,136 [INFO] 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-12-05T22:27:40.1553285Z 2025-12-05 22:27:40,136 [INFO] copying src/executorch/backends/transforms/test/test_create_mutable_buffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-12-05T22:27:40.1554796Z 2025-12-05 22:27:40,137 [INFO] 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-12-05T22:27:40.1556287Z 2025-12-05 22:27:40,138 [INFO] 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-12-05T22:27:40.1557709Z 2025-12-05 22:27:40,139 [INFO] copying src/executorch/backends/transforms/test/test_remove_clone_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-12-05T22:27:40.1558810Z 2025-12-05 22:27:40,140 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-12-05T22:27:40.1560118Z 2025-12-05 22:27:40,140 [INFO] copying src/executorch/backends/vulkan/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-12-05T22:27:40.1561767Z 2025-12-05 22:27:40,141 [INFO] copying src/executorch/backends/vulkan/_passes/fold_qdq.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-12-05T22:27:40.1563062Z 2025-12-05 22:27:40,142 [INFO] copying src/executorch/backends/vulkan/_passes/fuse_patterns.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-12-05T22:27:40.1564491Z 2025-12-05 22:27:40,142 [INFO] copying src/executorch/backends/vulkan/_passes/fuse_quantized_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-12-05T22:27:40.1565866Z 2025-12-05 22:27:40,143 [INFO] copying src/executorch/backends/vulkan/_passes/insert_prepack_nodes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-12-05T22:27:40.1567212Z 2025-12-05 22:27:40,144 [INFO] copying src/executorch/backends/vulkan/_passes/remove_asserts.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-12-05T22:27:40.1568608Z 2025-12-05 22:27:40,145 [INFO] copying src/executorch/backends/vulkan/_passes/remove_redundant_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-12-05T22:27:40.1570255Z 2025-12-05 22:27:40,146 [INFO] copying src/executorch/backends/vulkan/_passes/squeeze_unsqueeze_inputs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-12-05T22:27:40.1571658Z 2025-12-05 22:27:40,146 [INFO] copying src/executorch/backends/vulkan/_passes/tag_memory_meta_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-12-05T22:27:40.1572759Z 2025-12-05 22:27:40,147 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner 2025-12-05T22:27:40.1573927Z 2025-12-05 22:27:40,147 [INFO] copying src/executorch/backends/vulkan/partitioner/vulkan_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner 2025-12-05T22:27:40.1575083Z 2025-12-05 22:27:40,148 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns 2025-12-05T22:27:40.1576131Z 2025-12-05 22:27:40,148 [INFO] copying src/executorch/backends/vulkan/patterns/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns 2025-12-05T22:27:40.1577538Z 2025-12-05 22:27:40,149 [INFO] copying src/executorch/backends/vulkan/patterns/pattern_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns 2025-12-05T22:27:40.1915714Z 2025-12-05 22:27:40,150 [INFO] copying src/executorch/backends/vulkan/patterns/quantized_binary.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns 2025-12-05T22:27:40.1917441Z 2025-12-05 22:27:40,151 [INFO] copying src/executorch/backends/vulkan/patterns/quantized_convolution.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns 2025-12-05T22:27:40.1919070Z 2025-12-05 22:27:40,152 [INFO] copying src/executorch/backends/vulkan/patterns/quantized_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns 2025-12-05T22:27:40.1920438Z 2025-12-05 22:27:40,153 [INFO] copying src/executorch/backends/vulkan/patterns/rope.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns 2025-12-05T22:27:40.1921738Z 2025-12-05 22:27:40,154 [INFO] copying src/executorch/backends/vulkan/patterns/sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns 2025-12-05T22:27:40.1923086Z 2025-12-05 22:27:40,154 [INFO] copying src/executorch/backends/vulkan/patterns/select_as_symint.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns 2025-12-05T22:27:40.1924549Z 2025-12-05 22:27:40,155 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-12-05T22:27:40.1925675Z 2025-12-05 22:27:40,155 [INFO] copying src/executorch/backends/vulkan/quantizer/vulkan_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-12-05T22:27:40.1927144Z 2025-12-05 22:27:40,156 [INFO] copying src/executorch/backends/vulkan/quantizer/vulkan_quantizer_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-12-05T22:27:40.1928284Z 2025-12-05 22:27:40,157 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime 2025-12-05T22:27:40.1929490Z 2025-12-05 22:27:40,157 [INFO] copying src/executorch/backends/vulkan/runtime/gen_vulkan_spv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime 2025-12-05T22:27:40.1930588Z 2025-12-05 22:27:40,159 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-12-05T22:27:40.1931799Z 2025-12-05 22:27:40,159 [INFO] copying src/executorch/backends/vulkan/serialization/vulkan_graph_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-12-05T22:27:40.1933335Z 2025-12-05 22:27:40,160 [INFO] copying src/executorch/backends/vulkan/serialization/vulkan_graph_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-12-05T22:27:40.1934896Z 2025-12-05 22:27:40,161 [INFO] copying src/executorch/backends/vulkan/serialization/vulkan_graph_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-12-05T22:27:40.1936066Z 2025-12-05 22:27:40,162 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-12-05T22:27:40.1937114Z 2025-12-05 22:27:40,162 [INFO] copying src/executorch/backends/vulkan/test/test_serialization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-12-05T22:27:40.1938464Z 2025-12-05 22:27:40,163 [INFO] copying src/executorch/backends/vulkan/test/test_vulkan_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-12-05T22:27:40.1939827Z 2025-12-05 22:27:40,165 [INFO] copying src/executorch/backends/vulkan/test/test_vulkan_delegate_header.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-12-05T22:27:40.1941362Z 2025-12-05 22:27:40,166 [INFO] copying src/executorch/backends/vulkan/test/test_vulkan_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-12-05T22:27:40.1942869Z 2025-12-05 22:27:40,166 [INFO] copying src/executorch/backends/vulkan/test/tester.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-12-05T22:27:40.1944331Z 2025-12-05 22:27:40,167 [INFO] copying src/executorch/backends/vulkan/test/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-12-05T22:27:40.1945502Z 2025-12-05 22:27:40,169 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-12-05T22:27:40.1946620Z 2025-12-05 22:27:40,169 [INFO] 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-12-05T22:27:40.1948052Z 2025-12-05 22:27:40,171 [INFO] 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-12-05T22:27:40.1949689Z 2025-12-05 22:27:40,172 [INFO] 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-12-05T22:27:40.1950945Z 2025-12-05 22:27:40,173 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-12-05T22:27:40.1952168Z 2025-12-05 22:27:40,173 [INFO] 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-12-05T22:27:40.1953722Z 2025-12-05 22:27:40,174 [INFO] 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-12-05T22:27:40.1955311Z 2025-12-05 22:27:40,175 [INFO] 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-12-05T22:27:40.1956915Z 2025-12-05 22:27:40,176 [INFO] 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-12-05T22:27:40.1958600Z 2025-12-05 22:27:40,177 [INFO] 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-12-05T22:27:40.1960405Z 2025-12-05 22:27:40,177 [INFO] 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-12-05T22:27:40.1961980Z 2025-12-05 22:27:40,179 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/volk 2025-12-05T22:27:40.1963181Z 2025-12-05 22:27:40,179 [INFO] 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-12-05T22:27:40.1964471Z 2025-12-05 22:27:40,180 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-12-05T22:27:40.1965981Z 2025-12-05 22:27:40,180 [INFO] 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-12-05T22:27:40.1967934Z 2025-12-05 22:27:40,181 [INFO] copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/base_generator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-12-05T22:27:40.1970143Z 2025-12-05 22:27:40,182 [INFO] 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-12-05T22:27:40.1972109Z 2025-12-05 22:27:40,183 [INFO] 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-12-05T22:27:40.1974077Z 2025-12-05 22:27:40,185 [INFO] copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/parse_dependency.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-12-05T22:27:40.1976053Z 2025-12-05 22:27:40,186 [INFO] 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-12-05T22:27:40.1977899Z 2025-12-05 22:27:40,187 [INFO] copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/stripAPI.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-12-05T22:27:40.1979807Z 2025-12-05 22:27:40,188 [INFO] 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-12-05T22:27:40.1981988Z 2025-12-05 22:27:40,189 [INFO] copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vulkan_object.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-12-05T22:27:40.2273522Z 2025-12-05 22:27:40,191 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-12-05T22:27:40.2275247Z 2025-12-05 22:27:40,191 [INFO] copying src/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/conventions.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-12-05T22:27:40.2277352Z 2025-12-05 22:27:40,192 [INFO] 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-12-05T22:27:40.2279238Z 2025-12-05 22:27:40,193 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-12-05T22:27:40.2281155Z 2025-12-05 22:27:40,194 [INFO] 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-12-05T22:27:40.2282732Z 2025-12-05 22:27:40,195 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2283781Z 2025-12-05 22:27:40,195 [INFO] copying src/executorch/backends/xnnpack/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2285164Z 2025-12-05 22:27:40,196 [INFO] 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-12-05T22:27:40.2286628Z 2025-12-05 22:27:40,197 [INFO] copying src/executorch/backends/xnnpack/_passes/conv1d_unsqueeze_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2288090Z 2025-12-05 22:27:40,198 [INFO] copying src/executorch/backends/xnnpack/_passes/convert_to_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2289443Z 2025-12-05 22:27:40,199 [INFO] copying src/executorch/backends/xnnpack/_passes/convert_to_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2290866Z 2025-12-05 22:27:40,200 [INFO] copying src/executorch/backends/xnnpack/_passes/convert_to_upsample_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2292273Z 2025-12-05 22:27:40,201 [INFO] copying src/executorch/backends/xnnpack/_passes/decompose_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2293659Z 2025-12-05 22:27:40,202 [INFO] copying src/executorch/backends/xnnpack/_passes/fuse_activation_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2295142Z 2025-12-05 22:27:40,202 [INFO] copying src/executorch/backends/xnnpack/_passes/fuse_batch_norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2296501Z 2025-12-05 22:27:40,203 [INFO] copying src/executorch/backends/xnnpack/_passes/prelu_reshape_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2298009Z 2025-12-05 22:27:40,204 [INFO] copying src/executorch/backends/xnnpack/_passes/propagate_custom_meta_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2299470Z 2025-12-05 22:27:40,205 [INFO] copying src/executorch/backends/xnnpack/_passes/remove_redundant_copy_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2300856Z 2025-12-05 22:27:40,205 [INFO] copying src/executorch/backends/xnnpack/_passes/xnnpack_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-12-05T22:27:40.2301944Z 2025-12-05 22:27:40,207 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2303038Z 2025-12-05 22:27:40,207 [INFO] copying src/executorch/backends/xnnpack/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2304437Z 2025-12-05 22:27:40,208 [INFO] copying src/executorch/backends/xnnpack/operators/node_visitor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2305852Z 2025-12-05 22:27:40,209 [INFO] copying src/executorch/backends/xnnpack/operators/op_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2307275Z 2025-12-05 22:27:40,209 [INFO] copying src/executorch/backends/xnnpack/operators/op_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2308707Z 2025-12-05 22:27:40,210 [INFO] copying src/executorch/backends/xnnpack/operators/op_addmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2310107Z 2025-12-05 22:27:40,211 [INFO] copying src/executorch/backends/xnnpack/operators/op_avg_pooling2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2311495Z 2025-12-05 22:27:40,212 [INFO] copying src/executorch/backends/xnnpack/operators/op_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2312946Z 2025-12-05 22:27:40,212 [INFO] copying src/executorch/backends/xnnpack/operators/op_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2314318Z 2025-12-05 22:27:40,213 [INFO] copying src/executorch/backends/xnnpack/operators/op_ceiling.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2315701Z 2025-12-05 22:27:40,214 [INFO] copying src/executorch/backends/xnnpack/operators/op_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2317053Z 2025-12-05 22:27:40,215 [INFO] copying src/executorch/backends/xnnpack/operators/op_clone.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2318643Z 2025-12-05 22:27:40,215 [INFO] copying src/executorch/backends/xnnpack/operators/op_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2319999Z 2025-12-05 22:27:40,216 [INFO] copying src/executorch/backends/xnnpack/operators/op_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2321516Z 2025-12-05 22:27:40,217 [INFO] copying src/executorch/backends/xnnpack/operators/op_dynamic_dequantize_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2323156Z 2025-12-05 22:27:40,218 [INFO] copying src/executorch/backends/xnnpack/operators/op_dynamic_quantize_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2324564Z 2025-12-05 22:27:40,218 [INFO] copying src/executorch/backends/xnnpack/operators/op_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2325901Z 2025-12-05 22:27:40,219 [INFO] copying src/executorch/backends/xnnpack/operators/op_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2327257Z 2025-12-05 22:27:40,220 [INFO] copying src/executorch/backends/xnnpack/operators/op_floor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2328615Z 2025-12-05 22:27:40,221 [INFO] copying src/executorch/backends/xnnpack/operators/op_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2329998Z 2025-12-05 22:27:40,222 [INFO] copying src/executorch/backends/xnnpack/operators/op_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2331473Z 2025-12-05 22:27:40,222 [INFO] copying src/executorch/backends/xnnpack/operators/op_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2332867Z 2025-12-05 22:27:40,223 [INFO] copying src/executorch/backends/xnnpack/operators/op_leaky_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2334262Z 2025-12-05 22:27:40,224 [INFO] copying src/executorch/backends/xnnpack/operators/op_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2335723Z 2025-12-05 22:27:40,225 [INFO] copying src/executorch/backends/xnnpack/operators/op_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2337152Z 2025-12-05 22:27:40,226 [INFO] copying src/executorch/backends/xnnpack/operators/op_matrix_multiplication.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2625903Z 2025-12-05 22:27:40,226 [INFO] copying src/executorch/backends/xnnpack/operators/op_max_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2627454Z 2025-12-05 22:27:40,227 [INFO] copying src/executorch/backends/xnnpack/operators/op_max_pool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2629004Z 2025-12-05 22:27:40,228 [INFO] copying src/executorch/backends/xnnpack/operators/op_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2630662Z 2025-12-05 22:27:40,229 [INFO] copying src/executorch/backends/xnnpack/operators/op_mean_dim.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2632320Z 2025-12-05 22:27:40,230 [INFO] copying src/executorch/backends/xnnpack/operators/op_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2633818Z 2025-12-05 22:27:40,230 [INFO] copying src/executorch/backends/xnnpack/operators/op_multiply.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2635365Z 2025-12-05 22:27:40,231 [INFO] copying src/executorch/backends/xnnpack/operators/op_negate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2636847Z 2025-12-05 22:27:40,232 [INFO] copying src/executorch/backends/xnnpack/operators/op_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2638262Z 2025-12-05 22:27:40,233 [INFO] copying src/executorch/backends/xnnpack/operators/op_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2652243Z 2025-12-05 22:27:40,234 [INFO] copying src/executorch/backends/xnnpack/operators/op_quant_dequant.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2653700Z 2025-12-05 22:27:40,235 [INFO] copying src/executorch/backends/xnnpack/operators/op_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2655074Z 2025-12-05 22:27:40,236 [INFO] copying src/executorch/backends/xnnpack/operators/op_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2656458Z 2025-12-05 22:27:40,236 [INFO] copying src/executorch/backends/xnnpack/operators/op_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2657826Z 2025-12-05 22:27:40,237 [INFO] copying src/executorch/backends/xnnpack/operators/op_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2659385Z 2025-12-05 22:27:40,238 [INFO] copying src/executorch/backends/xnnpack/operators/op_skip_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2660817Z 2025-12-05 22:27:40,238 [INFO] copying src/executorch/backends/xnnpack/operators/op_slice_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2662196Z 2025-12-05 22:27:40,239 [INFO] copying src/executorch/backends/xnnpack/operators/op_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2663575Z 2025-12-05 22:27:40,240 [INFO] copying src/executorch/backends/xnnpack/operators/op_square.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2665105Z 2025-12-05 22:27:40,241 [INFO] copying src/executorch/backends/xnnpack/operators/op_square_root.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2666495Z 2025-12-05 22:27:40,242 [INFO] copying src/executorch/backends/xnnpack/operators/op_squeeze.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2668136Z 2025-12-05 22:27:40,242 [INFO] copying src/executorch/backends/xnnpack/operators/op_static_constant_pad.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2669735Z 2025-12-05 22:27:40,243 [INFO] 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-12-05T22:27:40.2671164Z 2025-12-05 22:27:40,244 [INFO] copying src/executorch/backends/xnnpack/operators/op_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2672527Z 2025-12-05 22:27:40,245 [INFO] copying src/executorch/backends/xnnpack/operators/op_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2673899Z 2025-12-05 22:27:40,245 [INFO] copying src/executorch/backends/xnnpack/operators/op_to_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2675265Z 2025-12-05 22:27:40,246 [INFO] copying src/executorch/backends/xnnpack/operators/op_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2676722Z 2025-12-05 22:27:40,247 [INFO] copying src/executorch/backends/xnnpack/operators/quant_params.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-12-05T22:27:40.2677944Z 2025-12-05 22:27:40,248 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-12-05T22:27:40.2679113Z 2025-12-05 22:27:40,248 [INFO] copying src/executorch/backends/xnnpack/partition/xnnpack_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-12-05T22:27:40.2680270Z 2025-12-05 22:27:40,249 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-12-05T22:27:40.2681501Z 2025-12-05 22:27:40,249 [INFO] copying src/executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-12-05T22:27:40.2683000Z 2025-12-05 22:27:40,250 [INFO] copying src/executorch/backends/xnnpack/quantizer/xnnpack_quantizer_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-12-05T22:27:40.2684164Z 2025-12-05 22:27:40,252 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/recipes 2025-12-05T22:27:40.2685387Z 2025-12-05 22:27:40,252 [INFO] copying src/executorch/backends/xnnpack/recipes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/recipes 2025-12-05T22:27:40.2686789Z 2025-12-05 22:27:40,253 [INFO] copying src/executorch/backends/xnnpack/recipes/xnnpack_recipe_provider.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/recipes 2025-12-05T22:27:40.2688255Z 2025-12-05 22:27:40,254 [INFO] copying src/executorch/backends/xnnpack/recipes/xnnpack_recipe_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/recipes 2025-12-05T22:27:40.2689393Z 2025-12-05 22:27:40,255 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-12-05T22:27:40.2690614Z 2025-12-05 22:27:40,255 [INFO] copying src/executorch/backends/xnnpack/serialization/xnnpack_graph_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-12-05T22:27:40.2692280Z 2025-12-05 22:27:40,256 [INFO] copying src/executorch/backends/xnnpack/serialization/xnnpack_graph_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-12-05T22:27:40.2693641Z 2025-12-05 22:27:40,257 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-12-05T22:27:40.2694656Z 2025-12-05 22:27:40,257 [INFO] copying src/executorch/backends/xnnpack/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-12-05T22:27:40.2695988Z 2025-12-05 22:27:40,257 [INFO] copying src/executorch/backends/xnnpack/test/test_xnnpack_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-12-05T22:27:40.2697355Z 2025-12-05 22:27:40,258 [INFO] copying src/executorch/backends/xnnpack/test/test_xnnpack_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-12-05T22:27:40.2698735Z 2025-12-05 22:27:40,259 [INFO] copying src/executorch/backends/xnnpack/test/test_xnnpack_utils_classes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-12-05T22:27:40.2699859Z 2025-12-05 22:27:40,260 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party 2025-12-05T22:27:40.2701142Z 2025-12-05 22:27:40,260 [INFO] 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-12-05T22:27:40.2702753Z 2025-12-05 22:27:40,261 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-12-05T22:27:40.2703821Z 2025-12-05 22:27:40,261 [INFO] copying src/executorch/backends/xnnpack/utils/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-12-05T22:27:40.2991944Z 2025-12-05 22:27:40,262 [INFO] copying src/executorch/backends/xnnpack/utils/quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-12-05T22:27:40.2993265Z 2025-12-05 22:27:40,262 [INFO] copying src/executorch/backends/xnnpack/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-12-05T22:27:40.2994617Z 2025-12-05 22:27:40,263 [INFO] copying src/executorch/backends/xnnpack/utils/xnnpack_constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-12-05T22:27:40.2995959Z 2025-12-05 22:27:40,264 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-12-05T22:27:40.2997173Z 2025-12-05 22:27:40,264 [INFO] copying src/executorch/backends/xnnpack/partition/config/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-12-05T22:27:40.2998914Z 2025-12-05 22:27:40,265 [INFO] copying src/executorch/backends/xnnpack/partition/config/gemm_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-12-05T22:27:40.3000525Z 2025-12-05 22:27:40,266 [INFO] 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-12-05T22:27:40.3002133Z 2025-12-05 22:27:40,267 [INFO] copying src/executorch/backends/xnnpack/partition/config/node_configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-12-05T22:27:40.3003727Z 2025-12-05 22:27:40,268 [INFO] 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-12-05T22:27:40.3005352Z 2025-12-05 22:27:40,268 [INFO] copying src/executorch/backends/xnnpack/partition/config/xnnpack_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-12-05T22:27:40.3006602Z 2025-12-05 22:27:40,269 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-12-05T22:27:40.3007833Z 2025-12-05 22:27:40,269 [INFO] copying src/executorch/backends/xnnpack/partition/graphs/bilinear_2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-12-05T22:27:40.3009486Z 2025-12-05 22:27:40,270 [INFO] copying src/executorch/backends/xnnpack/partition/graphs/sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-12-05T22:27:40.3010656Z 2025-12-05 22:27:40,271 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-12-05T22:27:40.3011777Z 2025-12-05 22:27:40,272 [INFO] copying src/executorch/backends/xnnpack/test/models/deeplab_v3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-12-05T22:27:40.3013181Z 2025-12-05 22:27:40,272 [INFO] copying src/executorch/backends/xnnpack/test/models/edsr.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-12-05T22:27:40.3014594Z 2025-12-05 22:27:40,273 [INFO] copying src/executorch/backends/xnnpack/test/models/emformer_rnnt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-12-05T22:27:40.3016331Z 2025-12-05 22:27:40,274 [INFO] copying src/executorch/backends/xnnpack/test/models/inception_v3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-12-05T22:27:40.3017804Z 2025-12-05 22:27:40,275 [INFO] copying src/executorch/backends/xnnpack/test/models/inception_v4.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-12-05T22:27:40.3019464Z 2025-12-05 22:27:40,276 [INFO] 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-12-05T22:27:40.3020924Z 2025-12-05 22:27:40,276 [INFO] copying src/executorch/backends/xnnpack/test/models/mobilebert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-12-05T22:27:40.3022489Z 2025-12-05 22:27:40,277 [INFO] copying src/executorch/backends/xnnpack/test/models/mobilenet_v2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-12-05T22:27:40.3024114Z 2025-12-05 22:27:40,278 [INFO] copying src/executorch/backends/xnnpack/test/models/mobilenet_v3.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-12-05T22:27:40.3025644Z 2025-12-05 22:27:40,279 [INFO] copying src/executorch/backends/xnnpack/test/models/resnet.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-12-05T22:27:40.3027101Z 2025-12-05 22:27:40,279 [INFO] copying src/executorch/backends/xnnpack/test/models/torchvision_vit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-12-05T22:27:40.3028643Z 2025-12-05 22:27:40,280 [INFO] 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-12-05T22:27:40.3030165Z 2025-12-05 22:27:40,281 [INFO] copying src/executorch/backends/xnnpack/test/models/w2l.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-12-05T22:27:40.3031399Z 2025-12-05 22:27:40,282 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3032474Z 2025-12-05 22:27:40,282 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_abs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3033823Z 2025-12-05 22:27:40,283 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_add.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3035204Z 2025-12-05 22:27:40,284 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_avgpool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3036603Z 2025-12-05 22:27:40,285 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_bilinear2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3038337Z 2025-12-05 22:27:40,286 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_bmm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3039685Z 2025-12-05 22:27:40,286 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_cat.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3041025Z 2025-12-05 22:27:40,287 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_ceil.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3042443Z 2025-12-05 22:27:40,288 [INFO] 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-12-05T22:27:40.3043865Z 2025-12-05 22:27:40,289 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_clamp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3045466Z 2025-12-05 22:27:40,290 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_clone.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3046905Z 2025-12-05 22:27:40,291 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_conv1d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3048279Z 2025-12-05 22:27:40,291 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_conv2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3049623Z 2025-12-05 22:27:40,292 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_div.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3050959Z 2025-12-05 22:27:40,293 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_elu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3052289Z 2025-12-05 22:27:40,294 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_exp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3053936Z 2025-12-05 22:27:40,295 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_floor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3055403Z 2025-12-05 22:27:40,296 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_gelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3056784Z 2025-12-05 22:27:40,297 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_hardswish.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3058185Z 2025-12-05 22:27:40,297 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_hardtanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3356899Z 2025-12-05 22:27:40,298 [INFO] 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-12-05T22:27:40.3358319Z 2025-12-05 22:27:40,299 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_linear.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3359705Z 2025-12-05 22:27:40,301 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_log.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3361056Z 2025-12-05 22:27:40,302 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_lstm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3362407Z 2025-12-05 22:27:40,302 [INFO] 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-12-05T22:27:40.3364169Z 2025-12-05 22:27:40,303 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_maximum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3365766Z 2025-12-05 22:27:40,304 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_maxpool2d.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3367156Z 2025-12-05 22:27:40,305 [INFO] 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-12-05T22:27:40.3368557Z 2025-12-05 22:27:40,305 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_minimum.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3369945Z 2025-12-05 22:27:40,306 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_multiply.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3371322Z 2025-12-05 22:27:40,307 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_negate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3372787Z 2025-12-05 22:27:40,308 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_permute.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3374253Z 2025-12-05 22:27:40,308 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_pow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3375599Z 2025-12-05 22:27:40,309 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_prelu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3377026Z 2025-12-05 22:27:40,310 [INFO] 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-12-05T22:27:40.3378452Z 2025-12-05 22:27:40,311 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_relu.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3379793Z 2025-12-05 22:27:40,311 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_rsqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3381286Z 2025-12-05 22:27:40,312 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_sigmoid.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3382835Z 2025-12-05 22:27:40,313 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_sin.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3384422Z 2025-12-05 22:27:40,314 [INFO] 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-12-05T22:27:40.3385820Z 2025-12-05 22:27:40,315 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_softmax.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3387187Z 2025-12-05 22:27:40,315 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_sqrt.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3388617Z 2025-12-05 22:27:40,316 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_square.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3390046Z 2025-12-05 22:27:40,317 [INFO] 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-12-05T22:27:40.3391461Z 2025-12-05 22:27:40,318 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_sub.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3393111Z 2025-12-05 22:27:40,318 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_tanh.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3394697Z 2025-12-05 22:27:40,319 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_to_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3396093Z 2025-12-05 22:27:40,320 [INFO] copying src/executorch/backends/xnnpack/test/ops/test_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:40.3397196Z 2025-12-05 22:27:40,321 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-12-05T22:27:40.3398311Z 2025-12-05 22:27:40,321 [INFO] copying src/executorch/backends/xnnpack/test/passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-12-05T22:27:40.3399761Z 2025-12-05 22:27:40,321 [INFO] 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-12-05T22:27:40.3401303Z 2025-12-05 22:27:40,322 [INFO] 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-12-05T22:27:40.3402883Z 2025-12-05 22:27:40,323 [INFO] 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-12-05T22:27:40.3404674Z 2025-12-05 22:27:40,324 [INFO] 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-12-05T22:27:40.3406432Z 2025-12-05 22:27:40,325 [INFO] 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-12-05T22:27:40.3408020Z 2025-12-05 22:27:40,326 [INFO] copying src/executorch/backends/xnnpack/test/passes/test_propagate_custom_meta_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-12-05T22:27:40.3409664Z 2025-12-05 22:27:40,327 [INFO] 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-12-05T22:27:40.3411239Z 2025-12-05 22:27:40,327 [INFO] copying src/executorch/backends/xnnpack/test/passes/test_remove_redundant_copy_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-12-05T22:27:40.3412473Z 2025-12-05 22:27:40,328 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-12-05T22:27:40.3413704Z 2025-12-05 22:27:40,329 [INFO] 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-12-05T22:27:40.3415632Z 2025-12-05 22:27:40,329 [INFO] copying src/executorch/backends/xnnpack/test/quantizer/test_representation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-12-05T22:27:40.3417504Z 2025-12-05 22:27:40,330 [INFO] 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-12-05T22:27:40.3418936Z 2025-12-05 22:27:40,332 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/recipes 2025-12-05T22:27:40.3420143Z 2025-12-05 22:27:40,332 [INFO] copying src/executorch/backends/xnnpack/test/recipes/test_xnnpack_recipes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/recipes 2025-12-05T22:27:40.3421378Z 2025-12-05 22:27:40,334 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-12-05T22:27:40.3422848Z 2025-12-05 22:27:40,334 [INFO] copying src/executorch/backends/xnnpack/test/serialization/test_serialization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-12-05T22:27:40.3641979Z 2025-12-05 22:27:40,335 [INFO] copying src/executorch/backends/xnnpack/test/serialization/test_xnnheader.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-12-05T22:27:40.3643263Z 2025-12-05 22:27:40,336 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-12-05T22:27:40.3644366Z 2025-12-05 22:27:40,336 [INFO] copying src/executorch/backends/xnnpack/test/tester/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-12-05T22:27:40.3645757Z 2025-12-05 22:27:40,337 [INFO] copying src/executorch/backends/xnnpack/test/tester/tester.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-12-05T22:27:40.3647249Z 2025-12-05 22:27:40,337 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16 2025-12-05T22:27:40.3649216Z 2025-12-05 22:27:40,338 [INFO] 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-12-05T22:27:40.3650568Z 2025-12-05 22:27:40,338 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv 2025-12-05T22:27:40.3651807Z 2025-12-05 22:27:40,339 [INFO] 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-12-05T22:27:40.3653029Z 2025-12-05 22:27:40,340 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo 2025-12-05T22:27:40.3654284Z 2025-12-05 22:27:40,340 [INFO] 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-12-05T22:27:40.3656251Z 2025-12-05 22:27:40,341 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool 2025-12-05T22:27:40.3658224Z 2025-12-05 22:27:40,341 [INFO] 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-12-05T22:27:40.3659602Z 2025-12-05 22:27:40,342 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-12-05T22:27:40.3660975Z 2025-12-05 22:27:40,342 [INFO] 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-12-05T22:27:40.3662719Z 2025-12-05 22:27:40,343 [INFO] 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-12-05T22:27:40.3665537Z 2025-12-05 22:27:40,343 [INFO] 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-12-05T22:27:40.3667039Z 2025-12-05 22:27:40,344 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-12-05T22:27:40.3668517Z 2025-12-05 22:27:40,344 [INFO] 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-12-05T22:27:40.3669933Z 2025-12-05 22:27:40,346 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3671419Z 2025-12-05 22:27:40,346 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/aarch32_template.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3673519Z 2025-12-05 22:27:40,347 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/aarch64_template.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3675409Z 2025-12-05 22:27:40,348 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/arm_template.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3677305Z 2025-12-05 22:27:40,349 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/avx512bf16_template.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3679228Z 2025-12-05 22:27:40,349 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/avx512f_template.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3682152Z 2025-12-05 22:27:40,350 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/avx512vnni_template.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3685118Z 2025-12-05 22:27:40,351 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/base_architecture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3687015Z 2025-12-05 22:27:40,352 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/fma3_template.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3688879Z 2025-12-05 22:27:40,353 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3691580Z 2025-12-05 22:27:40,354 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_bf16_f32_gemm_microkernels.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3694247Z 2025-12-05 22:27:40,354 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_f32_gemm_microkernels.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3696294Z 2025-12-05 22:27:40,355 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_gemm_microkernels_main.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3698366Z 2025-12-05 22:27:40,356 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_qd8_f32_qc4w_gemm_microkernels.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3701533Z 2025-12-05 22:27:40,357 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_qd8_f32_qc8w_gemm_microkernels.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3703721Z 2025-12-05 22:27:40,358 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_qs8_qc4w_gemm_microkernels.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3705795Z 2025-12-05 22:27:40,359 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_qs8_qc8w_gemm_microkernels.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3708060Z 2025-12-05 22:27:40,359 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/neondot_template.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3711054Z 2025-12-05 22:27:40,360 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/neonfma_template.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3713026Z 2025-12-05 22:27:40,361 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/neonmlal_aarch32_template.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3714952Z 2025-12-05 22:27:40,362 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/x64_template.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:40.3716468Z 2025-12-05 22:27:40,363 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-12-05T22:27:40.4281162Z 2025-12-05 22:27:40,363 [INFO] 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-12-05T22:27:40.4283025Z 2025-12-05 22:27:40,364 [INFO] 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-12-05T22:27:40.4284899Z 2025-12-05 22:27:40,365 [INFO] 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-12-05T22:27:40.4286782Z 2025-12-05 22:27:40,366 [INFO] 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-12-05T22:27:40.4288233Z 2025-12-05 22:27:40,367 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-12-05T22:27:40.4289880Z 2025-12-05 22:27:40,368 [INFO] 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-12-05T22:27:40.4291749Z 2025-12-05 22:27:40,368 [INFO] 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-12-05T22:27:40.4293601Z 2025-12-05 22:27:40,369 [INFO] 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-12-05T22:27:40.4295445Z 2025-12-05 22:27:40,370 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-12-05T22:27:40.4297283Z 2025-12-05 22:27:40,371 [INFO] 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-12-05T22:27:40.4299305Z 2025-12-05 22:27:40,372 [INFO] 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-12-05T22:27:40.4301203Z 2025-12-05 22:27:40,374 [INFO] 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-12-05T22:27:40.4303324Z 2025-12-05 22:27:40,374 [INFO] 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-12-05T22:27:40.4305148Z 2025-12-05 22:27:40,375 [INFO] 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-12-05T22:27:40.4307011Z 2025-12-05 22:27:40,376 [INFO] 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-12-05T22:27:40.4309045Z 2025-12-05 22:27:40,377 [INFO] 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-12-05T22:27:40.4311231Z 2025-12-05 22:27:40,378 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-discontiguous-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-12-05T22:27:40.4313136Z 2025-12-05 22:27:40,379 [INFO] 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-12-05T22:27:40.4314942Z 2025-12-05 22:27:40,380 [INFO] 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-12-05T22:27:40.4316920Z 2025-12-05 22:27:40,381 [INFO] 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-12-05T22:27:40.4319231Z 2025-12-05 22:27:40,382 [INFO] 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-12-05T22:27:40.4321227Z 2025-12-05 22:27:40,383 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/parse-microkernel-bench.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-12-05T22:27:40.4323003Z 2025-12-05 22:27:40,384 [INFO] 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-12-05T22:27:40.4324763Z 2025-12-05 22:27:40,385 [INFO] 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-12-05T22:27:40.4326647Z 2025-12-05 22:27:40,385 [INFO] 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-12-05T22:27:40.4328331Z 2025-12-05 22:27:40,386 [INFO] 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-12-05T22:27:40.4329698Z 2025-12-05 22:27:40,415 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-12-05T22:27:40.4331136Z 2025-12-05 22:27:40,415 [INFO] 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-12-05T22:27:40.4333120Z 2025-12-05 22:27:40,416 [INFO] 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-12-05T22:27:40.4335139Z 2025-12-05 22:27:40,417 [INFO] 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-12-05T22:27:40.4336599Z 2025-12-05 22:27:40,418 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-12-05T22:27:40.4338016Z 2025-12-05 22:27:40,418 [INFO] 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-12-05T22:27:40.4339281Z 2025-12-05 22:27:40,422 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-12-05T22:27:40.4340196Z 2025-12-05 22:27:40,422 [INFO] copying src/executorch/codegen/api/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-12-05T22:27:40.4341338Z 2025-12-05 22:27:40,423 [INFO] copying src/executorch/codegen/api/custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-12-05T22:27:40.4342584Z 2025-12-05 22:27:40,423 [INFO] copying src/executorch/codegen/api/et_cpp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-12-05T22:27:40.4343698Z 2025-12-05 22:27:40,423 [INFO] copying src/executorch/codegen/api/unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-12-05T22:27:40.4344594Z 2025-12-05 22:27:40,423 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-12-05T22:27:40.4345575Z 2025-12-05 22:27:40,424 [INFO] copying src/executorch/codegen/test/test_executorch_custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-12-05T22:27:40.4346780Z 2025-12-05 22:27:40,424 [INFO] copying src/executorch/codegen/test/test_executorch_gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-12-05T22:27:40.4348000Z 2025-12-05 22:27:40,425 [INFO] copying src/executorch/codegen/test/test_executorch_signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-12-05T22:27:40.4349303Z 2025-12-05 22:27:40,426 [INFO] copying src/executorch/codegen/test/test_executorch_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-12-05T22:27:40.4616109Z 2025-12-05 22:27:40,427 [INFO] copying src/executorch/codegen/test/test_executorch_unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-12-05T22:27:40.4617390Z 2025-12-05 22:27:40,428 [INFO] copying src/executorch/codegen/test/test_selective_build.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-12-05T22:27:40.4618496Z 2025-12-05 22:27:40,429 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-12-05T22:27:40.4619407Z 2025-12-05 22:27:40,429 [INFO] copying src/executorch/codegen/tools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-12-05T22:27:40.4620592Z 2025-12-05 22:27:40,429 [INFO] copying src/executorch/codegen/tools/combine_prim_ops_headers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-12-05T22:27:40.4621780Z 2025-12-05 22:27:40,430 [INFO] copying src/executorch/codegen/tools/gen_all_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-12-05T22:27:40.4622967Z 2025-12-05 22:27:40,431 [INFO] copying src/executorch/codegen/tools/gen_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-12-05T22:27:40.4624117Z 2025-12-05 22:27:40,431 [INFO] copying src/executorch/codegen/tools/gen_ops_def.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-12-05T22:27:40.4625281Z 2025-12-05 22:27:40,432 [INFO] copying src/executorch/codegen/tools/gen_selected_op_variants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-12-05T22:27:40.4626633Z 2025-12-05 22:27:40,433 [INFO] copying src/executorch/codegen/tools/gen_selected_prim_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-12-05T22:27:40.4627903Z 2025-12-05 22:27:40,433 [INFO] copying src/executorch/codegen/tools/merge_yaml.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-12-05T22:27:40.4629112Z 2025-12-05 22:27:40,434 [INFO] copying src/executorch/codegen/tools/yaml_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-12-05T22:27:40.4630041Z 2025-12-05 22:27:40,434 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-12-05T22:27:40.4631041Z 2025-12-05 22:27:40,435 [INFO] copying src/executorch/codegen/api/types/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-12-05T22:27:40.4632223Z 2025-12-05 22:27:40,435 [INFO] copying src/executorch/codegen/api/types/signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-12-05T22:27:40.4633421Z 2025-12-05 22:27:40,435 [INFO] copying src/executorch/codegen/api/types/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-12-05T22:27:40.4634360Z 2025-12-05 22:27:40,435 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-12-05T22:27:40.4635384Z 2025-12-05 22:27:40,435 [INFO] copying src/executorch/codegen/tools/test/test_gen_all_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-12-05T22:27:40.4636654Z 2025-12-05 22:27:40,436 [INFO] copying src/executorch/codegen/tools/test/test_gen_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-12-05T22:27:40.4638082Z 2025-12-05 22:27:40,437 [INFO] 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-12-05T22:27:40.4639599Z 2025-12-05 22:27:40,438 [INFO] 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-12-05T22:27:40.4641070Z 2025-12-05 22:27:40,439 [INFO] copying src/executorch/codegen/tools/test/test_tools_selective_build.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-12-05T22:27:40.4642129Z 2025-12-05 22:27:40,439 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-12-05T22:27:40.4643282Z 2025-12-05 22:27:40,440 [INFO] copying src/executorch/devtools/backend_debug/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-12-05T22:27:40.4644566Z 2025-12-05 22:27:40,440 [INFO] copying src/executorch/devtools/backend_debug/delegation_info.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-12-05T22:27:40.4645617Z 2025-12-05 22:27:40,441 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-12-05T22:27:40.4646668Z 2025-12-05 22:27:40,441 [INFO] copying src/executorch/devtools/bundled_program/config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-12-05T22:27:40.4647934Z 2025-12-05 22:27:40,442 [INFO] copying src/executorch/devtools/bundled_program/core.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-12-05T22:27:40.4649259Z 2025-12-05 22:27:40,443 [INFO] copying src/executorch/devtools/bundled_program/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-12-05T22:27:40.4650437Z 2025-12-05 22:27:40,444 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-12-05T22:27:40.4651505Z 2025-12-05 22:27:40,444 [INFO] copying src/executorch/devtools/debug_format/base_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-12-05T22:27:40.4652749Z 2025-12-05 22:27:40,445 [INFO] copying src/executorch/devtools/debug_format/et_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-12-05T22:27:40.4653849Z 2025-12-05 22:27:40,446 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-12-05T22:27:40.4654806Z 2025-12-05 22:27:40,446 [INFO] copying src/executorch/devtools/etdump/schema_flatcc.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-12-05T22:27:40.4656003Z 2025-12-05 22:27:40,446 [INFO] copying src/executorch/devtools/etdump/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-12-05T22:27:40.4656955Z 2025-12-05 22:27:40,447 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-12-05T22:27:40.4657919Z 2025-12-05 22:27:40,447 [INFO] copying src/executorch/devtools/etrecord/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-12-05T22:27:40.4659230Z 2025-12-05 22:27:40,448 [INFO] copying src/executorch/devtools/etrecord/_etrecord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-12-05T22:27:40.4660194Z 2025-12-05 22:27:40,449 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-12-05T22:27:40.4661168Z 2025-12-05 22:27:40,449 [INFO] copying src/executorch/devtools/inspector/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-12-05T22:27:40.4662377Z 2025-12-05 22:27:40,450 [INFO] copying src/executorch/devtools/inspector/_inspector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-12-05T22:27:40.4663604Z 2025-12-05 22:27:40,452 [INFO] copying src/executorch/devtools/inspector/_inspector_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-12-05T22:27:40.4664939Z 2025-12-05 22:27:40,453 [INFO] copying src/executorch/devtools/inspector/_intermediate_output_capturer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-12-05T22:27:40.4666261Z 2025-12-05 22:27:40,454 [INFO] copying src/executorch/devtools/inspector/inspector_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-12-05T22:27:40.4667417Z 2025-12-05 22:27:40,455 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/scripts 2025-12-05T22:27:40.4668521Z 2025-12-05 22:27:40,455 [INFO] copying src/executorch/devtools/scripts/generate_profiling_csv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/scripts 2025-12-05T22:27:40.4669650Z 2025-12-05 22:27:40,456 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool 2025-12-05T22:27:40.4670780Z 2025-12-05 22:27:40,456 [INFO] 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-12-05T22:27:40.4672213Z 2025-12-05 22:27:40,457 [INFO] 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-12-05T22:27:40.4673320Z 2025-12-05 22:27:40,458 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-12-05T22:27:40.4674354Z 2025-12-05 22:27:40,458 [INFO] copying src/executorch/devtools/visualization/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-12-05T22:27:40.4675708Z 2025-12-05 22:27:40,459 [INFO] copying src/executorch/devtools/visualization/visualization_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-12-05T22:27:40.4677208Z 2025-12-05 22:27:40,460 [INFO] copying src/executorch/devtools/visualization/visualization_utils_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-12-05T22:27:40.4678478Z 2025-12-05 22:27:40,460 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/tests 2025-12-05T22:27:40.4974354Z 2025-12-05 22:27:40,461 [INFO] 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-12-05T22:27:40.4975778Z 2025-12-05 22:27:40,461 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-12-05T22:27:40.4976927Z 2025-12-05 22:27:40,462 [INFO] copying src/executorch/devtools/bundled_program/schema/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-12-05T22:27:40.4978420Z 2025-12-05 22:27:40,462 [INFO] 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-12-05T22:27:40.4979667Z 2025-12-05 22:27:40,463 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-12-05T22:27:40.4980856Z 2025-12-05 22:27:40,463 [INFO] copying src/executorch/devtools/bundled_program/serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-12-05T22:27:40.4982011Z 2025-12-05 22:27:40,464 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-12-05T22:27:40.4983149Z 2025-12-05 22:27:40,464 [INFO] 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-12-05T22:27:40.4984580Z 2025-12-05 22:27:40,465 [INFO] copying src/executorch/devtools/bundled_program/test/test_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-12-05T22:27:40.4985996Z 2025-12-05 22:27:40,466 [INFO] copying src/executorch/devtools/bundled_program/test/test_end2end.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-12-05T22:27:40.4987117Z 2025-12-05 22:27:40,467 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/util 2025-12-05T22:27:40.4988234Z 2025-12-05 22:27:40,467 [INFO] copying src/executorch/devtools/bundled_program/util/test_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/util 2025-12-05T22:27:40.4989447Z 2025-12-05 22:27:40,468 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/test 2025-12-05T22:27:40.4990810Z 2025-12-05 22:27:40,468 [INFO] 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-12-05T22:27:40.4992067Z 2025-12-05 22:27:40,469 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/test 2025-12-05T22:27:40.4993352Z 2025-12-05 22:27:40,469 [INFO] 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-12-05T22:27:40.4994569Z 2025-12-05 22:27:40,470 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests 2025-12-05T22:27:40.4995641Z 2025-12-05 22:27:40,470 [INFO] copying src/executorch/devtools/etdump/tests/serialize_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests 2025-12-05T22:27:40.4996693Z 2025-12-05 22:27:40,471 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests 2025-12-05T22:27:40.4997862Z 2025-12-05 22:27:40,471 [INFO] copying src/executorch/devtools/etrecord/tests/etrecord_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests 2025-12-05T22:27:40.4999048Z 2025-12-05 22:27:40,473 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/numerical_comparator 2025-12-05T22:27:40.5000319Z 2025-12-05 22:27:40,473 [INFO] copying src/executorch/devtools/inspector/numerical_comparator/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/numerical_comparator 2025-12-05T22:27:40.5001997Z 2025-12-05 22:27:40,474 [INFO] copying src/executorch/devtools/inspector/numerical_comparator/l1_numerical_comparator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/numerical_comparator 2025-12-05T22:27:40.5003809Z 2025-12-05 22:27:40,475 [INFO] copying src/executorch/devtools/inspector/numerical_comparator/mse_numerical_comparator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/numerical_comparator 2025-12-05T22:27:40.5005754Z 2025-12-05 22:27:40,476 [INFO] copying src/executorch/devtools/inspector/numerical_comparator/numerical_comparator_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/numerical_comparator 2025-12-05T22:27:40.5007527Z 2025-12-05 22:27:40,477 [INFO] copying src/executorch/devtools/inspector/numerical_comparator/snr_numerical_comparator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/numerical_comparator 2025-12-05T22:27:40.5008811Z 2025-12-05 22:27:40,477 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-12-05T22:27:40.5009917Z 2025-12-05 22:27:40,478 [INFO] copying src/executorch/devtools/inspector/tests/event_blocks_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-12-05T22:27:40.5011320Z 2025-12-05 22:27:40,479 [INFO] copying src/executorch/devtools/inspector/tests/inspector_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-12-05T22:27:40.5012829Z 2025-12-05 22:27:40,480 [INFO] copying src/executorch/devtools/inspector/tests/inspector_test_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-12-05T22:27:40.5014349Z 2025-12-05 22:27:40,481 [INFO] copying src/executorch/devtools/inspector/tests/inspector_utils_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-12-05T22:27:40.5015942Z 2025-12-05 22:27:40,482 [INFO] copying src/executorch/devtools/inspector/tests/intermediate_output_capturer_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-12-05T22:27:40.5017431Z 2025-12-05 22:27:40,483 [INFO] copying src/executorch/devtools/inspector/tests/l1_comparator_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-12-05T22:27:40.5019133Z 2025-12-05 22:27:40,484 [INFO] copying src/executorch/devtools/inspector/tests/mse_comparator_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-12-05T22:27:40.5020564Z 2025-12-05 22:27:40,485 [INFO] copying src/executorch/devtools/inspector/tests/snr_comparator_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-12-05T22:27:40.5021684Z 2025-12-05 22:27:40,486 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-12-05T22:27:40.5022898Z 2025-12-05 22:27:40,487 [INFO] copying src/executorch/examples/llm_pte_finetuning/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-12-05T22:27:40.5024263Z 2025-12-05 22:27:40,487 [INFO] copying src/executorch/examples/llm_pte_finetuning/model_exporter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-12-05T22:27:40.5025644Z 2025-12-05 22:27:40,488 [INFO] 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-12-05T22:27:40.5027010Z 2025-12-05 22:27:40,489 [INFO] copying src/executorch/examples/llm_pte_finetuning/runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-12-05T22:27:40.5028357Z 2025-12-05 22:27:40,490 [INFO] copying src/executorch/examples/llm_pte_finetuning/training_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-12-05T22:27:40.5029494Z 2025-12-05 22:27:40,491 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-12-05T22:27:40.5030428Z 2025-12-05 22:27:40,491 [INFO] copying src/executorch/examples/models/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-12-05T22:27:40.5031676Z 2025-12-05 22:27:40,492 [INFO] copying src/executorch/examples/models/checkpoint.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-12-05T22:27:40.5033023Z 2025-12-05 22:27:40,493 [INFO] copying src/executorch/examples/models/model_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-12-05T22:27:40.5034263Z 2025-12-05 22:27:40,493 [INFO] copying src/executorch/examples/models/model_factory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-12-05T22:27:40.5035217Z 2025-12-05 22:27:40,494 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/xnnpack 2025-12-05T22:27:40.5036162Z 2025-12-05 22:27:40,494 [INFO] copying src/executorch/examples/xnnpack/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/xnnpack 2025-12-05T22:27:40.5037332Z 2025-12-05 22:27:40,495 [INFO] copying src/executorch/examples/xnnpack/aot_compiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/xnnpack 2025-12-05T22:27:40.5319848Z 2025-12-05 22:27:40,496 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-12-05T22:27:40.5321079Z 2025-12-05 22:27:40,497 [INFO] copying src/executorch/examples/apple/coreml/llama/export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-12-05T22:27:40.5322523Z 2025-12-05 22:27:40,497 [INFO] copying src/executorch/examples/apple/coreml/llama/llama_transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-12-05T22:27:40.5323925Z 2025-12-05 22:27:40,499 [INFO] copying src/executorch/examples/apple/coreml/llama/run.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-12-05T22:27:40.5325311Z 2025-12-05 22:27:40,500 [INFO] copying src/executorch/examples/apple/coreml/llama/run_lookahead.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-12-05T22:27:40.5326717Z 2025-12-05 22:27:40,501 [INFO] copying src/executorch/examples/apple/coreml/llama/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-12-05T22:27:40.5328238Z 2025-12-05 22:27:40,501 [INFO] copying src/executorch/examples/apple/coreml/llama/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-12-05T22:27:40.5329354Z 2025-12-05 22:27:40,502 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-12-05T22:27:40.5330520Z 2025-12-05 22:27:40,503 [INFO] copying src/executorch/examples/apple/coreml/scripts/debugger_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-12-05T22:27:40.5331962Z 2025-12-05 22:27:40,503 [INFO] copying src/executorch/examples/apple/coreml/scripts/export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-12-05T22:27:40.5333471Z 2025-12-05 22:27:40,504 [INFO] 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-12-05T22:27:40.5335003Z 2025-12-05 22:27:40,505 [INFO] copying src/executorch/examples/apple/coreml/scripts/inspector_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-12-05T22:27:40.5336679Z 2025-12-05 22:27:40,506 [INFO] copying src/executorch/examples/apple/coreml/scripts/inspector_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-12-05T22:27:40.5338143Z 2025-12-05 22:27:40,507 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-12-05T22:27:40.5339405Z 2025-12-05 22:27:40,507 [INFO] copying src/executorch/examples/apple/mps/scripts/bench_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-12-05T22:27:40.5340939Z 2025-12-05 22:27:40,508 [INFO] copying src/executorch/examples/apple/mps/scripts/mps_example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-12-05T22:27:40.5342030Z 2025-12-05 22:27:40,509 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/cuda/scripts 2025-12-05T22:27:40.5343054Z 2025-12-05 22:27:40,509 [INFO] copying src/executorch/examples/cuda/scripts/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/cuda/scripts 2025-12-05T22:27:40.5344291Z 2025-12-05 22:27:40,509 [INFO] copying src/executorch/examples/cuda/scripts/export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/cuda/scripts 2025-12-05T22:27:40.5345314Z 2025-12-05 22:27:40,510 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/codegen 2025-12-05T22:27:40.5346491Z 2025-12-05 22:27:40,511 [INFO] copying src/executorch/examples/models/codegen/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/codegen 2025-12-05T22:27:40.5347869Z 2025-12-05 22:27:40,511 [INFO] copying src/executorch/examples/models/codegen/convert_weight.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/codegen 2025-12-05T22:27:40.5349046Z 2025-12-05 22:27:40,512 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-12-05T22:27:40.5350115Z 2025-12-05 22:27:40,512 [INFO] copying src/executorch/examples/models/deeplab_v3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-12-05T22:27:40.5351438Z 2025-12-05 22:27:40,513 [INFO] copying src/executorch/examples/models/deeplab_v3/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-12-05T22:27:40.5352499Z 2025-12-05 22:27:40,514 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deit_tiny 2025-12-05T22:27:40.5353607Z 2025-12-05 22:27:40,514 [INFO] copying src/executorch/examples/models/deit_tiny/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deit_tiny 2025-12-05T22:27:40.5355036Z 2025-12-05 22:27:40,515 [INFO] copying src/executorch/examples/models/deit_tiny/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deit_tiny 2025-12-05T22:27:40.5356150Z 2025-12-05 22:27:40,516 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-12-05T22:27:40.5357136Z 2025-12-05 22:27:40,516 [INFO] copying src/executorch/examples/models/edsr/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-12-05T22:27:40.5358344Z 2025-12-05 22:27:40,517 [INFO] copying src/executorch/examples/models/edsr/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-12-05T22:27:40.5359363Z 2025-12-05 22:27:40,518 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-12-05T22:27:40.5360484Z 2025-12-05 22:27:40,518 [INFO] copying src/executorch/examples/models/efficient_sam/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-12-05T22:27:40.5361861Z 2025-12-05 22:27:40,519 [INFO] copying src/executorch/examples/models/efficient_sam/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-12-05T22:27:40.5362964Z 2025-12-05 22:27:40,520 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-12-05T22:27:40.5364155Z 2025-12-05 22:27:40,520 [INFO] copying src/executorch/examples/models/emformer_rnnt/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-12-05T22:27:40.5365722Z 2025-12-05 22:27:40,521 [INFO] copying src/executorch/examples/models/emformer_rnnt/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-12-05T22:27:40.5366909Z 2025-12-05 22:27:40,522 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/gemma 2025-12-05T22:27:40.5367997Z 2025-12-05 22:27:40,522 [INFO] copying src/executorch/examples/models/gemma/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/gemma 2025-12-05T22:27:40.5369285Z 2025-12-05 22:27:40,522 [INFO] copying src/executorch/examples/models/gemma/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/gemma 2025-12-05T22:27:40.5370355Z 2025-12-05 22:27:40,523 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/gemma3 2025-12-05T22:27:40.5371385Z 2025-12-05 22:27:40,524 [INFO] copying src/executorch/examples/models/gemma3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/gemma3 2025-12-05T22:27:40.5372687Z 2025-12-05 22:27:40,524 [INFO] copying src/executorch/examples/models/gemma3/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/gemma3 2025-12-05T22:27:40.5373871Z 2025-12-05 22:27:40,525 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/glm 2025-12-05T22:27:40.5374924Z 2025-12-05 22:27:40,525 [INFO] copying src/executorch/examples/models/glm/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/glm 2025-12-05T22:27:40.5376168Z 2025-12-05 22:27:40,526 [INFO] copying src/executorch/examples/models/glm/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/glm 2025-12-05T22:27:40.5377215Z 2025-12-05 22:27:40,527 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/granite 2025-12-05T22:27:40.5378242Z 2025-12-05 22:27:40,527 [INFO] copying src/executorch/examples/models/granite/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/granite 2025-12-05T22:27:40.5379580Z 2025-12-05 22:27:40,528 [INFO] copying src/executorch/examples/models/granite/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/granite 2025-12-05T22:27:40.5380697Z 2025-12-05 22:27:40,529 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-12-05T22:27:40.5381784Z 2025-12-05 22:27:40,529 [INFO] copying src/executorch/examples/models/inception_v3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-12-05T22:27:40.5383337Z 2025-12-05 22:27:40,530 [INFO] copying src/executorch/examples/models/inception_v3/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-12-05T22:27:40.5695667Z 2025-12-05 22:27:40,531 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-12-05T22:27:40.5696808Z 2025-12-05 22:27:40,531 [INFO] copying src/executorch/examples/models/inception_v4/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-12-05T22:27:40.5698170Z 2025-12-05 22:27:40,532 [INFO] copying src/executorch/examples/models/inception_v4/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-12-05T22:27:40.5699255Z 2025-12-05 22:27:40,533 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lfm2 2025-12-05T22:27:40.5700231Z 2025-12-05 22:27:40,533 [INFO] copying src/executorch/examples/models/lfm2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lfm2 2025-12-05T22:27:40.5701572Z 2025-12-05 22:27:40,534 [INFO] copying src/executorch/examples/models/lfm2/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lfm2 2025-12-05T22:27:40.5702866Z 2025-12-05 22:27:40,535 [INFO] copying src/executorch/examples/models/lfm2/short_conv.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lfm2 2025-12-05T22:27:40.5703870Z 2025-12-05 22:27:40,536 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5704888Z 2025-12-05 22:27:40,536 [INFO] copying src/executorch/examples/models/llama/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5706319Z 2025-12-05 22:27:40,537 [INFO] copying src/executorch/examples/models/llama/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5707645Z 2025-12-05 22:27:40,537 [INFO] copying src/executorch/examples/models/llama/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5709019Z 2025-12-05 22:27:40,538 [INFO] copying src/executorch/examples/models/llama/eval_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5710345Z 2025-12-05 22:27:40,539 [INFO] copying src/executorch/examples/models/llama/eval_llama_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5711818Z 2025-12-05 22:27:40,541 [INFO] copying src/executorch/examples/models/llama/export_llama.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5713314Z 2025-12-05 22:27:40,542 [INFO] copying src/executorch/examples/models/llama/export_llama_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5714623Z 2025-12-05 22:27:40,544 [INFO] copying src/executorch/examples/models/llama/fairseq2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5715911Z 2025-12-05 22:27:40,545 [INFO] copying src/executorch/examples/models/llama/feed_forward.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5717204Z 2025-12-05 22:27:40,546 [INFO] copying src/executorch/examples/models/llama/hf_download.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5718752Z 2025-12-05 22:27:40,547 [INFO] copying src/executorch/examples/models/llama/install_requirement_helper.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5720257Z 2025-12-05 22:27:40,547 [INFO] copying src/executorch/examples/models/llama/llama_transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5721600Z 2025-12-05 22:27:40,548 [INFO] copying src/executorch/examples/models/llama/lora.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5722988Z 2025-12-05 22:27:40,549 [INFO] copying src/executorch/examples/models/llama/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5724256Z 2025-12-05 22:27:40,550 [INFO] copying src/executorch/examples/models/llama/model_args.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5725513Z 2025-12-05 22:27:40,550 [INFO] copying src/executorch/examples/models/llama/norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5726737Z 2025-12-05 22:27:40,551 [INFO] copying src/executorch/examples/models/llama/rope.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5728056Z 2025-12-05 22:27:40,552 [INFO] copying src/executorch/examples/models/llama/static_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-12-05T22:27:40.5729230Z 2025-12-05 22:27:40,554 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision 2025-12-05T22:27:40.5730479Z 2025-12-05 22:27:40,554 [INFO] 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-12-05T22:27:40.5731688Z 2025-12-05 22:27:40,555 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-12-05T22:27:40.5732688Z 2025-12-05 22:27:40,555 [INFO] copying src/executorch/examples/models/llava/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-12-05T22:27:40.5734078Z 2025-12-05 22:27:40,556 [INFO] copying src/executorch/examples/models/llava/export_llava.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-12-05T22:27:40.5735362Z 2025-12-05 22:27:40,556 [INFO] copying src/executorch/examples/models/llava/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-12-05T22:27:40.5736358Z 2025-12-05 22:27:40,557 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-12-05T22:27:40.5737835Z 2025-12-05 22:27:40,557 [INFO] copying src/executorch/examples/models/lstm/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-12-05T22:27:40.5739753Z 2025-12-05 22:27:40,558 [INFO] copying src/executorch/examples/models/lstm/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-12-05T22:27:40.5741467Z 2025-12-05 22:27:40,559 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-12-05T22:27:40.5743425Z 2025-12-05 22:27:40,559 [INFO] copying src/executorch/examples/models/mobilebert/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-12-05T22:27:40.5745950Z 2025-12-05 22:27:40,560 [INFO] copying src/executorch/examples/models/mobilebert/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-12-05T22:27:40.5747999Z 2025-12-05 22:27:40,561 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-12-05T22:27:40.5750175Z 2025-12-05 22:27:40,561 [INFO] copying src/executorch/examples/models/mobilenet_v2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-12-05T22:27:40.5752711Z 2025-12-05 22:27:40,562 [INFO] copying src/executorch/examples/models/mobilenet_v2/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-12-05T22:27:40.5754322Z 2025-12-05 22:27:40,563 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-12-05T22:27:40.5755424Z 2025-12-05 22:27:40,563 [INFO] copying src/executorch/examples/models/mobilenet_v3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-12-05T22:27:40.5756879Z 2025-12-05 22:27:40,564 [INFO] copying src/executorch/examples/models/mobilenet_v3/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-12-05T22:27:40.5757999Z 2025-12-05 22:27:40,564 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini-lora 2025-12-05T22:27:40.5759168Z 2025-12-05 22:27:40,565 [INFO] 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-12-05T22:27:40.5760448Z 2025-12-05 22:27:40,566 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-12-05T22:27:40.5761525Z 2025-12-05 22:27:40,566 [INFO] 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-12-05T22:27:40.5762595Z 2025-12-05 22:27:40,567 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini 2025-12-05T22:27:40.5763656Z 2025-12-05 22:27:40,567 [INFO] 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-12-05T22:27:40.5765011Z 2025-12-05 22:27:40,568 [INFO] 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-12-05T22:27:40.5766108Z 2025-12-05 22:27:40,568 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-12-05T22:27:40.6010317Z 2025-12-05 22:27:40,569 [INFO] copying src/executorch/examples/models/qwen2_5/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-12-05T22:27:40.6011878Z 2025-12-05 22:27:40,569 [INFO] copying src/executorch/examples/models/qwen2_5/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-12-05T22:27:40.6012941Z 2025-12-05 22:27:40,570 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-12-05T22:27:40.6013960Z 2025-12-05 22:27:40,570 [INFO] copying src/executorch/examples/models/qwen3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-12-05T22:27:40.6015263Z 2025-12-05 22:27:40,571 [INFO] copying src/executorch/examples/models/qwen3/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-12-05T22:27:40.6016318Z 2025-12-05 22:27:40,572 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-12-05T22:27:40.6017437Z 2025-12-05 22:27:40,572 [INFO] copying src/executorch/examples/models/resnet/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-12-05T22:27:40.6018877Z 2025-12-05 22:27:40,573 [INFO] copying src/executorch/examples/models/resnet/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-12-05T22:27:40.6019917Z 2025-12-05 22:27:40,574 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-12-05T22:27:40.6020959Z 2025-12-05 22:27:40,574 [INFO] copying src/executorch/examples/models/smollm2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-12-05T22:27:40.6022296Z 2025-12-05 22:27:40,575 [INFO] copying src/executorch/examples/models/smollm2/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-12-05T22:27:40.6023371Z 2025-12-05 22:27:40,576 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm3 2025-12-05T22:27:40.6024420Z 2025-12-05 22:27:40,576 [INFO] copying src/executorch/examples/models/smollm3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm3 2025-12-05T22:27:40.6025752Z 2025-12-05 22:27:40,577 [INFO] copying src/executorch/examples/models/smollm3/convert_weights.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm3 2025-12-05T22:27:40.6027097Z 2025-12-05 22:27:40,578 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/stable_diffusion 2025-12-05T22:27:40.6028270Z 2025-12-05 22:27:40,578 [INFO] copying src/executorch/examples/models/stable_diffusion/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/stable_diffusion 2025-12-05T22:27:40.6029801Z 2025-12-05 22:27:40,578 [INFO] copying src/executorch/examples/models/stable_diffusion/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/stable_diffusion 2025-12-05T22:27:40.6030894Z 2025-12-05 22:27:40,579 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-12-05T22:27:40.6031890Z 2025-12-05 22:27:40,579 [INFO] copying src/executorch/examples/models/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-12-05T22:27:40.6033127Z 2025-12-05 22:27:40,580 [INFO] copying src/executorch/examples/models/test/test_export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-12-05T22:27:40.6034198Z 2025-12-05 22:27:40,581 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-12-05T22:27:40.6035349Z 2025-12-05 22:27:40,581 [INFO] copying src/executorch/examples/models/torchvision_vit/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-12-05T22:27:40.6036913Z 2025-12-05 22:27:40,582 [INFO] copying src/executorch/examples/models/torchvision_vit/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-12-05T22:27:40.6038312Z 2025-12-05 22:27:40,582 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-12-05T22:27:40.6039471Z 2025-12-05 22:27:40,583 [INFO] copying src/executorch/examples/models/toy_model/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-12-05T22:27:40.6040956Z 2025-12-05 22:27:40,583 [INFO] copying src/executorch/examples/models/toy_model/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-12-05T22:27:40.6042013Z 2025-12-05 22:27:40,584 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-12-05T22:27:40.6043087Z 2025-12-05 22:27:40,584 [INFO] copying src/executorch/examples/models/wav2letter/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-12-05T22:27:40.6044541Z 2025-12-05 22:27:40,585 [INFO] copying src/executorch/examples/models/wav2letter/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-12-05T22:27:40.6045617Z 2025-12-05 22:27:40,586 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/yolo12 2025-12-05T22:27:40.6046705Z 2025-12-05 22:27:40,586 [INFO] copying src/executorch/examples/models/yolo12/export_and_validate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/yolo12 2025-12-05T22:27:40.6048025Z 2025-12-05 22:27:40,587 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-12-05T22:27:40.6049544Z 2025-12-05 22:27:40,588 [INFO] 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-12-05T22:27:40.6051397Z 2025-12-05 22:27:40,588 [INFO] 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-12-05T22:27:40.6053368Z 2025-12-05 22:27:40,589 [INFO] 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-12-05T22:27:40.6055952Z 2025-12-05 22:27:40,590 [INFO] 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-12-05T22:27:40.6057818Z 2025-12-05 22:27:40,591 [INFO] 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-12-05T22:27:40.6059613Z 2025-12-05 22:27:40,592 [INFO] 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-12-05T22:27:40.6060957Z 2025-12-05 22:27:40,593 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config 2025-12-05T22:27:40.6062107Z 2025-12-05 22:27:40,593 [INFO] copying src/executorch/examples/models/llama/config/test_llm_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config 2025-12-05T22:27:40.6063462Z 2025-12-05 22:27:40,594 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-12-05T22:27:40.6064738Z 2025-12-05 22:27:40,594 [INFO] copying src/executorch/examples/models/llama/evaluate/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-12-05T22:27:40.6066177Z 2025-12-05 22:27:40,595 [INFO] copying src/executorch/examples/models/llama/evaluate/eager_eval.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-12-05T22:27:40.6067474Z 2025-12-05 22:27:40,596 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-12-05T22:27:40.6068774Z 2025-12-05 22:27:40,596 [INFO] copying src/executorch/examples/models/llama/experimental/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-12-05T22:27:40.6070313Z 2025-12-05 22:27:40,597 [INFO] copying src/executorch/examples/models/llama/experimental/generate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-12-05T22:27:40.6071888Z 2025-12-05 22:27:40,597 [INFO] 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-12-05T22:27:40.6073609Z 2025-12-05 22:27:40,598 [INFO] copying src/executorch/examples/models/llama/experimental/subclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-12-05T22:27:40.6075195Z 2025-12-05 22:27:40,599 [INFO] copying src/executorch/examples/models/llama/experimental/test_subclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-12-05T22:27:40.6318941Z 2025-12-05 22:27:40,600 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-12-05T22:27:40.6320227Z 2025-12-05 22:27:40,600 [INFO] copying src/executorch/examples/models/llama/runner/eager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-12-05T22:27:40.6321635Z 2025-12-05 22:27:40,601 [INFO] copying src/executorch/examples/models/llama/runner/generation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-12-05T22:27:40.6323054Z 2025-12-05 22:27:40,602 [INFO] copying src/executorch/examples/models/llama/runner/native.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-12-05T22:27:40.6324244Z 2025-12-05 22:27:40,603 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-12-05T22:27:40.6325576Z 2025-12-05 22:27:40,603 [INFO] 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-12-05T22:27:40.6327741Z 2025-12-05 22:27:40,603 [INFO] 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-12-05T22:27:40.6329587Z 2025-12-05 22:27:40,604 [INFO] 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-12-05T22:27:40.6331313Z 2025-12-05 22:27:40,605 [INFO] 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-12-05T22:27:40.6333066Z 2025-12-05 22:27:40,606 [INFO] 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-12-05T22:27:40.6334791Z 2025-12-05 22:27:40,606 [INFO] 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-12-05T22:27:40.6336610Z 2025-12-05 22:27:40,607 [INFO] 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-12-05T22:27:40.6338359Z 2025-12-05 22:27:40,608 [INFO] 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-12-05T22:27:40.6340176Z 2025-12-05 22:27:40,609 [INFO] 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-12-05T22:27:40.6341863Z 2025-12-05 22:27:40,610 [INFO] 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-12-05T22:27:40.6343542Z 2025-12-05 22:27:40,611 [INFO] 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-12-05T22:27:40.6345328Z 2025-12-05 22:27:40,612 [INFO] 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-12-05T22:27:40.6347120Z 2025-12-05 22:27:40,613 [INFO] 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-12-05T22:27:40.6349108Z 2025-12-05 22:27:40,614 [INFO] 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-12-05T22:27:40.6350927Z 2025-12-05 22:27:40,614 [INFO] 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-12-05T22:27:40.6352718Z 2025-12-05 22:27:40,615 [INFO] 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-12-05T22:27:40.6354564Z 2025-12-05 22:27:40,616 [INFO] 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-12-05T22:27:40.6355937Z 2025-12-05 22:27:40,617 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-12-05T22:27:40.6357178Z 2025-12-05 22:27:40,617 [INFO] 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-12-05T22:27:40.6358870Z 2025-12-05 22:27:40,618 [INFO] 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-12-05T22:27:40.6360538Z 2025-12-05 22:27:40,619 [INFO] 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-12-05T22:27:40.6362082Z 2025-12-05 22:27:40,620 [INFO] 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-12-05T22:27:40.6363554Z 2025-12-05 22:27:40,621 [INFO] 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-12-05T22:27:40.6365009Z 2025-12-05 22:27:40,622 [INFO] 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-12-05T22:27:40.6366480Z 2025-12-05 22:27:40,622 [INFO] 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-12-05T22:27:40.6367656Z 2025-12-05 22:27:40,623 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tokenizer 2025-12-05T22:27:40.6368836Z 2025-12-05 22:27:40,624 [INFO] copying src/executorch/examples/models/llama/tokenizer/tiktoken.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tokenizer 2025-12-05T22:27:40.6370169Z 2025-12-05 22:27:40,625 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-12-05T22:27:40.6371599Z 2025-12-05 22:27:40,625 [INFO] 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-12-05T22:27:40.6373345Z 2025-12-05 22:27:40,625 [INFO] 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-12-05T22:27:40.6375018Z 2025-12-05 22:27:40,626 [INFO] 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-12-05T22:27:40.6376701Z 2025-12-05 22:27:40,627 [INFO] 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-12-05T22:27:40.6378020Z 2025-12-05 22:27:40,628 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-12-05T22:27:40.6379358Z 2025-12-05 22:27:40,628 [INFO] 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-12-05T22:27:40.6380913Z 2025-12-05 22:27:40,628 [INFO] 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-12-05T22:27:40.6382505Z 2025-12-05 22:27:40,629 [INFO] 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-12-05T22:27:40.6384097Z 2025-12-05 22:27:40,630 [INFO] 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-12-05T22:27:40.6385357Z 2025-12-05 22:27:40,631 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder 2025-12-05T22:27:40.6674841Z 2025-12-05 22:27:40,631 [INFO] 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-12-05T22:27:40.6676245Z 2025-12-05 22:27:40,632 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder 2025-12-05T22:27:40.6677619Z 2025-12-05 22:27:40,632 [INFO] 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-12-05T22:27:40.6679332Z 2025-12-05 22:27:40,633 [INFO] 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-12-05T22:27:40.6680701Z 2025-12-05 22:27:40,634 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-12-05T22:27:40.6682107Z 2025-12-05 22:27:40,634 [INFO] 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-12-05T22:27:40.6684067Z 2025-12-05 22:27:40,634 [INFO] 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-12-05T22:27:40.6685541Z 2025-12-05 22:27:40,635 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-12-05T22:27:40.6687067Z 2025-12-05 22:27:40,635 [INFO] 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-12-05T22:27:40.6688917Z 2025-12-05 22:27:40,635 [INFO] 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-12-05T22:27:40.6690283Z 2025-12-05 22:27:40,636 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-12-05T22:27:40.6691387Z 2025-12-05 22:27:40,636 [INFO] copying src/executorch/examples/models/llava/test/test_llava.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-12-05T22:27:40.6692767Z 2025-12-05 22:27:40,637 [INFO] copying src/executorch/examples/models/llava/test/test_pte.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-12-05T22:27:40.6693863Z 2025-12-05 22:27:40,638 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/moshi/mimi 2025-12-05T22:27:40.6694950Z 2025-12-05 22:27:40,638 [INFO] copying src/executorch/examples/models/moshi/mimi/test_mimi.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/moshi/mimi 2025-12-05T22:27:40.6696097Z 2025-12-05 22:27:40,639 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/nxp/experimental/cifar_net 2025-12-05T22:27:40.6697316Z 2025-12-05 22:27:40,639 [INFO] copying src/executorch/examples/nxp/experimental/cifar_net/cifar_net.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/nxp/experimental/cifar_net 2025-12-05T22:27:40.6698721Z 2025-12-05 22:27:40,640 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/xnnpack/quantization 2025-12-05T22:27:40.6699880Z 2025-12-05 22:27:40,641 [INFO] copying src/executorch/examples/xnnpack/quantization/example.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/xnnpack/quantization 2025-12-05T22:27:40.6701302Z 2025-12-05 22:27:40,641 [INFO] copying src/executorch/examples/xnnpack/quantization/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/xnnpack/quantization 2025-12-05T22:27:40.6702466Z 2025-12-05 22:27:40,642 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-12-05T22:27:40.6703377Z 2025-12-05 22:27:40,642 [INFO] copying src/executorch/exir/_serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-12-05T22:27:40.6704443Z 2025-12-05 22:27:40,643 [INFO] copying src/executorch/exir/_serialize/_cord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-12-05T22:27:40.6705707Z 2025-12-05 22:27:40,644 [INFO] copying src/executorch/exir/_serialize/_dataclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-12-05T22:27:40.6706839Z 2025-12-05 22:27:40,645 [INFO] copying src/executorch/exir/_serialize/_flatbuffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-12-05T22:27:40.6707970Z 2025-12-05 22:27:40,646 [INFO] copying src/executorch/exir/_serialize/_named_data_store.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-12-05T22:27:40.6709183Z 2025-12-05 22:27:40,646 [INFO] copying src/executorch/exir/_serialize/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-12-05T22:27:40.6710281Z 2025-12-05 22:27:40,647 [INFO] copying src/executorch/exir/_serialize/_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-12-05T22:27:40.6711430Z 2025-12-05 22:27:40,648 [INFO] copying src/executorch/exir/_serialize/data_serializer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-12-05T22:27:40.6712681Z 2025-12-05 22:27:40,649 [INFO] copying src/executorch/exir/_serialize/padding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-12-05T22:27:40.6713626Z 2025-12-05 22:27:40,650 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-12-05T22:27:40.6714677Z 2025-12-05 22:27:40,650 [INFO] copying src/executorch/exir/backend/backend_api.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-12-05T22:27:40.6715817Z 2025-12-05 22:27:40,651 [INFO] copying src/executorch/exir/backend/backend_details.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-12-05T22:27:40.6716972Z 2025-12-05 22:27:40,652 [INFO] copying src/executorch/exir/backend/compile_spec_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-12-05T22:27:40.6718155Z 2025-12-05 22:27:40,653 [INFO] copying src/executorch/exir/backend/operator_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-12-05T22:27:40.6719477Z 2025-12-05 22:27:40,653 [INFO] copying src/executorch/exir/backend/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-12-05T22:27:40.6720559Z 2025-12-05 22:27:40,654 [INFO] copying src/executorch/exir/backend/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-12-05T22:27:40.6721446Z 2025-12-05 22:27:40,655 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-12-05T22:27:40.6722474Z 2025-12-05 22:27:40,655 [INFO] copying src/executorch/exir/capture/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-12-05T22:27:40.6723544Z 2025-12-05 22:27:40,656 [INFO] copying src/executorch/exir/capture/_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-12-05T22:27:40.6724609Z 2025-12-05 22:27:40,657 [INFO] copying src/executorch/exir/capture/_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-12-05T22:27:40.6725653Z 2025-12-05 22:27:40,658 [INFO] copying src/executorch/exir/capture/_unlift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-12-05T22:27:40.6726545Z 2025-12-05 22:27:40,659 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-12-05T22:27:40.6727427Z 2025-12-05 22:27:40,659 [INFO] copying src/executorch/exir/dialects/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-12-05T22:27:40.6728616Z 2025-12-05 22:27:40,659 [INFO] copying src/executorch/exir/dialects/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-12-05T22:27:40.6729557Z 2025-12-05 22:27:40,660 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-12-05T22:27:40.6730422Z 2025-12-05 22:27:40,660 [INFO] copying src/executorch/exir/emit/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-12-05T22:27:40.6731446Z 2025-12-05 22:27:40,661 [INFO] copying src/executorch/exir/emit/_emit_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-12-05T22:27:40.6732482Z 2025-12-05 22:27:40,662 [INFO] copying src/executorch/exir/emit/_emitter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-12-05T22:27:40.6733478Z 2025-12-05 22:27:40,663 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-12-05T22:27:40.6734414Z 2025-12-05 22:27:40,664 [INFO] copying src/executorch/exir/operator/convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-12-05T22:27:40.6735495Z 2025-12-05 22:27:40,665 [INFO] copying src/executorch/exir/operator/manip.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-12-05T22:27:40.6736560Z 2025-12-05 22:27:40,665 [INFO] copying src/executorch/exir/operator/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-12-05T22:27:40.7115863Z 2025-12-05 22:27:40,666 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7117106Z 2025-12-05 22:27:40,667 [INFO] copying src/executorch/exir/passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7118407Z 2025-12-05 22:27:40,667 [INFO] copying src/executorch/exir/passes/_quant_patterns_and_replacements.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7119656Z 2025-12-05 22:27:40,669 [INFO] copying src/executorch/exir/passes/const_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7120790Z 2025-12-05 22:27:40,670 [INFO] copying src/executorch/exir/passes/constant_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7121985Z 2025-12-05 22:27:40,671 [INFO] copying src/executorch/exir/passes/debug_handle_generator_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7123364Z 2025-12-05 22:27:40,671 [INFO] copying src/executorch/exir/passes/dim_order_ops_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7124545Z 2025-12-05 22:27:40,672 [INFO] copying src/executorch/exir/passes/dynamic_shape_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7125774Z 2025-12-05 22:27:40,673 [INFO] copying src/executorch/exir/passes/executorch_prim_ops_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7127017Z 2025-12-05 22:27:40,674 [INFO] copying src/executorch/exir/passes/external_constants_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7128182Z 2025-12-05 22:27:40,675 [INFO] copying src/executorch/exir/passes/init_mutable_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7129397Z 2025-12-05 22:27:40,676 [INFO] copying src/executorch/exir/passes/insert_write_back_for_buffers_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7130622Z 2025-12-05 22:27:40,676 [INFO] copying src/executorch/exir/passes/memory_format_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7131928Z 2025-12-05 22:27:40,677 [INFO] copying src/executorch/exir/passes/memory_planning_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7133261Z 2025-12-05 22:27:40,678 [INFO] copying src/executorch/exir/passes/normalize_transpose_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7134497Z 2025-12-05 22:27:40,679 [INFO] copying src/executorch/exir/passes/normalize_view_copy_base_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7135682Z 2025-12-05 22:27:40,679 [INFO] copying src/executorch/exir/passes/pass_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7136842Z 2025-12-05 22:27:40,680 [INFO] copying src/executorch/exir/passes/prune_empty_tensors_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7138003Z 2025-12-05 22:27:40,681 [INFO] copying src/executorch/exir/passes/quant_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7139285Z 2025-12-05 22:27:40,682 [INFO] copying src/executorch/exir/passes/quantize_io_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7140409Z 2025-12-05 22:27:40,682 [INFO] copying src/executorch/exir/passes/reinplace.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7141549Z 2025-12-05 22:27:40,683 [INFO] copying src/executorch/exir/passes/remove_graph_asserts_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7142770Z 2025-12-05 22:27:40,684 [INFO] copying src/executorch/exir/passes/remove_mixed_type_operators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7144030Z 2025-12-05 22:27:40,685 [INFO] copying src/executorch/exir/passes/remove_noop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7145230Z 2025-12-05 22:27:40,686 [INFO] copying src/executorch/exir/passes/remove_unused_parameters_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7146485Z 2025-12-05 22:27:40,686 [INFO] copying src/executorch/exir/passes/replace_aten_with_edge_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7147832Z 2025-12-05 22:27:40,687 [INFO] 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-12-05T22:27:40.7149209Z 2025-12-05 22:27:40,688 [INFO] copying src/executorch/exir/passes/replace_edge_with_backend_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7150450Z 2025-12-05 22:27:40,689 [INFO] copying src/executorch/exir/passes/replace_sym_size_op_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7151672Z 2025-12-05 22:27:40,689 [INFO] copying src/executorch/exir/passes/replace_view_copy_with_view_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7152906Z 2025-12-05 22:27:40,690 [INFO] copying src/executorch/exir/passes/scalar_to_tensor_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7154056Z 2025-12-05 22:27:40,691 [INFO] copying src/executorch/exir/passes/spec_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7155296Z 2025-12-05 22:27:40,692 [INFO] copying src/executorch/exir/passes/sym_shape_eval_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7156435Z 2025-12-05 22:27:40,693 [INFO] copying src/executorch/exir/passes/sym_to_tensor_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7157610Z 2025-12-05 22:27:40,693 [INFO] copying src/executorch/exir/passes/weights_to_outputs_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-12-05T22:27:40.7158551Z 2025-12-05 22:27:40,694 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-12-05T22:27:40.7159536Z 2025-12-05 22:27:40,694 [INFO] copying src/executorch/exir/program/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-12-05T22:27:40.7160616Z 2025-12-05 22:27:40,695 [INFO] copying src/executorch/exir/program/_fake_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-12-05T22:27:40.7161719Z 2025-12-05 22:27:40,696 [INFO] copying src/executorch/exir/program/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-12-05T22:27:40.7162762Z 2025-12-05 22:27:40,698 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-12-05T22:27:40.7163610Z 2025-12-05 22:27:40,698 [INFO] copying src/executorch/exir/serde/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-12-05T22:27:40.7164690Z 2025-12-05 22:27:40,698 [INFO] copying src/executorch/exir/serde/export_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-12-05T22:27:40.7165762Z 2025-12-05 22:27:40,700 [INFO] copying src/executorch/exir/serde/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-12-05T22:27:40.7166817Z 2025-12-05 22:27:40,701 [INFO] copying src/executorch/exir/serde/schema_check.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-12-05T22:27:40.7167890Z 2025-12-05 22:27:40,702 [INFO] copying src/executorch/exir/serde/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-12-05T22:27:40.7168916Z 2025-12-05 22:27:40,703 [INFO] copying src/executorch/exir/serde/union.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-12-05T22:27:40.7169775Z 2025-12-05 22:27:40,705 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7170771Z 2025-12-05 22:27:40,705 [INFO] copying src/executorch/exir/tests/asr_joiner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7171914Z 2025-12-05 22:27:40,706 [INFO] copying src/executorch/exir/tests/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7173019Z 2025-12-05 22:27:40,707 [INFO] copying src/executorch/exir/tests/control_flow_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7174168Z 2025-12-05 22:27:40,707 [INFO] copying src/executorch/exir/tests/dynamic_shape_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7175269Z 2025-12-05 22:27:40,708 [INFO] copying src/executorch/exir/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7176350Z 2025-12-05 22:27:40,709 [INFO] copying src/executorch/exir/tests/test_arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7177450Z 2025-12-05 22:27:40,710 [INFO] copying src/executorch/exir/tests/test_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7543054Z 2025-12-05 22:27:40,711 [INFO] copying src/executorch/exir/tests/test_common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7544214Z 2025-12-05 22:27:40,711 [INFO] copying src/executorch/exir/tests/test_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7545318Z 2025-12-05 22:27:40,712 [INFO] copying src/executorch/exir/tests/test_dim_order_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7546511Z 2025-12-05 22:27:40,713 [INFO] copying src/executorch/exir/tests/test_dynamic_shape_propagation.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7547663Z 2025-12-05 22:27:40,714 [INFO] copying src/executorch/exir/tests/test_error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7548864Z 2025-12-05 22:27:40,715 [INFO] copying src/executorch/exir/tests/test_extract_io_quant_params.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7550270Z 2025-12-05 22:27:40,715 [INFO] copying src/executorch/exir/tests/test_joint_graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7551429Z 2025-12-05 22:27:40,716 [INFO] copying src/executorch/exir/tests/test_memory_format_ops_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7552633Z 2025-12-05 22:27:40,717 [INFO] copying src/executorch/exir/tests/test_memory_format_ops_pass_aten.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7553874Z 2025-12-05 22:27:40,718 [INFO] copying src/executorch/exir/tests/test_memory_format_ops_pass_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7555071Z 2025-12-05 22:27:40,719 [INFO] copying src/executorch/exir/tests/test_memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7556171Z 2025-12-05 22:27:40,720 [INFO] copying src/executorch/exir/tests/test_op_convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7557265Z 2025-12-05 22:27:40,721 [INFO] copying src/executorch/exir/tests/test_pass_infra.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7558464Z 2025-12-05 22:27:40,722 [INFO] copying src/executorch/exir/tests/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7559556Z 2025-12-05 22:27:40,724 [INFO] copying src/executorch/exir/tests/test_print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7560725Z 2025-12-05 22:27:40,725 [INFO] copying src/executorch/exir/tests/test_prune_empty_tensors_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7562009Z 2025-12-05 22:27:40,725 [INFO] copying src/executorch/exir/tests/test_quant_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7563156Z 2025-12-05 22:27:40,726 [INFO] copying src/executorch/exir/tests/test_quantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7564291Z 2025-12-05 22:27:40,727 [INFO] copying src/executorch/exir/tests/test_quantize_io_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7565422Z 2025-12-05 22:27:40,728 [INFO] copying src/executorch/exir/tests/test_reinplace_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7566735Z 2025-12-05 22:27:40,729 [INFO] copying src/executorch/exir/tests/test_remove_unused_parameters_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7568011Z 2025-12-05 22:27:40,730 [INFO] copying src/executorch/exir/tests/test_remove_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7569096Z 2025-12-05 22:27:40,731 [INFO] copying src/executorch/exir/tests/test_serde.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7570154Z 2025-12-05 22:27:40,731 [INFO] copying src/executorch/exir/tests/test_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7571204Z 2025-12-05 22:27:40,732 [INFO] copying src/executorch/exir/tests/test_tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7572304Z 2025-12-05 22:27:40,733 [INFO] copying src/executorch/exir/tests/test_verification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7573408Z 2025-12-05 22:27:40,734 [INFO] copying src/executorch/exir/tests/test_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7574486Z 2025-12-05 22:27:40,735 [INFO] copying src/executorch/exir/tests/transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-12-05T22:27:40.7575522Z 2025-12-05 22:27:40,736 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-12-05T22:27:40.7576607Z 2025-12-05 22:27:40,736 [INFO] copying src/executorch/exir/verification/arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-12-05T22:27:40.7577804Z 2025-12-05 22:27:40,737 [INFO] copying src/executorch/exir/verification/dev_html.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-12-05T22:27:40.7579013Z 2025-12-05 22:27:40,738 [INFO] copying src/executorch/exir/verification/interpreter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-12-05T22:27:40.7580216Z 2025-12-05 22:27:40,739 [INFO] copying src/executorch/exir/verification/verifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-12-05T22:27:40.7581209Z 2025-12-05 22:27:40,740 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-12-05T22:27:40.7582183Z 2025-12-05 22:27:40,740 [INFO] copying src/executorch/exir/_serialize/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-12-05T22:27:40.7583507Z 2025-12-05 22:27:40,740 [INFO] copying src/executorch/exir/_serialize/test/test_cord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-12-05T22:27:40.7584743Z 2025-12-05 22:27:40,741 [INFO] copying src/executorch/exir/_serialize/test/test_flatbuffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-12-05T22:27:40.7586020Z 2025-12-05 22:27:40,742 [INFO] copying src/executorch/exir/_serialize/test/test_named_data_store.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-12-05T22:27:40.7587344Z 2025-12-05 22:27:40,743 [INFO] copying src/executorch/exir/_serialize/test/test_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-12-05T22:27:40.7588650Z 2025-12-05 22:27:40,744 [INFO] copying src/executorch/exir/_serialize/test/test_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-12-05T22:27:40.7589743Z 2025-12-05 22:27:40,745 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-12-05T22:27:40.7591019Z 2025-12-05 22:27:40,745 [INFO] 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-12-05T22:27:40.7592657Z 2025-12-05 22:27:40,746 [INFO] copying src/executorch/exir/backend/canonical_partitioners/config_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-12-05T22:27:40.7594339Z 2025-12-05 22:27:40,747 [INFO] 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-12-05T22:27:40.7596029Z 2025-12-05 22:27:40,748 [INFO] 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-12-05T22:27:40.7597694Z 2025-12-05 22:27:40,749 [INFO] copying src/executorch/exir/backend/canonical_partitioners/group_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-12-05T22:27:40.7599371Z 2025-12-05 22:27:40,750 [INFO] 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-12-05T22:27:40.7600662Z 2025-12-05 22:27:40,751 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7601719Z 2025-12-05 22:27:40,751 [INFO] copying src/executorch/exir/backend/test/backend_with_compiler_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7603090Z 2025-12-05 22:27:40,752 [INFO] 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-12-05T22:27:40.7604535Z 2025-12-05 22:27:40,752 [INFO] 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-12-05T22:27:40.7948307Z 2025-12-05 22:27:40,753 [INFO] 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-12-05T22:27:40.7949753Z 2025-12-05 22:27:40,754 [INFO] copying src/executorch/exir/backend/test/demo_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7951022Z 2025-12-05 22:27:40,755 [INFO] copying src/executorch/exir/backend/test/hta_partitioner_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7952302Z 2025-12-05 22:27:40,756 [INFO] copying src/executorch/exir/backend/test/op_partitioner_demo.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7953636Z 2025-12-05 22:27:40,757 [INFO] 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-12-05T22:27:40.7955139Z 2025-12-05 22:27:40,758 [INFO] copying src/executorch/exir/backend/test/test_backends.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7956397Z 2025-12-05 22:27:40,759 [INFO] copying src/executorch/exir/backend/test/test_backends_lifted.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7958014Z 2025-12-05 22:27:40,761 [INFO] copying src/executorch/exir/backend/test/test_backends_nested.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7959428Z 2025-12-05 22:27:40,762 [INFO] copying src/executorch/exir/backend/test/test_compatibility.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7960714Z 2025-12-05 22:27:40,762 [INFO] copying src/executorch/exir/backend/test/test_debug_handle_map.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7962000Z 2025-12-05 22:27:40,763 [INFO] copying src/executorch/exir/backend/test/test_delegate_map_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7963398Z 2025-12-05 22:27:40,764 [INFO] copying src/executorch/exir/backend/test/test_graph_partition.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7964689Z 2025-12-05 22:27:40,765 [INFO] copying src/executorch/exir/backend/test/test_group_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7966010Z 2025-12-05 22:27:40,767 [INFO] copying src/executorch/exir/backend/test/test_lowered_backend_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7967440Z 2025-12-05 22:27:40,767 [INFO] copying src/executorch/exir/backend/test/test_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7968682Z 2025-12-05 22:27:40,768 [INFO] copying src/executorch/exir/backend/test/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7969932Z 2025-12-05 22:27:40,769 [INFO] 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-12-05T22:27:40.7971204Z 2025-12-05 22:27:40,770 [INFO] copying src/executorch/exir/backend/test/test_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-12-05T22:27:40.7972208Z 2025-12-05 22:27:40,771 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos 2025-12-05T22:27:40.7973313Z 2025-12-05 22:27:40,771 [INFO] 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-12-05T22:27:40.7974694Z 2025-12-05 22:27:40,772 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-12-05T22:27:40.7975900Z 2025-12-05 22:27:40,772 [INFO] 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-12-05T22:27:40.7977589Z 2025-12-05 22:27:40,773 [INFO] 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-12-05T22:27:40.7979205Z 2025-12-05 22:27:40,774 [INFO] 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-12-05T22:27:40.7980275Z 2025-12-05 22:27:40,775 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-12-05T22:27:40.7981277Z 2025-12-05 22:27:40,775 [INFO] copying src/executorch/exir/dialects/backend/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-12-05T22:27:40.7982258Z 2025-12-05 22:27:40,776 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-12-05T22:27:40.7983191Z 2025-12-05 22:27:40,776 [INFO] copying src/executorch/exir/dialects/edge/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-12-05T22:27:40.7984133Z 2025-12-05 22:27:40,777 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/test 2025-12-05T22:27:40.7985265Z 2025-12-05 22:27:40,777 [INFO] copying src/executorch/exir/dialects/test/test_exir_dialect_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/test 2025-12-05T22:27:40.7986344Z 2025-12-05 22:27:40,778 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/test 2025-12-05T22:27:40.7987481Z 2025-12-05 22:27:40,778 [INFO] 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-12-05T22:27:40.7988746Z 2025-12-05 22:27:40,779 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-12-05T22:27:40.7989901Z 2025-12-05 22:27:40,779 [INFO] copying src/executorch/exir/dialects/edge/arg/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-12-05T22:27:40.7991159Z 2025-12-05 22:27:40,780 [INFO] copying src/executorch/exir/dialects/edge/arg/type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-12-05T22:27:40.7992184Z 2025-12-05 22:27:40,781 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-12-05T22:27:40.7993252Z 2025-12-05 22:27:40,781 [INFO] copying src/executorch/exir/dialects/edge/dtype/runner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-12-05T22:27:40.7994595Z 2025-12-05 22:27:40,782 [INFO] copying src/executorch/exir/dialects/edge/dtype/supported.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-12-05T22:27:40.7995915Z 2025-12-05 22:27:40,783 [INFO] copying src/executorch/exir/dialects/edge/dtype/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-12-05T22:27:40.7996954Z 2025-12-05 22:27:40,784 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-12-05T22:27:40.7998029Z 2025-12-05 22:27:40,784 [INFO] copying src/executorch/exir/dialects/edge/op/api.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-12-05T22:27:40.7999291Z 2025-12-05 22:27:40,785 [INFO] copying src/executorch/exir/dialects/edge/op/sample_input.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-12-05T22:27:40.8000335Z 2025-12-05 22:27:40,786 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-12-05T22:27:40.8001422Z 2025-12-05 22:27:40,787 [INFO] copying src/executorch/exir/dialects/edge/spec/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-12-05T22:27:40.8002696Z 2025-12-05 22:27:40,788 [INFO] copying src/executorch/exir/dialects/edge/spec/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-12-05T22:27:40.8003730Z 2025-12-05 22:27:40,789 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test 2025-12-05T22:27:40.8004778Z 2025-12-05 22:27:40,789 [INFO] 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-12-05T22:27:40.8006253Z 2025-12-05 22:27:40,790 [INFO] 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-12-05T22:27:40.8007330Z 2025-12-05 22:27:40,791 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/test 2025-12-05T22:27:40.8008427Z 2025-12-05 22:27:40,791 [INFO] 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-12-05T22:27:40.8009463Z 2025-12-05 22:27:40,792 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test 2025-12-05T22:27:40.8010381Z 2025-12-05 22:27:40,792 [INFO] copying src/executorch/exir/emit/test/test_emit.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test 2025-12-05T22:27:40.8011318Z 2025-12-05 22:27:40,794 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test 2025-12-05T22:27:40.8339869Z 2025-12-05 22:27:40,794 [INFO] copying src/executorch/exir/operator/test/test_operator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test 2025-12-05T22:27:40.8340926Z 2025-12-05 22:27:40,795 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-12-05T22:27:40.8341900Z 2025-12-05 22:27:40,795 [INFO] copying src/executorch/exir/program/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-12-05T22:27:40.8343108Z 2025-12-05 22:27:40,795 [INFO] copying src/executorch/exir/program/test/test_fake_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-12-05T22:27:40.8344392Z 2025-12-05 22:27:40,796 [INFO] copying src/executorch/exir/program/test/test_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-12-05T22:27:40.8345459Z 2025-12-05 22:27:40,797 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test 2025-12-05T22:27:40.8346702Z 2025-12-05 22:27:40,797 [INFO] copying src/executorch/exir/verification/test/test_verifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test 2025-12-05T22:27:40.8347779Z 2025-12-05 22:27:40,798 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests 2025-12-05T22:27:40.8348933Z 2025-12-05 22:27:40,798 [INFO] copying src/executorch/export/tests/test_executorch_export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests 2025-12-05T22:27:40.8350243Z 2025-12-05 22:27:40,799 [INFO] copying src/executorch/export/tests/test_export_recipe.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests 2025-12-05T22:27:40.8351463Z 2025-12-05 22:27:40,800 [INFO] copying src/executorch/export/tests/test_export_session.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests 2025-12-05T22:27:40.8352758Z 2025-12-05 22:27:40,801 [INFO] copying src/executorch/export/tests/test_export_stages.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests 2025-12-05T22:27:40.8354043Z 2025-12-05 22:27:40,802 [INFO] copying src/executorch/export/tests/test_recipe_provider.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests 2025-12-05T22:27:40.8355836Z 2025-12-05 22:27:40,802 [INFO] copying src/executorch/export/tests/test_recipe_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests 2025-12-05T22:27:40.8357091Z 2025-12-05 22:27:40,803 [INFO] copying src/executorch/export/tests/test_target_recipes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests 2025-12-05T22:27:40.8358055Z 2025-12-05 22:27:40,804 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/audio 2025-12-05T22:27:40.8359037Z 2025-12-05 22:27:40,805 [INFO] copying src/executorch/extension/audio/mel_spectrogram.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/audio 2025-12-05T22:27:40.8360104Z 2025-12-05 22:27:40,806 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-12-05T22:27:40.8361096Z 2025-12-05 22:27:40,806 [INFO] copying src/executorch/extension/export_util/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-12-05T22:27:40.8362324Z 2025-12-05 22:27:40,807 [INFO] copying src/executorch/extension/export_util/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-12-05T22:27:40.8363356Z 2025-12-05 22:27:40,808 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-12-05T22:27:40.8364356Z 2025-12-05 22:27:40,808 [INFO] copying src/executorch/extension/flat_tensor/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-12-05T22:27:40.8365330Z 2025-12-05 22:27:40,808 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-12-05T22:27:40.8366451Z 2025-12-05 22:27:40,809 [INFO] copying src/executorch/extension/gguf_util/convert_main.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-12-05T22:27:40.8367674Z 2025-12-05 22:27:40,810 [INFO] copying src/executorch/extension/gguf_util/converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-12-05T22:27:40.8368885Z 2025-12-05 22:27:40,810 [INFO] copying src/executorch/extension/gguf_util/load_gguf.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-12-05T22:27:40.8369863Z 2025-12-05 22:27:40,812 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-12-05T22:27:40.8370965Z 2025-12-05 22:27:40,812 [INFO] copying src/executorch/extension/pybindings/portable_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-12-05T22:27:40.8372006Z 2025-12-05 22:27:40,813 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-12-05T22:27:40.8372940Z 2025-12-05 22:27:40,813 [INFO] copying src/executorch/extension/pytree/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-12-05T22:27:40.8373883Z 2025-12-05 22:27:40,814 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-12-05T22:27:40.8374848Z 2025-12-05 22:27:40,814 [INFO] copying src/executorch/extension/training/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-12-05T22:27:40.8375876Z 2025-12-05 22:27:40,818 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-12-05T22:27:40.8377017Z 2025-12-05 22:27:40,818 [INFO] copying src/executorch/extension/flat_tensor/serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-12-05T22:27:40.8378464Z 2025-12-05 22:27:40,819 [INFO] 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-12-05T22:27:40.8379942Z 2025-12-05 22:27:40,820 [INFO] copying src/executorch/extension/flat_tensor/serialize/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-12-05T22:27:40.8381073Z 2025-12-05 22:27:40,821 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/test 2025-12-05T22:27:40.8382236Z 2025-12-05 22:27:40,821 [INFO] copying src/executorch/extension/flat_tensor/test/test_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/test 2025-12-05T22:27:40.8383416Z 2025-12-05 22:27:40,822 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converters 2025-12-05T22:27:40.8384589Z 2025-12-05 22:27:40,822 [INFO] copying src/executorch/extension/gguf_util/converters/llama_converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converters 2025-12-05T22:27:40.8385715Z 2025-12-05 22:27:40,823 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-12-05T22:27:40.8386763Z 2025-12-05 22:27:40,823 [INFO] copying src/executorch/extension/llm/custom_ops/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-12-05T22:27:40.8388057Z 2025-12-05 22:27:40,823 [INFO] copying src/executorch/extension/llm/custom_ops/custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-12-05T22:27:40.8389452Z 2025-12-05 22:27:40,824 [INFO] copying src/executorch/extension/llm/custom_ops/model_sharding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-12-05T22:27:40.8390804Z 2025-12-05 22:27:40,825 [INFO] 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-12-05T22:27:40.8392170Z 2025-12-05 22:27:40,826 [INFO] 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-12-05T22:27:40.8393678Z 2025-12-05 22:27:40,827 [INFO] 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-12-05T22:27:40.8395107Z 2025-12-05 22:27:40,827 [INFO] 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-12-05T22:27:40.8396493Z 2025-12-05 22:27:40,828 [INFO] 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-12-05T22:27:40.8397885Z 2025-12-05 22:27:40,829 [INFO] 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-12-05T22:27:40.8398956Z 2025-12-05 22:27:40,831 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-12-05T22:27:40.8399946Z 2025-12-05 22:27:40,831 [INFO] copying src/executorch/extension/llm/export/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-12-05T22:27:40.8401178Z 2025-12-05 22:27:40,832 [INFO] copying src/executorch/extension/llm/export/builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-12-05T22:27:40.8618841Z 2025-12-05 22:27:40,833 [INFO] copying src/executorch/extension/llm/export/export_llm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-12-05T22:27:40.8620908Z 2025-12-05 22:27:40,834 [INFO] copying src/executorch/extension/llm/export/export_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-12-05T22:27:40.8622253Z 2025-12-05 22:27:40,835 [INFO] copying src/executorch/extension/llm/export/partitioner_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-12-05T22:27:40.8623714Z 2025-12-05 22:27:40,835 [INFO] copying src/executorch/extension/llm/export/quantizer_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-12-05T22:27:40.8625022Z 2025-12-05 22:27:40,836 [INFO] copying src/executorch/extension/llm/export/test_export_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-12-05T22:27:40.8626278Z 2025-12-05 22:27:40,837 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-12-05T22:27:40.8627295Z 2025-12-05 22:27:40,837 [INFO] copying src/executorch/extension/llm/modules/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-12-05T22:27:40.8628701Z 2025-12-05 22:27:40,838 [INFO] copying src/executorch/extension/llm/modules/_position_embeddings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-12-05T22:27:40.8630169Z 2025-12-05 22:27:40,839 [INFO] copying src/executorch/extension/llm/modules/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-12-05T22:27:40.8631511Z 2025-12-05 22:27:40,840 [INFO] copying src/executorch/extension/llm/modules/kv_cache.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-12-05T22:27:40.8632521Z 2025-12-05 22:27:40,841 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/runner 2025-12-05T22:27:40.8633518Z 2025-12-05 22:27:40,841 [INFO] copying src/executorch/extension/llm/runner/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/runner 2025-12-05T22:27:40.8634512Z 2025-12-05 22:27:40,842 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-12-05T22:27:40.8635564Z 2025-12-05 22:27:40,842 [INFO] copying src/executorch/extension/llm/tokenizers/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-12-05T22:27:40.8636670Z 2025-12-05 22:27:40,843 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant 2025-12-05T22:27:40.8638061Z 2025-12-05 22:27:40,843 [INFO] 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-12-05T22:27:40.8639422Z 2025-12-05 22:27:40,844 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-12-05T22:27:40.8640890Z 2025-12-05 22:27:40,844 [INFO] 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-12-05T22:27:40.8642720Z 2025-12-05 22:27:40,845 [INFO] 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-12-05T22:27:40.8644181Z 2025-12-05 22:27:40,846 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/config 2025-12-05T22:27:40.8645387Z 2025-12-05 22:27:40,846 [INFO] copying src/executorch/extension/llm/export/config/llm_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/config 2025-12-05T22:27:40.8646544Z 2025-12-05 22:27:40,847 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-12-05T22:27:40.8647615Z 2025-12-05 22:27:40,847 [INFO] copying src/executorch/extension/llm/export/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-12-05T22:27:40.8648962Z 2025-12-05 22:27:40,848 [INFO] copying src/executorch/extension/llm/export/test/test_builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-12-05T22:27:40.8650360Z 2025-12-05 22:27:40,849 [INFO] copying src/executorch/extension/llm/export/test/test_export_llm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-12-05T22:27:40.8651473Z 2025-12-05 22:27:40,850 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-12-05T22:27:40.8652624Z 2025-12-05 22:27:40,850 [INFO] copying src/executorch/extension/llm/modules/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-12-05T22:27:40.8654143Z 2025-12-05 22:27:40,850 [INFO] copying src/executorch/extension/llm/modules/test/test_attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-12-05T22:27:40.8655559Z 2025-12-05 22:27:40,851 [INFO] 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-12-05T22:27:40.8657006Z 2025-12-05 22:27:40,852 [INFO] 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-12-05T22:27:40.8658183Z 2025-12-05 22:27:40,853 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/runner/test 2025-12-05T22:27:40.8659469Z 2025-12-05 22:27:40,853 [INFO] copying src/executorch/extension/llm/runner/test/test_runner_pybindings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/runner/test 2025-12-05T22:27:40.8660769Z 2025-12-05 22:27:40,854 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-12-05T22:27:40.8662384Z 2025-12-05 22:27:40,854 [INFO] 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-12-05T22:27:40.8664216Z 2025-12-05 22:27:40,854 [INFO] 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-12-05T22:27:40.8666113Z 2025-12-05 22:27:40,855 [INFO] 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-12-05T22:27:40.8667950Z 2025-12-05 22:27:40,855 [INFO] 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-12-05T22:27:40.8669827Z 2025-12-05 22:27:40,855 [INFO] 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-12-05T22:27:40.8684426Z 2025-12-05 22:27:40,856 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-12-05T22:27:40.8685798Z 2025-12-05 22:27:40,856 [INFO] copying src/executorch/extension/llm/tokenizers/test/test_hf_tokenizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-12-05T22:27:40.8687359Z 2025-12-05 22:27:40,857 [INFO] copying src/executorch/extension/llm/tokenizers/test/test_python_bindings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-12-05T22:27:40.8688888Z 2025-12-05 22:27:40,857 [INFO] copying src/executorch/extension/llm/tokenizers/test/test_tekken_python.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-12-05T22:27:40.8690369Z 2025-12-05 22:27:40,858 [INFO] copying src/executorch/extension/llm/tokenizers/test/test_tiktoken.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-12-05T22:27:40.8691645Z 2025-12-05 22:27:40,859 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-12-05T22:27:40.8693080Z 2025-12-05 22:27:40,859 [INFO] 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-12-05T22:27:40.8694543Z 2025-12-05 22:27:40,860 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-12-05T22:27:40.8696216Z 2025-12-05 22:27:40,860 [INFO] 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-12-05T22:27:40.8698303Z 2025-12-05 22:27:40,860 [INFO] 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-12-05T22:27:40.8849729Z 2025-12-05 22:27:40,861 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-12-05T22:27:40.8851214Z 2025-12-05 22:27:40,861 [INFO] 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-12-05T22:27:40.8853074Z 2025-12-05 22:27:40,861 [INFO] 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-12-05T22:27:40.8854769Z 2025-12-05 22:27:40,862 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-12-05T22:27:40.8856500Z 2025-12-05 22:27:40,862 [INFO] 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-12-05T22:27:40.8858097Z 2025-12-05 22:27:40,864 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-12-05T22:27:40.8859876Z 2025-12-05 22:27:40,864 [INFO] 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-12-05T22:27:40.8862181Z 2025-12-05 22:27:40,864 [INFO] 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-12-05T22:27:40.8864052Z 2025-12-05 22:27:40,871 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-12-05T22:27:40.8865895Z 2025-12-05 22:27:40,871 [INFO] 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-12-05T22:27:40.8867573Z 2025-12-05 22:27:40,875 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-12-05T22:27:40.8869690Z 2025-12-05 22:27:40,875 [INFO] 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-12-05T22:27:40.8871529Z 2025-12-05 22:27:40,876 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-12-05T22:27:40.8873400Z 2025-12-05 22:27:40,876 [INFO] 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-12-05T22:27:40.8875316Z 2025-12-05 22:27:40,877 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-12-05T22:27:40.8877304Z 2025-12-05 22:27:40,877 [INFO] 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-12-05T22:27:40.8879140Z 2025-12-05 22:27:40,877 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-12-05T22:27:40.8880836Z 2025-12-05 22:27:40,877 [INFO] 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-12-05T22:27:40.8882508Z 2025-12-05 22:27:40,878 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-12-05T22:27:40.8884123Z 2025-12-05 22:27:40,878 [INFO] 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-12-05T22:27:40.8885700Z 2025-12-05 22:27:40,878 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-12-05T22:27:40.8887190Z 2025-12-05 22:27:40,878 [INFO] 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-12-05T22:27:40.8889414Z 2025-12-05 22:27:40,879 [INFO] 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-12-05T22:27:40.8891511Z 2025-12-05 22:27:40,879 [INFO] 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-12-05T22:27:40.8893514Z 2025-12-05 22:27:40,879 [INFO] 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-12-05T22:27:40.8895480Z 2025-12-05 22:27:40,879 [INFO] 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-12-05T22:27:40.8897386Z 2025-12-05 22:27:40,879 [INFO] 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-12-05T22:27:40.8899538Z 2025-12-05 22:27:40,880 [INFO] 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-12-05T22:27:40.8901696Z 2025-12-05 22:27:40,880 [INFO] 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-12-05T22:27:40.8903176Z 2025-12-05 22:27:40,881 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-12-05T22:27:40.8904642Z 2025-12-05 22:27:40,882 [INFO] 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-12-05T22:27:40.8906090Z 2025-12-05 22:27:40,882 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-12-05T22:27:40.8907484Z 2025-12-05 22:27:40,882 [INFO] 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-12-05T22:27:40.8909587Z 2025-12-05 22:27:40,882 [INFO] 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-12-05T22:27:40.8911470Z 2025-12-05 22:27:40,883 [INFO] 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-12-05T22:27:40.8912862Z 2025-12-05 22:27:40,883 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-12-05T22:27:40.8914305Z 2025-12-05 22:27:40,883 [INFO] 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-12-05T22:27:40.8916432Z 2025-12-05 22:27:40,883 [INFO] 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-12-05T22:27:40.8918395Z 2025-12-05 22:27:40,883 [INFO] 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-12-05T22:27:40.8919841Z 2025-12-05 22:27:40,884 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-12-05T22:27:40.9317090Z 2025-12-05 22:27:40,884 [INFO] 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-12-05T22:27:40.9318969Z 2025-12-05 22:27:40,885 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-12-05T22:27:40.9320768Z 2025-12-05 22:27:40,885 [INFO] 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-12-05T22:27:40.9322381Z 2025-12-05 22:27:40,885 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-12-05T22:27:40.9324021Z 2025-12-05 22:27:40,885 [INFO] 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-12-05T22:27:40.9326186Z 2025-12-05 22:27:40,886 [INFO] 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-12-05T22:27:40.9327976Z 2025-12-05 22:27:40,886 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-12-05T22:27:40.9329835Z 2025-12-05 22:27:40,886 [INFO] 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-12-05T22:27:40.9332261Z 2025-12-05 22:27:40,886 [INFO] 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-12-05T22:27:40.9334749Z 2025-12-05 22:27:40,887 [INFO] 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-12-05T22:27:40.9337418Z 2025-12-05 22:27:40,887 [INFO] 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-12-05T22:27:40.9339099Z 2025-12-05 22:27:40,888 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/module/test/resources 2025-12-05T22:27:40.9340324Z 2025-12-05 22:27:40,888 [INFO] 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-12-05T22:27:40.9341523Z 2025-12-05 22:27:40,889 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-12-05T22:27:40.9342609Z 2025-12-05 22:27:40,889 [INFO] copying src/executorch/extension/pybindings/test/make_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-12-05T22:27:40.9344042Z 2025-12-05 22:27:40,890 [INFO] copying src/executorch/extension/pybindings/test/test_backend_pybinding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-12-05T22:27:40.9345506Z 2025-12-05 22:27:40,891 [INFO] copying src/executorch/extension/pybindings/test/test_pybindings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-12-05T22:27:40.9346600Z 2025-12-05 22:27:40,892 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-12-05T22:27:40.9347605Z 2025-12-05 22:27:40,892 [INFO] copying src/executorch/extension/pytree/test/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-12-05T22:27:40.9348697Z 2025-12-05 22:27:40,893 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-12-05T22:27:40.9349943Z 2025-12-05 22:27:40,893 [INFO] copying src/executorch/extension/training/pybindings/_training_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-12-05T22:27:40.9351141Z 2025-12-05 22:27:40,894 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/CIFAR 2025-12-05T22:27:40.9352354Z 2025-12-05 22:27:40,894 [INFO] copying src/executorch/extension/training/examples/CIFAR/data_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/CIFAR 2025-12-05T22:27:40.9353886Z 2025-12-05 22:27:40,895 [INFO] copying src/executorch/extension/training/examples/CIFAR/export.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/CIFAR 2025-12-05T22:27:40.9355394Z 2025-12-05 22:27:40,896 [INFO] copying src/executorch/extension/training/examples/CIFAR/main.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/CIFAR 2025-12-05T22:27:40.9356888Z 2025-12-05 22:27:40,897 [INFO] copying src/executorch/extension/training/examples/CIFAR/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/CIFAR 2025-12-05T22:27:40.9358420Z 2025-12-05 22:27:40,898 [INFO] copying src/executorch/extension/training/examples/CIFAR/train_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/CIFAR 2025-12-05T22:27:40.9359638Z 2025-12-05 22:27:40,899 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-12-05T22:27:40.9360824Z 2025-12-05 22:27:40,899 [INFO] copying src/executorch/extension/training/examples/XOR/export_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-12-05T22:27:40.9362317Z 2025-12-05 22:27:40,899 [INFO] copying src/executorch/extension/training/examples/XOR/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-12-05T22:27:40.9363512Z 2025-12-05 22:27:40,900 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/test 2025-12-05T22:27:40.9364774Z 2025-12-05 22:27:40,900 [INFO] 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-12-05T22:27:40.9366116Z 2025-12-05 22:27:40,901 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/test 2025-12-05T22:27:40.9367319Z 2025-12-05 22:27:40,902 [INFO] copying src/executorch/extension/training/pybindings/test/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/test 2025-12-05T22:27:40.9368466Z 2025-12-05 22:27:40,902 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/wasm/test 2025-12-05T22:27:40.9369470Z 2025-12-05 22:27:40,903 [INFO] copying src/executorch/extension/wasm/test/test_model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/wasm/test 2025-12-05T22:27:40.9370449Z 2025-12-05 22:27:40,903 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-12-05T22:27:40.9371409Z 2025-12-05 22:27:40,904 [INFO] copying src/executorch/kernels/quantized/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-12-05T22:27:40.9372382Z 2025-12-05 22:27:40,904 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-12-05T22:27:40.9373463Z 2025-12-05 22:27:40,905 [INFO] copying src/executorch/kernels/quantized/test/test_out_variants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-12-05T22:27:40.9374870Z 2025-12-05 22:27:40,905 [INFO] 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-12-05T22:27:40.9375940Z 2025-12-05 22:27:40,907 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-12-05T22:27:40.9376924Z 2025-12-05 22:27:40,907 [INFO] copying src/executorch/runtime/test/test_runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-12-05T22:27:40.9378089Z 2025-12-05 22:27:40,907 [INFO] copying src/executorch/runtime/test/test_runtime_etdump_gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-12-05T22:27:40.9378868Z 2025-12-05 22:27:40,918 [INFO] running egg_info 2025-12-05T22:27:40.9379267Z 2025-12-05 22:27:40,928 [INFO] creating executorch.egg-info 2025-12-05T22:27:40.9379706Z 2025-12-05 22:27:40,928 [INFO] writing executorch.egg-info/PKG-INFO 2025-12-05T22:27:40.9380307Z 2025-12-05 22:27:40,929 [INFO] writing dependency_links to executorch.egg-info/dependency_links.txt 2025-12-05T22:27:40.9380994Z 2025-12-05 22:27:40,929 [INFO] writing entry points to executorch.egg-info/entry_points.txt 2025-12-05T22:27:40.9381614Z 2025-12-05 22:27:40,930 [INFO] writing requirements to executorch.egg-info/requires.txt 2025-12-05T22:27:42.0279290Z 2025-12-05 22:27:40,931 [INFO] writing top-level names to executorch.egg-info/top_level.txt 2025-12-05T22:27:42.0280137Z 2025-12-05 22:27:40,931 [INFO] writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-12-05T22:27:42.0280749Z 2025-12-05 22:27:41,495 [INFO] reading manifest file 'executorch.egg-info/SOURCES.txt' 2025-12-05T22:27:42.0281286Z 2025-12-05 22:27:41,496 [INFO] adding license file 'LICENSE' 2025-12-05T22:27:42.0281798Z 2025-12-05 22:27:41,521 [INFO] writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-12-05T22:27:42.0282579Z 2025-12-05 22:27:41,998 [INFO] copying src/executorch/exir/delegate.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-12-05T22:27:42.0283393Z 2025-12-05 22:27:41,998 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-12-05T22:27:42.0284220Z 2025-12-05 22:27:41,999 [INFO] copying src/executorch/schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-12-05T22:27:42.0285368Z 2025-12-05 22:27:41,999 [INFO] copying src/executorch/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-12-05T22:27:42.0286714Z 2025-12-05 22:27:41,999 [INFO] copying src/executorch/backends/apple/coreml/executorchcoreml.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml 2025-12-05T22:27:42.0288409Z 2025-12-05 22:27:42,000 [INFO] copying src/executorch/backends/apple/mps/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-12-05T22:27:42.0289580Z 2025-12-05 22:27:42,001 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas 2025-12-05T22:27:42.0290672Z 2025-12-05 22:27:42,001 [INFO] 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-12-05T22:27:42.0291975Z 2025-12-05 22:27:42,002 [INFO] copying src/executorch/backends/cadence/aot/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:42.0293621Z 2025-12-05 22:27:42,003 [INFO] copying src/executorch/backends/cadence/aot/functions_fusion_g3.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:42.0295062Z 2025-12-05 22:27:42,004 [INFO] copying src/executorch/backends/cadence/aot/functions_hifi.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:42.0296391Z 2025-12-05 22:27:42,005 [INFO] copying src/executorch/backends/cadence/aot/functions_vision.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-12-05T22:27:42.0297715Z 2025-12-05 22:27:42,005 [INFO] copying src/executorch/backends/cortex_m/ops/operators.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-12-05T22:27:42.0299137Z 2025-12-05 22:27:42,006 [INFO] copying src/executorch/backends/qualcomm/serialization/qc_compiler_spec.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-12-05T22:27:42.0301061Z 2025-12-05 22:27:42,007 [INFO] copying src/executorch/backends/samsung/serialization/compile_options_def.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/serialization 2025-12-05T22:27:42.0302741Z 2025-12-05 22:27:42,008 [INFO] copying src/executorch/backends/vulkan/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-12-05T22:27:42.0303941Z 2025-12-05 22:27:42,008 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0305281Z 2025-12-05 22:27:42,009 [INFO] 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-12-05T22:27:42.0307037Z 2025-12-05 22:27:42,009 [INFO] 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-12-05T22:27:42.0309055Z 2025-12-05 22:27:42,010 [INFO] 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-12-05T22:27:42.0310885Z 2025-12-05 22:27:42,011 [INFO] 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-12-05T22:27:42.0312535Z 2025-12-05 22:27:42,012 [INFO] 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-12-05T22:27:42.0314211Z 2025-12-05 22:27:42,012 [INFO] 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-12-05T22:27:42.0315877Z 2025-12-05 22:27:42,013 [INFO] 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-12-05T22:27:42.0318035Z 2025-12-05 22:27:42,014 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/binary_q8ta_q8ta_q8to.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0319986Z 2025-12-05 22:27:42,015 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/binary_scalar_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0321742Z 2025-12-05 22:27:42,015 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/binary_scalar_texture.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0323570Z 2025-12-05 22:27:42,016 [INFO] 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-12-05T22:27:42.0325691Z 2025-12-05 22:27:42,017 [INFO] 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-12-05T22:27:42.0327389Z 2025-12-05 22:27:42,018 [INFO] 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-12-05T22:27:42.0329119Z 2025-12-05 22:27:42,019 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/choose_qparams_per_row.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0330825Z 2025-12-05 22:27:42,019 [INFO] 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-12-05T22:27:42.0332850Z 2025-12-05 22:27:42,020 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/col2im.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0334542Z 2025-12-05 22:27:42,021 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/concat_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0336258Z 2025-12-05 22:27:42,022 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/concat_texture.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0337925Z 2025-12-05 22:27:42,022 [INFO] 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-12-05T22:27:42.0339811Z 2025-12-05 22:27:42,023 [INFO] 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-12-05T22:27:42.0341463Z 2025-12-05 22:27:42,024 [INFO] 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-12-05T22:27:42.0343165Z 2025-12-05 22:27:42,025 [INFO] 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-12-05T22:27:42.0344941Z 2025-12-05 22:27:42,025 [INFO] 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-12-05T22:27:42.0346745Z 2025-12-05 22:27:42,026 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_q8ta_q8csw_q8to.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0591826Z 2025-12-05 22:27:42,027 [INFO] 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-12-05T22:27:42.0593685Z 2025-12-05 22:27:42,028 [INFO] 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-12-05T22:27:42.0595499Z 2025-12-05 22:27:42,029 [INFO] 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-12-05T22:27:42.0597461Z 2025-12-05 22:27:42,029 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_q8ta_q8csw_q8to_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0599254Z 2025-12-05 22:27:42,030 [INFO] 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-12-05T22:27:42.0601000Z 2025-12-05 22:27:42,031 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_q8csw_linear_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0602820Z 2025-12-05 22:27:42,032 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_q8ta_q8csw_linear_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0604785Z 2025-12-05 22:27:42,032 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_q8ta_q8csw_q8to.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0606917Z 2025-12-05 22:27:42,033 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_q8ta_q8csw_q8to_linear_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0608757Z 2025-12-05 22:27:42,034 [INFO] 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-12-05T22:27:42.0610548Z 2025-12-05 22:27:42,035 [INFO] 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-12-05T22:27:42.0612587Z 2025-12-05 22:27:42,036 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/embedding_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0614405Z 2025-12-05 22:27:42,036 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/embedding_legacy.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0616146Z 2025-12-05 22:27:42,037 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/embedding_texture.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0617863Z 2025-12-05 22:27:42,038 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/expand_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0619733Z 2025-12-05 22:27:42,039 [INFO] 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-12-05T22:27:42.0621532Z 2025-12-05 22:27:42,039 [INFO] 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-12-05T22:27:42.0623187Z 2025-12-05 22:27:42,040 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/gather_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0625027Z 2025-12-05 22:27:42,041 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/gather_texture.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0626711Z 2025-12-05 22:27:42,042 [INFO] 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-12-05T22:27:42.0628747Z 2025-12-05 22:27:42,043 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/group_norm_reduce_texture.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0630525Z 2025-12-05 22:27:42,043 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/group_norm_texture.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0632207Z 2025-12-05 22:27:42,044 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/im2col.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0633894Z 2025-12-05 22:27:42,045 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/im2col_packed_int8.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0635721Z 2025-12-05 22:27:42,046 [INFO] 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-12-05T22:27:42.0637604Z 2025-12-05 22:27:42,047 [INFO] 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-12-05T22:27:42.0639322Z 2025-12-05 22:27:42,047 [INFO] 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-12-05T22:27:42.0641101Z 2025-12-05 22:27:42,048 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_dq8ca_q4gsw_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0642854Z 2025-12-05 22:27:42,049 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_q4gsw_coop.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0644795Z 2025-12-05 22:27:42,050 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_q4gsw_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0646523Z 2025-12-05 22:27:42,050 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_q8csw_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0648270Z 2025-12-05 22:27:42,051 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_q8ta_q8csw_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0649982Z 2025-12-05 22:27:42,052 [INFO] 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-12-05T22:27:42.0652046Z 2025-12-05 22:27:42,053 [INFO] 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-12-05T22:27:42.0653791Z 2025-12-05 22:27:42,054 [INFO] 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-12-05T22:27:42.0655575Z 2025-12-05 22:27:42,054 [INFO] 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-12-05T22:27:42.0657270Z 2025-12-05 22:27:42,056 [INFO] 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-12-05T22:27:42.0659407Z 2025-12-05 22:27:42,057 [INFO] 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-12-05T22:27:42.0661183Z 2025-12-05 22:27:42,057 [INFO] 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-12-05T22:27:42.0895637Z 2025-12-05 22:27:42,058 [INFO] 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-12-05T22:27:42.0897329Z 2025-12-05 22:27:42,059 [INFO] 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-12-05T22:27:42.0899136Z 2025-12-05 22:27:42,060 [INFO] 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-12-05T22:27:42.0901384Z 2025-12-05 22:27:42,060 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/pack_q4_linear_weight.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0903348Z 2025-12-05 22:27:42,061 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/pack_q8_conv2d_dw_weights.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0905113Z 2025-12-05 22:27:42,062 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/pack_q8_conv2d_weights.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0906858Z 2025-12-05 22:27:42,063 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/pack_q8_linear_weight.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0908623Z 2025-12-05 22:27:42,064 [INFO] 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-12-05T22:27:42.0910600Z 2025-12-05 22:27:42,064 [INFO] 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-12-05T22:27:42.0912309Z 2025-12-05 22:27:42,065 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/permute_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0914027Z 2025-12-05 22:27:42,066 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/permute_texture.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0915769Z 2025-12-05 22:27:42,067 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/quantize_and_pack_4h4w.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0917889Z 2025-12-05 22:27:42,067 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/quantize_and_pack_4h4w_with_group_sums.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0920072Z 2025-12-05 22:27:42,068 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/quantize_and_pack_4w4c.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0921853Z 2025-12-05 22:27:42,069 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/quantize_and_pack_im2col.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0923552Z 2025-12-05 22:27:42,070 [INFO] 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-12-05T22:27:42.0925314Z 2025-12-05 22:27:42,071 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/reduce2d.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0927195Z 2025-12-05 22:27:42,071 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/reduce_per_row_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0928884Z 2025-12-05 22:27:42,072 [INFO] 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-12-05T22:27:42.0930571Z 2025-12-05 22:27:42,073 [INFO] 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-12-05T22:27:42.0932301Z 2025-12-05 22:27:42,074 [INFO] 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-12-05T22:27:42.0934414Z 2025-12-05 22:27:42,075 [INFO] 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-12-05T22:27:42.0936123Z 2025-12-05 22:27:42,075 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/scalar_tensor.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0937870Z 2025-12-05 22:27:42,076 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weights_softmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0939677Z 2025-12-05 22:27:42,077 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_compute_attn_weights_coop.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0941777Z 2025-12-05 22:27:42,078 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_compute_attn_weights_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0943583Z 2025-12-05 22:27:42,078 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_compute_out_coop.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0945325Z 2025-12-05 22:27:42,079 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_compute_out_tiled.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0947063Z 2025-12-05 22:27:42,080 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_kv_cache_update.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0948944Z 2025-12-05 22:27:42,081 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/set_zero.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0951048Z 2025-12-05 22:27:42,082 [INFO] 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-12-05T22:27:42.0952805Z 2025-12-05 22:27:42,082 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/split_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0954502Z 2025-12-05 22:27:42,083 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/split_texture.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0956155Z 2025-12-05 22:27:42,084 [INFO] 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-12-05T22:27:42.0957896Z 2025-12-05 22:27:42,085 [INFO] 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-12-05T22:27:42.0959795Z 2025-12-05 22:27:42,085 [INFO] 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-12-05T22:27:42.0961489Z 2025-12-05 22:27:42,086 [INFO] 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-12-05T22:27:42.0963203Z 2025-12-05 22:27:42,087 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/unpack_4w4c_and_dequantize.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.0965063Z 2025-12-05 22:27:42,088 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/update_concat_offset.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.1178583Z 2025-12-05 22:27:42,089 [INFO] 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-12-05T22:27:42.1180269Z 2025-12-05 22:27:42,089 [INFO] 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-12-05T22:27:42.1181951Z 2025-12-05 22:27:42,090 [INFO] 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-12-05T22:27:42.1183616Z 2025-12-05 22:27:42,091 [INFO] 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-12-05T22:27:42.1185531Z 2025-12-05 22:27:42,092 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/view_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.1187242Z 2025-12-05 22:27:42,093 [INFO] copying src/executorch/backends/vulkan/runtime/graph/ops/glsl/view_convert_buffer.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.1189032Z 2025-12-05 22:27:42,093 [INFO] 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-12-05T22:27:42.1190264Z 2025-12-05 22:27:42,094 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-12-05T22:27:42.1191372Z 2025-12-05 22:27:42,094 [INFO] copying src/executorch/backends/vulkan/test/glsl/all_shaders.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-12-05T22:27:42.1193012Z 2025-12-05 22:27:42,095 [INFO] 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-12-05T22:27:42.1194516Z 2025-12-05 22:27:42,096 [INFO] 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-12-05T22:27:42.1195739Z 2025-12-05 22:27:42,097 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/custom_ops/glsl 2025-12-05T22:27:42.1196970Z 2025-12-05 22:27:42,097 [INFO] copying src/executorch/backends/vulkan/test/custom_ops/glsl/add.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/custom_ops/glsl 2025-12-05T22:27:42.1198171Z 2025-12-05 22:27:42,098 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-12-05T22:27:42.1199431Z 2025-12-05 22:27:42,098 [INFO] 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-12-05T22:27:42.1201349Z 2025-12-05 22:27:42,099 [INFO] 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-12-05T22:27:42.1202945Z 2025-12-05 22:27:42,099 [INFO] 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-12-05T22:27:42.1204535Z 2025-12-05 22:27:42,100 [INFO] 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-12-05T22:27:42.1206293Z 2025-12-05 22:27:42,101 [INFO] 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-12-05T22:27:42.1207923Z 2025-12-05 22:27:42,102 [INFO] 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-12-05T22:27:42.1209479Z 2025-12-05 22:27:42,102 [INFO] copying src/executorch/backends/xnnpack/serialization/runtime_schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-12-05T22:27:42.1210987Z 2025-12-05 22:27:42,103 [INFO] copying src/executorch/backends/xnnpack/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-12-05T22:27:42.1212509Z 2025-12-05 22:27:42,103 [INFO] 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-12-05T22:27:42.1214058Z 2025-12-05 22:27:42,104 [INFO] 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-12-05T22:27:42.1215577Z 2025-12-05 22:27:42,105 [INFO] 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-12-05T22:27:42.1217436Z 2025-12-05 22:27:42,105 [INFO] 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-12-05T22:27:42.1219217Z 2025-12-05 22:27:42,106 [INFO] 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-12-05T22:27:42.1221017Z 2025-12-05 22:27:42,107 [INFO] 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-12-05T22:27:42.1223017Z 2025-12-05 22:27:42,107 [INFO] 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-12-05T22:27:42.1224616Z 2025-12-05 22:27:42,107 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.1226085Z 2025-12-05 22:27:42,107 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-f32-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.1227859Z 2025-12-05 22:27:42,108 [INFO] 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-12-05T22:27:42.1229694Z 2025-12-05 22:27:42,109 [INFO] 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-12-05T22:27:42.1231461Z 2025-12-05 22:27:42,110 [INFO] 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-12-05T22:27:42.1233512Z 2025-12-05 22:27:42,111 [INFO] 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-12-05T22:27:42.1235340Z 2025-12-05 22:27:42,111 [INFO] 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-12-05T22:27:42.1237242Z 2025-12-05 22:27:42,112 [INFO] 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-12-05T22:27:42.1239020Z 2025-12-05 22:27:42,113 [INFO] 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-12-05T22:27:42.1240948Z 2025-12-05 22:27:42,114 [INFO] 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-12-05T22:27:42.1242778Z 2025-12-05 22:27:42,115 [INFO] 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-12-05T22:27:42.1244596Z 2025-12-05 22:27:42,115 [INFO] 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-12-05T22:27:42.1246411Z 2025-12-05 22:27:42,116 [INFO] 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-12-05T22:27:42.1550049Z 2025-12-05 22:27:42,117 [INFO] 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-12-05T22:27:42.1551854Z 2025-12-05 22:27:42,118 [INFO] 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-12-05T22:27:42.1553636Z 2025-12-05 22:27:42,119 [INFO] 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-12-05T22:27:42.1555557Z 2025-12-05 22:27:42,121 [INFO] 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-12-05T22:27:42.1557265Z 2025-12-05 22:27:42,122 [INFO] 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-12-05T22:27:42.1558985Z 2025-12-05 22:27:42,122 [INFO] 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-12-05T22:27:42.1560742Z 2025-12-05 22:27:42,123 [INFO] 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-12-05T22:27:42.1562582Z 2025-12-05 22:27:42,124 [INFO] 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-12-05T22:27:42.1564329Z 2025-12-05 22:27:42,126 [INFO] 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-12-05T22:27:42.1566040Z 2025-12-05 22:27:42,126 [INFO] 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-12-05T22:27:42.1567758Z 2025-12-05 22:27:42,127 [INFO] 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-12-05T22:27:42.1569624Z 2025-12-05 22:27:42,128 [INFO] 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-12-05T22:27:42.1571433Z 2025-12-05 22:27:42,129 [INFO] 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-12-05T22:27:42.1573205Z 2025-12-05 22:27:42,130 [INFO] 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-12-05T22:27:42.1574927Z 2025-12-05 22:27:42,131 [INFO] 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-12-05T22:27:42.1576688Z 2025-12-05 22:27:42,132 [INFO] 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-12-05T22:27:42.1578531Z 2025-12-05 22:27:42,132 [INFO] 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-12-05T22:27:42.1580348Z 2025-12-05 22:27:42,133 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/pf16-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.1582213Z 2025-12-05 22:27:42,134 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/pf32-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.1584358Z 2025-12-05 22:27:42,135 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/pqs8-qc8w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.1586381Z 2025-12-05 22:27:42,136 [INFO] 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-12-05T22:27:42.1588511Z 2025-12-05 22:27:42,136 [INFO] 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-12-05T22:27:42.1590574Z 2025-12-05 22:27:42,137 [INFO] 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-12-05T22:27:42.1592705Z 2025-12-05 22:27:42,138 [INFO] 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-12-05T22:27:42.1594834Z 2025-12-05 22:27:42,139 [INFO] 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-12-05T22:27:42.1596852Z 2025-12-05 22:27:42,140 [INFO] 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-12-05T22:27:42.1598751Z 2025-12-05 22:27:42,142 [INFO] 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-12-05T22:27:42.1600672Z 2025-12-05 22:27:42,143 [INFO] 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-12-05T22:27:42.1602848Z 2025-12-05 22:27:42,145 [INFO] 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-12-05T22:27:42.1604905Z 2025-12-05 22:27:42,146 [INFO] 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-12-05T22:27:42.1606997Z 2025-12-05 22:27:42,146 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc8w-gemm-minmax.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.1609111Z 2025-12-05 22:27:42,147 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc4w-gemm-minmax-fp32.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.1611242Z 2025-12-05 22:27:42,148 [INFO] 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-12-05T22:27:42.1613353Z 2025-12-05 22:27:42,150 [INFO] 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-12-05T22:27:42.1615383Z 2025-12-05 22:27:42,151 [INFO] 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-12-05T22:27:42.1617266Z 2025-12-05 22:27:42,152 [INFO] 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-12-05T22:27:42.1619367Z 2025-12-05 22:27:42,153 [INFO] 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-12-05T22:27:42.1713233Z 2025-12-05 22:27:42,154 [INFO] 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-12-05T22:27:42.1715061Z 2025-12-05 22:27:42,155 [INFO] 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-12-05T22:27:42.1716794Z 2025-12-05 22:27:42,156 [INFO] 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-12-05T22:27:42.1718651Z 2025-12-05 22:27:42,156 [INFO] 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-12-05T22:27:42.1720564Z 2025-12-05 22:27:42,157 [INFO] 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-12-05T22:27:42.1722405Z 2025-12-05 22:27:42,157 [INFO] 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-12-05T22:27:42.1724235Z 2025-12-05 22:27:42,158 [INFO] 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-12-05T22:27:42.1726178Z 2025-12-05 22:27:42,158 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-12-05T22:27:42.1728120Z 2025-12-05 22:27:42,158 [INFO] 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-12-05T22:27:42.1729936Z 2025-12-05 22:27:42,158 [INFO] 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-12-05T22:27:42.1731768Z 2025-12-05 22:27:42,159 [INFO] 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-12-05T22:27:42.1733636Z 2025-12-05 22:27:42,159 [INFO] 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-12-05T22:27:42.1735567Z 2025-12-05 22:27:42,159 [INFO] 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-12-05T22:27:42.1737415Z 2025-12-05 22:27:42,159 [INFO] 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-12-05T22:27:42.1739386Z 2025-12-05 22:27:42,160 [INFO] 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-12-05T22:27:42.1741352Z 2025-12-05 22:27:42,160 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-discontiguous-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-12-05T22:27:42.1743440Z 2025-12-05 22:27:42,160 [INFO] 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-12-05T22:27:42.1745248Z 2025-12-05 22:27:42,160 [INFO] 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-12-05T22:27:42.1747055Z 2025-12-05 22:27:42,161 [INFO] 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-12-05T22:27:42.1748919Z 2025-12-05 22:27:42,161 [INFO] 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-12-05T22:27:42.1750878Z 2025-12-05 22:27:42,161 [INFO] copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/parse-microkernel-bench.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-12-05T22:27:42.1752801Z 2025-12-05 22:27:42,161 [INFO] 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-12-05T22:27:42.1754618Z 2025-12-05 22:27:42,162 [INFO] 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-12-05T22:27:42.1756492Z 2025-12-05 22:27:42,162 [INFO] 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-12-05T22:27:42.1758566Z 2025-12-05 22:27:42,162 [INFO] 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-12-05T22:27:42.1760459Z 2025-12-05 22:27:42,162 [INFO] 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-12-05T22:27:42.1761949Z 2025-12-05 22:27:42,163 [INFO] copying src/executorch/codegen/tools/selective_build.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-12-05T22:27:42.1763185Z 2025-12-05 22:27:42,164 [INFO] copying src/executorch/devtools/etdump/etdump_schema_flatcc.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-12-05T22:27:42.1764402Z 2025-12-05 22:27:42,164 [INFO] copying src/executorch/devtools/etdump/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-12-05T22:27:42.1765784Z 2025-12-05 22:27:42,164 [INFO] 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-12-05T22:27:42.1767417Z 2025-12-05 22:27:42,164 [INFO] copying src/executorch/devtools/bundled_program/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-12-05T22:27:42.1768936Z 2025-12-05 22:27:42,165 [INFO] copying src/executorch/examples/llm_pte_finetuning/llama3_config.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-12-05T22:27:42.1770373Z 2025-12-05 22:27:42,165 [INFO] 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-12-05T22:27:42.1771801Z 2025-12-05 22:27:42,166 [INFO] copying src/executorch/examples/llm_pte_finetuning/phi3_config.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-12-05T22:27:42.1773251Z 2025-12-05 22:27:42,167 [INFO] 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-12-05T22:27:42.1774500Z 2025-12-05 22:27:42,168 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deepseek-r1-distill-llama-8B/config 2025-12-05T22:27:42.1776156Z 2025-12-05 22:27:42,168 [INFO] copying src/executorch/examples/models/deepseek-r1-distill-llama-8B/config/deepseek_xnnpack_q8da4w.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deepseek-r1-distill-llama-8B/config 2025-12-05T22:27:42.1777593Z 2025-12-05 22:27:42,169 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lfm2/config 2025-12-05T22:27:42.1778753Z 2025-12-05 22:27:42,169 [INFO] copying src/executorch/examples/models/lfm2/config/lfm2_xnnpack_fp32.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lfm2/config 2025-12-05T22:27:42.1780234Z 2025-12-05 22:27:42,170 [INFO] copying src/executorch/examples/models/lfm2/config/lfm2_xnnpack_q8da4w.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lfm2/config 2025-12-05T22:27:42.2763287Z 2025-12-05 22:27:42,170 [INFO] copying src/executorch/examples/models/llama/config/llama_bf16.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config 2025-12-05T22:27:42.2764813Z 2025-12-05 22:27:42,171 [INFO] copying src/executorch/examples/models/llama/config/llama_q8da4w.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config 2025-12-05T22:27:42.2766292Z 2025-12-05 22:27:42,172 [INFO] copying src/executorch/examples/models/llama/config/llama_xnnpack.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config 2025-12-05T22:27:42.2768006Z 2025-12-05 22:27:42,173 [INFO] copying src/executorch/examples/models/llama/config/llama_xnnpack_qat.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config 2025-12-05T22:27:42.2769561Z 2025-12-05 22:27:42,173 [INFO] copying src/executorch/examples/models/llama/config/llama_xnnpack_spinquant.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config 2025-12-05T22:27:42.2770791Z 2025-12-05 22:27:42,174 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini/config 2025-12-05T22:27:42.2772017Z 2025-12-05 22:27:42,174 [INFO] copying src/executorch/examples/models/phi_4_mini/config/phi_4_mini_xnnpack.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini/config 2025-12-05T22:27:42.2773222Z 2025-12-05 22:27:42,175 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5/config 2025-12-05T22:27:42.2774409Z 2025-12-05 22:27:42,175 [INFO] copying src/executorch/examples/models/qwen2_5/config/qwen2_5_xnnpack_q8da4w.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5/config 2025-12-05T22:27:42.2775589Z 2025-12-05 22:27:42,176 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3/config 2025-12-05T22:27:42.2776774Z 2025-12-05 22:27:42,176 [INFO] copying src/executorch/examples/models/qwen3/config/qwen3_xnnpack_q8da4w.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3/config 2025-12-05T22:27:42.2778319Z 2025-12-05 22:27:42,177 [INFO] copying src/executorch/exir/dialects/edge/edge.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-12-05T22:27:42.2779573Z 2025-12-05 22:27:42,179 [INFO] copying src/executorch/extension/pybindings/pybindings.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-12-05T22:27:42.2780964Z 2025-12-05 22:27:42,180 [INFO] copying src/executorch/extension/flat_tensor/serialize/flat_tensor.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-12-05T22:27:42.2782407Z 2025-12-05 22:27:42,180 [INFO] copying src/executorch/extension/flat_tensor/serialize/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-12-05T22:27:42.2783895Z 2025-12-05 22:27:42,180 [INFO] copying src/executorch/extension/llm/runner/_llm_runner.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/runner 2025-12-05T22:27:42.2785705Z 2025-12-05 22:27:42,181 [INFO] 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-12-05T22:27:42.2787982Z 2025-12-05 22:27:42,181 [INFO] 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-12-05T22:27:42.2790075Z 2025-12-05 22:27:42,181 [INFO] copying src/executorch/extension/training/pybindings/_training_lib.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-12-05T22:27:42.2791741Z 2025-12-05 22:27:42,182 [INFO] copying src/executorch/kernels/quantized/quantized.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-12-05T22:27:42.2793325Z 2025-12-05 22:27:42,182 [INFO] copying src/executorch/kernels/quantized/test/supported_features_def.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-12-05T22:27:42.2794611Z 2025-12-05 22:27:42,183 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-12-05T22:27:42.2795628Z 2025-12-05 22:27:42,183 [INFO] copying src/executorch/runtime/kernel/test/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-12-05T22:27:42.2796908Z 2025-12-05 22:27:42,270 [INFO] copying schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-12-05T22:27:42.2797862Z 2025-12-05 22:27:42,270 [INFO] copying schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-12-05T22:27:42.2799119Z 2025-12-05 22:27:42,270 [INFO] copying devtools/bundled_program/schema/bundled_program_schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-12-05T22:27:42.2800580Z 2025-12-05 22:27:42,270 [INFO] copying devtools/bundled_program/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-12-05T22:27:42.2801808Z 2025-12-05 22:27:42,271 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake 2025-12-05T22:27:42.2802996Z 2025-12-05 22:27:42,271 [INFO] copying tools/cmake/executorch-wheel-config.cmake -> pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake/executorch-config.cmake 2025-12-05T22:27:42.2804104Z 2025-12-05 22:27:42,272 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2805276Z 2025-12-05 22:27:42,272 [INFO] copying runtime/core/array_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2806534Z 2025-12-05 22:27:42,272 [INFO] copying runtime/core/data_loader.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2807628Z 2025-12-05 22:27:42,272 [INFO] copying runtime/core/defines.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2808938Z 2025-12-05 22:27:42,272 [INFO] copying runtime/core/error.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2810106Z 2025-12-05 22:27:42,272 [INFO] copying runtime/core/evalue.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2811201Z 2025-12-05 22:27:42,273 [INFO] copying runtime/core/event_tracer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2812717Z 2025-12-05 22:27:42,273 [INFO] copying runtime/core/event_tracer_hooks.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2814234Z 2025-12-05 22:27:42,273 [INFO] copying runtime/core/event_tracer_hooks_delegate.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2815738Z 2025-12-05 22:27:42,273 [INFO] copying runtime/core/freeable_buffer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2817053Z 2025-12-05 22:27:42,273 [INFO] copying runtime/core/function_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2818546Z 2025-12-05 22:27:42,274 [INFO] copying runtime/core/hierarchical_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2820005Z 2025-12-05 22:27:42,274 [INFO] copying runtime/core/memory_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2821371Z 2025-12-05 22:27:42,274 [INFO] copying runtime/core/named_data_map.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2822523Z 2025-12-05 22:27:42,274 [INFO] copying runtime/core/result.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2823775Z 2025-12-05 22:27:42,274 [INFO] copying runtime/core/span.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2825025Z 2025-12-05 22:27:42,274 [INFO] copying runtime/core/tag.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2826334Z 2025-12-05 22:27:42,275 [INFO] copying runtime/core/tensor_layout.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2827668Z 2025-12-05 22:27:42,275 [INFO] copying runtime/core/tensor_shape_dynamism.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.2829080Z 2025-12-05 22:27:42,275 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten 2025-12-05T22:27:42.2830454Z 2025-12-05 22:27:42,275 [INFO] copying runtime/core/exec_aten/exec_aten.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten 2025-12-05T22:27:42.2878532Z 2025-12-05 22:27:42,275 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-12-05T22:27:42.2880148Z 2025-12-05 22:27:42,275 [INFO] 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-12-05T22:27:42.2881943Z 2025-12-05 22:27:42,277 [INFO] 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-12-05T22:27:42.2883439Z 2025-12-05 22:27:42,278 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-12-05T22:27:42.2884659Z 2025-12-05 22:27:42,278 [INFO] 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-12-05T22:27:42.2886361Z 2025-12-05 22:27:42,278 [INFO] 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-12-05T22:27:42.2888212Z 2025-12-05 22:27:42,278 [INFO] 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-12-05T22:27:42.2889981Z 2025-12-05 22:27:42,279 [INFO] 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-12-05T22:27:42.2891921Z 2025-12-05 22:27:42,279 [INFO] 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-12-05T22:27:42.2893323Z 2025-12-05 22:27:42,279 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2894788Z 2025-12-05 22:27:42,279 [INFO] copying runtime/core/portable_type/bfloat16.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2896512Z 2025-12-05 22:27:42,279 [INFO] copying runtime/core/portable_type/bfloat16_math.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2897966Z 2025-12-05 22:27:42,279 [INFO] copying runtime/core/portable_type/bits_types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2899330Z 2025-12-05 22:27:42,280 [INFO] copying runtime/core/portable_type/complex.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2900676Z 2025-12-05 22:27:42,280 [INFO] copying runtime/core/portable_type/device.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2901990Z 2025-12-05 22:27:42,280 [INFO] copying runtime/core/portable_type/half.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2903410Z 2025-12-05 22:27:42,280 [INFO] copying runtime/core/portable_type/optional.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2905104Z 2025-12-05 22:27:42,280 [INFO] copying runtime/core/portable_type/qint_types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2906765Z 2025-12-05 22:27:42,280 [INFO] copying runtime/core/portable_type/scalar.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2908560Z 2025-12-05 22:27:42,281 [INFO] copying runtime/core/portable_type/scalar_type.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2910291Z 2025-12-05 22:27:42,281 [INFO] copying runtime/core/portable_type/string_view.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2912030Z 2025-12-05 22:27:42,281 [INFO] copying runtime/core/portable_type/tensor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2913742Z 2025-12-05 22:27:42,281 [INFO] copying runtime/core/portable_type/tensor_impl.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2915357Z 2025-12-05 22:27:42,281 [INFO] copying runtime/core/portable_type/tensor_options.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.2916654Z 2025-12-05 22:27:42,282 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-12-05T22:27:42.2918069Z 2025-12-05 22:27:42,282 [INFO] 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-12-05T22:27:42.2919893Z 2025-12-05 22:27:42,282 [INFO] 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-12-05T22:27:42.2921500Z 2025-12-05 22:27:42,282 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-12-05T22:27:42.2923461Z 2025-12-05 22:27:42,282 [INFO] 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-12-05T22:27:42.2925653Z 2025-12-05 22:27:42,283 [INFO] 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-12-05T22:27:42.2927382Z 2025-12-05 22:27:42,283 [INFO] 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-12-05T22:27:42.2929012Z 2025-12-05 22:27:42,283 [INFO] 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-12-05T22:27:42.2930596Z 2025-12-05 22:27:42,284 [INFO] 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-12-05T22:27:42.2932264Z 2025-12-05 22:27:42,284 [INFO] 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-12-05T22:27:42.2934471Z 2025-12-05 22:27:42,284 [INFO] 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-12-05T22:27:42.2936643Z 2025-12-05 22:27:42,285 [INFO] 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-12-05T22:27:42.2938709Z 2025-12-05 22:27:42,285 [INFO] 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-12-05T22:27:42.2940699Z 2025-12-05 22:27:42,285 [INFO] 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-12-05T22:27:42.2942937Z 2025-12-05 22:27:42,285 [INFO] 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-12-05T22:27:42.2945161Z 2025-12-05 22:27:42,286 [INFO] 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-12-05T22:27:42.2947150Z 2025-12-05 22:27:42,286 [INFO] copying runtime/core/portable_type/c10/c10/util/llvmMathExtras.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-12-05T22:27:42.2949207Z 2025-12-05 22:27:42,286 [INFO] copying runtime/core/portable_type/c10/c10/util/overflows.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-12-05T22:27:42.2950864Z 2025-12-05 22:27:42,287 [INFO] copying runtime/core/portable_type/c10/c10/util/safe_numerics.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-12-05T22:27:42.2952352Z 2025-12-05 22:27:42,287 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros 2025-12-05T22:27:42.3228594Z 2025-12-05 22:27:42,287 [INFO] copying runtime/core/portable_type/c10/torch/headeronly/macros/Export.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros 2025-12-05T22:27:42.3230831Z 2025-12-05 22:27:42,287 [INFO] copying runtime/core/portable_type/c10/torch/headeronly/macros/Macros.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros 2025-12-05T22:27:42.3232459Z 2025-12-05 22:27:42,287 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.3234068Z 2025-12-05 22:27:42,287 [INFO] copying runtime/core/portable_type/c10/torch/headeronly/util/BFloat16.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.3235958Z 2025-12-05 22:27:42,288 [INFO] copying runtime/core/portable_type/c10/torch/headeronly/util/Half.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.3237904Z 2025-12-05 22:27:42,288 [INFO] copying runtime/core/portable_type/c10/torch/headeronly/util/TypeSafeSignMath.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.3239848Z 2025-12-05 22:27:42,288 [INFO] copying runtime/core/portable_type/c10/torch/headeronly/util/bit_cast.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.3241734Z 2025-12-05 22:27:42,288 [INFO] copying runtime/core/portable_type/c10/torch/headeronly/util/complex.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.3243809Z 2025-12-05 22:27:42,289 [INFO] copying runtime/core/portable_type/c10/torch/headeronly/util/floating_point_utils.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.3245331Z 2025-12-05 22:27:42,289 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/testing_util 2025-12-05T22:27:42.3246517Z 2025-12-05 22:27:42,289 [INFO] copying runtime/core/testing_util/error_matchers.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/testing_util 2025-12-05T22:27:42.3247661Z 2025-12-05 22:27:42,290 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-12-05T22:27:42.3248707Z 2025-12-05 22:27:42,290 [INFO] copying runtime/kernel/kernel_includes.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-12-05T22:27:42.3249921Z 2025-12-05 22:27:42,290 [INFO] copying runtime/kernel/kernel_runtime_context.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-12-05T22:27:42.3251246Z 2025-12-05 22:27:42,290 [INFO] copying runtime/kernel/operator_registry.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-12-05T22:27:42.3252575Z 2025-12-05 22:27:42,290 [INFO] copying runtime/kernel/thread_parallel_interface.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-12-05T22:27:42.3253671Z 2025-12-05 22:27:42,290 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test 2025-12-05T22:27:42.3254751Z 2025-12-05 22:27:42,291 [INFO] copying runtime/kernel/test/test_util.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test 2025-12-05T22:27:42.3255816Z 2025-12-05 22:27:42,291 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.3256835Z 2025-12-05 22:27:42,291 [INFO] copying runtime/platform/abort.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.3257989Z 2025-12-05 22:27:42,292 [INFO] copying runtime/platform/assert.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.3259205Z 2025-12-05 22:27:42,292 [INFO] copying runtime/platform/clock.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.3260382Z 2025-12-05 22:27:42,293 [INFO] copying runtime/platform/compat_unistd.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.3261586Z 2025-12-05 22:27:42,293 [INFO] copying runtime/platform/compiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.3262720Z 2025-12-05 22:27:42,293 [INFO] copying runtime/platform/log.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.3263872Z 2025-12-05 22:27:42,293 [INFO] copying runtime/platform/platform.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.3265057Z 2025-12-05 22:27:42,293 [INFO] copying runtime/platform/profiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.3266220Z 2025-12-05 22:27:42,293 [INFO] copying runtime/platform/runtime.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.3267383Z 2025-12-05 22:27:42,294 [INFO] copying runtime/platform/system.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.3268622Z 2025-12-05 22:27:42,294 [INFO] copying runtime/platform/types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.3269734Z 2025-12-05 22:27:42,294 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-12-05T22:27:42.3270852Z 2025-12-05 22:27:42,294 [INFO] copying runtime/platform/test/pal_spy.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-12-05T22:27:42.3272127Z 2025-12-05 22:27:42,295 [INFO] copying runtime/platform/test/stub_platform.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-12-05T22:27:42.3273269Z 2025-12-05 22:27:42,296 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-12-05T22:27:42.3274466Z 2025-12-05 22:27:42,296 [INFO] 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-12-05T22:27:42.3275843Z 2025-12-05 22:27:42,296 [INFO] copying extension/kernel_util/meta_programming.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-12-05T22:27:42.3277133Z 2025-12-05 22:27:42,296 [INFO] copying extension/kernel_util/type_list.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-12-05T22:27:42.3278214Z 2025-12-05 22:27:42,296 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-12-05T22:27:42.3279237Z 2025-12-05 22:27:42,296 [INFO] copying extension/tensor/tensor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-12-05T22:27:42.3280430Z 2025-12-05 22:27:42,297 [INFO] copying extension/tensor/tensor_accessor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-12-05T22:27:42.3281637Z 2025-12-05 22:27:42,297 [INFO] copying extension/tensor/tensor_ptr.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-12-05T22:27:42.3282827Z 2025-12-05 22:27:42,297 [INFO] copying extension/tensor/tensor_ptr_maker.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-12-05T22:27:42.3283910Z 2025-12-05 22:27:42,297 [INFO] creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-12-05T22:27:42.3285111Z 2025-12-05 22:27:42,297 [INFO] copying extension/threadpool/cpuinfo_utils.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-12-05T22:27:42.3286409Z 2025-12-05 22:27:42,297 [INFO] copying extension/threadpool/threadpool.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-12-05T22:27:42.3287730Z 2025-12-05 22:27:42,298 [INFO] copying extension/threadpool/threadpool_guard.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-12-05T22:27:42.3288571Z 2025-12-05 22:27:42,298 [INFO] running build_ext 2025-12-05T22:27:42.3289195Z 2025-12-05 22:27:42,300 [INFO] creating /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin 2025-12-05T22:27:42.3290521Z 2025-12-05 22:27:42,300 [INFO] copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatc_ep/bin/flatc -> /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin 2025-12-05T22:27:42.3746447Z 2025-12-05 22:27:42,322 [INFO] 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-12-05T22:27:42.3748515Z 2025-12-05 22:27:42,324 [INFO] 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-12-05T22:27:42.3750671Z 2025-12-05 22:27:42,331 [INFO] copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/extension/training/_training_lib.cpython-310-x86_64-linux-gnu.so -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-12-05T22:27:42.3753124Z 2025-12-05 22:27:42,335 [INFO] copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/codegen/tools/selective_build.cpython-310-x86_64-linux-gnu.so -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-12-05T22:27:42.3755202Z 2025-12-05 22:27:42,336 [INFO] copying /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/extension/llm/runner/_llm_runner.cpython-310-x86_64-linux-gnu.so -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/runner 2025-12-05T22:27:42.3757562Z 2025-12-05 22:27:42,340 [INFO] 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-12-05T22:27:42.3759858Z 2025-12-05 22:27:42,341 [INFO] 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-12-05T22:27:42.3762152Z 2025-12-05 22:27:42,344 [INFO] 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-12-05T22:27:42.3763784Z 2025-12-05 22:27:42,345 [INFO] creating /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/lib 2025-12-05T22:27:42.3764961Z 2025-12-05 22:27:42,345 [INFO] copying backends/cuda/runtime/aoti_cuda_shims.lib -> /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/lib 2025-12-05T22:27:42.3765883Z 2025-12-05 22:27:42,358 [INFO] installing to pip-out/bdist.linux-x86_64/wheel 2025-12-05T22:27:42.3766435Z 2025-12-05 22:27:42,359 [INFO] running install 2025-12-05T22:27:42.3766785Z 2025-12-05 22:27:42,363 [INFO] running install_lib 2025-12-05T22:27:42.3767218Z 2025-12-05 22:27:42,368 [INFO] creating pip-out/bdist.linux-x86_64/wheel 2025-12-05T22:27:42.3767935Z 2025-12-05 22:27:42,368 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch 2025-12-05T22:27:42.3768548Z 2025-12-05 22:27:42,369 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends 2025-12-05T22:27:42.3769759Z 2025-12-05 22:27:42,369 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends 2025-12-05T22:27:42.3770855Z 2025-12-05 22:27:42,369 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/aoti 2025-12-05T22:27:42.3771903Z 2025-12-05 22:27:42,369 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/aoti/aoti_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/aoti 2025-12-05T22:27:42.3773588Z 2025-12-05 22:27:42,369 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/aoti/aoti_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/aoti 2025-12-05T22:27:42.3774747Z 2025-12-05 22:27:42,369 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/aoti/passes 2025-12-05T22:27:42.3776172Z 2025-12-05 22:27:42,370 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/aoti/passes/replace_view_copy_with_view.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/aoti/passes 2025-12-05T22:27:42.3777476Z 2025-12-05 22:27:42,370 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm 2025-12-05T22:27:42.3778680Z 2025-12-05 22:27:42,370 [INFO] 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-12-05T22:27:42.3780187Z 2025-12-05 22:27:42,370 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm 2025-12-05T22:27:42.3781777Z 2025-12-05 22:27:42,370 [INFO] 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-12-05T22:27:42.3783042Z 2025-12-05 22:27:42,370 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/_passes 2025-12-05T22:27:42.3784284Z 2025-12-05 22:27:42,371 [INFO] 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-12-05T22:27:42.3785953Z 2025-12-05 22:27:42,371 [INFO] 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-12-05T22:27:42.3787671Z 2025-12-05 22:27:42,371 [INFO] 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-12-05T22:27:42.3789598Z 2025-12-05 22:27:42,371 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/annotate_output_dim_order_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3791294Z 2025-12-05 22:27:42,371 [INFO] 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-12-05T22:27:42.3793005Z 2025-12-05 22:27:42,372 [INFO] 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-12-05T22:27:42.3794804Z 2025-12-05 22:27:42,372 [INFO] 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-12-05T22:27:42.3796525Z 2025-12-05 22:27:42,372 [INFO] 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-12-05T22:27:42.3798226Z 2025-12-05 22:27:42,372 [INFO] 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-12-05T22:27:42.3800075Z 2025-12-05 22:27:42,372 [INFO] 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-12-05T22:27:42.3801771Z 2025-12-05 22:27:42,372 [INFO] 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-12-05T22:27:42.3803676Z 2025-12-05 22:27:42,372 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_elu_params.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3806075Z 2025-12-05 22:27:42,373 [INFO] 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-12-05T22:27:42.3807939Z 2025-12-05 22:27:42,373 [INFO] 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-12-05T22:27:42.3809732Z 2025-12-05 22:27:42,373 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_int64_const_ops_to_int32.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3811739Z 2025-12-05 22:27:42,373 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_int64_output_ops_to_int32.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3813696Z 2025-12-05 22:27:42,373 [INFO] 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-12-05T22:27:42.3815496Z 2025-12-05 22:27:42,373 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_permute_singleton_to_view_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3817507Z 2025-12-05 22:27:42,373 [INFO] 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-12-05T22:27:42.3819531Z 2025-12-05 22:27:42,374 [INFO] 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-12-05T22:27:42.3821304Z 2025-12-05 22:27:42,374 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/convert_to_clamp_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3823071Z 2025-12-05 22:27:42,374 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_acosh_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3825078Z 2025-12-05 22:27:42,374 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_adaptive_avg_pool2d_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3826929Z 2025-12-05 22:27:42,374 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_add_sub_alpha_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3828784Z 2025-12-05 22:27:42,374 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_addmm_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3830556Z 2025-12-05 22:27:42,374 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_any_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3832627Z 2025-12-05 22:27:42,375 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_asin_and_acos_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3834457Z 2025-12-05 22:27:42,375 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_asinh_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3836212Z 2025-12-05 22:27:42,375 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_atan_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3838198Z 2025-12-05 22:27:42,375 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_atanh_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3839936Z 2025-12-05 22:27:42,375 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_avg_pool2d_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3841834Z 2025-12-05 22:27:42,375 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_batch_norm_no_stats.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3843620Z 2025-12-05 22:27:42,375 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_cosh_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3845505Z 2025-12-05 22:27:42,376 [INFO] 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-12-05T22:27:42.3847526Z 2025-12-05 22:27:42,376 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_cumsum_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3849386Z 2025-12-05 22:27:42,376 [INFO] 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-12-05T22:27:42.3851175Z 2025-12-05 22:27:42,376 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_div_tensor_mode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3852957Z 2025-12-05 22:27:42,376 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_elu_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3854773Z 2025-12-05 22:27:42,376 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_embedding_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3856680Z 2025-12-05 22:27:42,376 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_expm1_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3858659Z 2025-12-05 22:27:42,377 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_floor_divide_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3860501Z 2025-12-05 22:27:42,377 [INFO] 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-12-05T22:27:42.3862355Z 2025-12-05 22:27:42,377 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_glu_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3864659Z 2025-12-05 22:27:42,377 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_grouped_conv_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3866518Z 2025-12-05 22:27:42,377 [INFO] 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-12-05T22:27:42.3868321Z 2025-12-05 22:27:42,377 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_int16_activation_conv2d_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3870191Z 2025-12-05 22:27:42,377 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_int32_clamp_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3872022Z 2025-12-05 22:27:42,378 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_int_pow_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3873883Z 2025-12-05 22:27:42,378 [INFO] 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-12-05T22:27:42.3875705Z 2025-12-05 22:27:42,378 [INFO] 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-12-05T22:27:42.3877613Z 2025-12-05 22:27:42,378 [INFO] 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-12-05T22:27:42.3879600Z 2025-12-05 22:27:42,378 [INFO] 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-12-05T22:27:42.3881584Z 2025-12-05 22:27:42,378 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_logit_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3883437Z 2025-12-05 22:27:42,379 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_masked_fill_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3885491Z 2025-12-05 22:27:42,379 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_maxpool2d_with_dilation_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3887479Z 2025-12-05 22:27:42,379 [INFO] 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-12-05T22:27:42.3889330Z 2025-12-05 22:27:42,379 [INFO] 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-12-05T22:27:42.3891196Z 2025-12-05 22:27:42,379 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_quant_nodes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3893063Z 2025-12-05 22:27:42,379 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_remainder_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3894942Z 2025-12-05 22:27:42,379 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_round_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3896869Z 2025-12-05 22:27:42,380 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_sdpa_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3898696Z 2025-12-05 22:27:42,380 [INFO] 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-12-05T22:27:42.3900485Z 2025-12-05 22:27:42,380 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_select_scatter_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3902232Z 2025-12-05 22:27:42,380 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_sign_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3903988Z 2025-12-05 22:27:42,380 [INFO] 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-12-05T22:27:42.3905739Z 2025-12-05 22:27:42,380 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decompose_sinh_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3907496Z 2025-12-05 22:27:42,380 [INFO] 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-12-05T22:27:42.3909338Z 2025-12-05 22:27:42,381 [INFO] 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-12-05T22:27:42.3911228Z 2025-12-05 22:27:42,381 [INFO] 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-12-05T22:27:42.3912917Z 2025-12-05 22:27:42,381 [INFO] 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-12-05T22:27:42.3914611Z 2025-12-05 22:27:42,381 [INFO] 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-12-05T22:27:42.3916373Z 2025-12-05 22:27:42,381 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/decorate_fp32_to_int32_casting_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3918312Z 2025-12-05 22:27:42,381 [INFO] 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-12-05T22:27:42.3920138Z 2025-12-05 22:27:42,382 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fuse_batch_norm2d_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3921888Z 2025-12-05 22:27:42,382 [INFO] 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-12-05T22:27:42.3923552Z 2025-12-05 22:27:42,382 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fuse_duplicate_users_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3925419Z 2025-12-05 22:27:42,382 [INFO] 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-12-05T22:27:42.3927375Z 2025-12-05 22:27:42,382 [INFO] 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-12-05T22:27:42.3929529Z 2025-12-05 22:27:42,382 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/fuse_view_copy_transform_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3931475Z 2025-12-05 22:27:42,382 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/insert_int32_casts_after_int64_placeholders.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3933627Z 2025-12-05 22:27:42,383 [INFO] 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-12-05T22:27:42.3935721Z 2025-12-05 22:27:42,383 [INFO] 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-12-05T22:27:42.3937786Z 2025-12-05 22:27:42,383 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/match_arg_dtype_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3939794Z 2025-12-05 22:27:42,383 [INFO] 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-12-05T22:27:42.3941900Z 2025-12-05 22:27:42,383 [INFO] 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-12-05T22:27:42.3944100Z 2025-12-05 22:27:42,383 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/promote_bool_operands_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3946275Z 2025-12-05 22:27:42,384 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/quant_args.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3948311Z 2025-12-05 22:27:42,384 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/remove_getitem_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3950346Z 2025-12-05 22:27:42,384 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/remove_graph_asserts_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3952415Z 2025-12-05 22:27:42,384 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/remove_noop_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3954540Z 2025-12-05 22:27:42,384 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/replace_inf_and_limit_values_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3956532Z 2025-12-05 22:27:42,384 [INFO] 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-12-05T22:27:42.3958507Z 2025-12-05 22:27:42,384 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/rewrite_conv2d_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3960398Z 2025-12-05 22:27:42,385 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/rewrite_matmul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3962402Z 2025-12-05 22:27:42,385 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/rewrite_upsample.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3964397Z 2025-12-05 22:27:42,385 [INFO] 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-12-05T22:27:42.3966424Z 2025-12-05 22:27:42,385 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/size_adjust_input_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3968371Z 2025-12-05 22:27:42,385 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes/to_tosa_memory_format_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/_passes 2025-12-05T22:27:42.3970454Z 2025-12-05 22:27:42,385 [INFO] 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-12-05T22:27:42.3972527Z 2025-12-05 22:27:42,386 [INFO] 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-12-05T22:27:42.3974057Z 2025-12-05 22:27:42,386 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/common 2025-12-05T22:27:42.3975429Z 2025-12-05 22:27:42,386 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/common/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/common 2025-12-05T22:27:42.3977258Z 2025-12-05 22:27:42,386 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/common/annotation_meta.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/common 2025-12-05T22:27:42.3979116Z 2025-12-05 22:27:42,387 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/common/arm_compile_spec.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/common 2025-12-05T22:27:42.3981152Z 2025-12-05 22:27:42,387 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/common/debug.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/common 2025-12-05T22:27:42.3982996Z 2025-12-05 22:27:42,387 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/common/type.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/common 2025-12-05T22:27:42.3984297Z 2025-12-05 22:27:42,387 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/debug 2025-12-05T22:27:42.3985588Z 2025-12-05 22:27:42,387 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/debug/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/debug 2025-12-05T22:27:42.3987250Z 2025-12-05 22:27:42,387 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/debug/schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/debug 2025-12-05T22:27:42.3988643Z 2025-12-05 22:27:42,388 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/ethosu 2025-12-05T22:27:42.3989977Z 2025-12-05 22:27:42,388 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/ethosu/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/ethosu 2025-12-05T22:27:42.3991718Z 2025-12-05 22:27:42,388 [INFO] 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/ethosu 2025-12-05T22:27:42.3993514Z 2025-12-05 22:27:42,388 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/ethosu/compile_spec.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/ethosu 2025-12-05T22:27:42.3995327Z 2025-12-05 22:27:42,388 [INFO] 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/ethosu 2025-12-05T22:27:42.3996780Z 2025-12-05 22:27:42,388 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operator_support 2025-12-05T22:27:42.3998524Z 2025-12-05 22:27:42,389 [INFO] 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-12-05T22:27:42.4000404Z 2025-12-05 22:27:42,389 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/clone_dim_order_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-12-05T22:27:42.4002650Z 2025-12-05 22:27:42,389 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/control_flow_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-12-05T22:27:42.4004764Z 2025-12-05 22:27:42,389 [INFO] 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-12-05T22:27:42.4006973Z 2025-12-05 22:27:42,389 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/embedding_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-12-05T22:27:42.4008917Z 2025-12-05 22:27:42,389 [INFO] 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-12-05T22:27:42.4011032Z 2025-12-05 22:27:42,390 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/index_select_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-12-05T22:27:42.4013443Z 2025-12-05 22:27:42,390 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/index_tensor_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-12-05T22:27:42.4015582Z 2025-12-05 22:27:42,390 [INFO] 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-12-05T22:27:42.4017406Z 2025-12-05 22:27:42,390 [INFO] 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-12-05T22:27:42.4019631Z 2025-12-05 22:27:42,390 [INFO] 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-12-05T22:27:42.4021689Z 2025-12-05 22:27:42,391 [INFO] 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-12-05T22:27:42.4023649Z 2025-12-05 22:27:42,391 [INFO] 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-12-05T22:27:42.4025627Z 2025-12-05 22:27:42,391 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/to_dim_order_copy_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-12-05T22:27:42.4027675Z 2025-12-05 22:27:42,391 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/tosa_profile_supported_op_lists.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-12-05T22:27:42.4029781Z 2025-12-05 22:27:42,391 [INFO] 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-12-05T22:27:42.4031756Z 2025-12-05 22:27:42,391 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support/where_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operator_support 2025-12-05T22:27:42.4033329Z 2025-12-05 22:27:42,392 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operators 2025-12-05T22:27:42.4034670Z 2025-12-05 22:27:42,392 [INFO] 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-12-05T22:27:42.4036436Z 2025-12-05 22:27:42,392 [INFO] 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-12-05T22:27:42.4038201Z 2025-12-05 22:27:42,392 [INFO] 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-12-05T22:27:42.4039944Z 2025-12-05 22:27:42,392 [INFO] 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-12-05T22:27:42.4041758Z 2025-12-05 22:27:42,392 [INFO] 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-12-05T22:27:42.4043541Z 2025-12-05 22:27:42,393 [INFO] 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-12-05T22:27:42.4045329Z 2025-12-05 22:27:42,393 [INFO] 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-12-05T22:27:42.4047190Z 2025-12-05 22:27:42,393 [INFO] 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-12-05T22:27:42.4048991Z 2025-12-05 22:27:42,393 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_bitwise_not.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4050797Z 2025-12-05 22:27:42,393 [INFO] 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-12-05T22:27:42.4052458Z 2025-12-05 22:27:42,393 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_ceil.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4054337Z 2025-12-05 22:27:42,393 [INFO] 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-12-05T22:27:42.4056226Z 2025-12-05 22:27:42,394 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_cond_if.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4058037Z 2025-12-05 22:27:42,394 [INFO] 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-12-05T22:27:42.4059834Z 2025-12-05 22:27:42,394 [INFO] 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-12-05T22:27:42.4061646Z 2025-12-05 22:27:42,394 [INFO] 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-12-05T22:27:42.4063504Z 2025-12-05 22:27:42,394 [INFO] 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-12-05T22:27:42.4065396Z 2025-12-05 22:27:42,394 [INFO] 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-12-05T22:27:42.4067800Z 2025-12-05 22:27:42,395 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_floor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4069618Z 2025-12-05 22:27:42,395 [INFO] 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-12-05T22:27:42.4071228Z 2025-12-05 22:27:42,395 [INFO] 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-12-05T22:27:42.4072964Z 2025-12-05 22:27:42,395 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_index_select.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4074650Z 2025-12-05 22:27:42,395 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_index_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4076397Z 2025-12-05 22:27:42,395 [INFO] 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-12-05T22:27:42.4078091Z 2025-12-05 22:27:42,395 [INFO] 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-12-05T22:27:42.4079944Z 2025-12-05 22:27:42,396 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_logical_not.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4081715Z 2025-12-05 22:27:42,396 [INFO] 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-12-05T22:27:42.4083610Z 2025-12-05 22:27:42,396 [INFO] 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-12-05T22:27:42.4085513Z 2025-12-05 22:27:42,396 [INFO] 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-12-05T22:27:42.4087424Z 2025-12-05 22:27:42,396 [INFO] 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-12-05T22:27:42.4089329Z 2025-12-05 22:27:42,396 [INFO] 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-12-05T22:27:42.4091123Z 2025-12-05 22:27:42,397 [INFO] 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-12-05T22:27:42.4092955Z 2025-12-05 22:27:42,397 [INFO] 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-12-05T22:27:42.4094729Z 2025-12-05 22:27:42,397 [INFO] 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-12-05T22:27:42.4096521Z 2025-12-05 22:27:42,397 [INFO] 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-12-05T22:27:42.4098499Z 2025-12-05 22:27:42,397 [INFO] 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-12-05T22:27:42.4100389Z 2025-12-05 22:27:42,397 [INFO] 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-12-05T22:27:42.4102189Z 2025-12-05 22:27:42,398 [INFO] 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-12-05T22:27:42.4104029Z 2025-12-05 22:27:42,398 [INFO] 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-12-05T22:27:42.4105808Z 2025-12-05 22:27:42,398 [INFO] 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-12-05T22:27:42.4107563Z 2025-12-05 22:27:42,398 [INFO] 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-12-05T22:27:42.4109434Z 2025-12-05 22:27:42,398 [INFO] 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-12-05T22:27:42.4111169Z 2025-12-05 22:27:42,398 [INFO] 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-12-05T22:27:42.4112921Z 2025-12-05 22:27:42,399 [INFO] 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-12-05T22:27:42.4114797Z 2025-12-05 22:27:42,399 [INFO] 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-12-05T22:27:42.4116728Z 2025-12-05 22:27:42,399 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_tosa_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4118993Z 2025-12-05 22:27:42,399 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_tosa_depthwise_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4121140Z 2025-12-05 22:27:42,399 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_tosa_matmul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4123126Z 2025-12-05 22:27:42,399 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_tosa_rescale.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4125076Z 2025-12-05 22:27:42,400 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_tosa_resize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4126989Z 2025-12-05 22:27:42,400 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_tosa_table.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4128969Z 2025-12-05 22:27:42,400 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_tosa_transpose.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4130994Z 2025-12-05 22:27:42,400 [INFO] 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-12-05T22:27:42.4133326Z 2025-12-05 22:27:42,400 [INFO] 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-12-05T22:27:42.4135379Z 2025-12-05 22:27:42,400 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators/op_while.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/operators 2025-12-05T22:27:42.4137444Z 2025-12-05 22:27:42,400 [INFO] 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-12-05T22:27:42.4139415Z 2025-12-05 22:27:42,401 [INFO] 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-12-05T22:27:42.4141240Z 2025-12-05 22:27:42,401 [INFO] 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-12-05T22:27:42.4142657Z 2025-12-05 22:27:42,401 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/quantizer 2025-12-05T22:27:42.4143976Z 2025-12-05 22:27:42,401 [INFO] 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-12-05T22:27:42.4145839Z 2025-12-05 22:27:42,401 [INFO] 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-12-05T22:27:42.4147799Z 2025-12-05 22:27:42,402 [INFO] 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-12-05T22:27:42.4149755Z 2025-12-05 22:27:42,402 [INFO] 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-12-05T22:27:42.4151626Z 2025-12-05 22:27:42,402 [INFO] 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-12-05T22:27:42.4152982Z 2025-12-05 22:27:42,402 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/scripts 2025-12-05T22:27:42.4154279Z 2025-12-05 22:27:42,402 [INFO] 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-12-05T22:27:42.4155579Z 2025-12-05 22:27:42,403 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test 2025-12-05T22:27:42.4156778Z 2025-12-05 22:27:42,403 [INFO] 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-12-05T22:27:42.4158411Z 2025-12-05 22:27:42,403 [INFO] 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-12-05T22:27:42.4160071Z 2025-12-05 22:27:42,403 [INFO] 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-12-05T22:27:42.4161789Z 2025-12-05 22:27:42,403 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/test_memory_allocator_log.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test 2025-12-05T22:27:42.4163503Z 2025-12-05 22:27:42,403 [INFO] 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-12-05T22:27:42.4164704Z 2025-12-05 22:27:42,403 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/misc 2025-12-05T22:27:42.4166123Z 2025-12-05 22:27:42,404 [INFO] 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-12-05T22:27:42.4168109Z 2025-12-05 22:27:42,404 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_call_operator_submodule.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4170122Z 2025-12-05 22:27:42,404 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_compile_spec.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4171953Z 2025-12-05 22:27:42,404 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_conv_relu_residual_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4173736Z 2025-12-05 22:27:42,404 [INFO] 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-12-05T22:27:42.4175551Z 2025-12-05 22:27:42,404 [INFO] 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-12-05T22:27:42.4177322Z 2025-12-05 22:27:42,405 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_debug_hook.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4179435Z 2025-12-05 22:27:42,405 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_dim_order.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4181293Z 2025-12-05 22:27:42,405 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_dw_convs_with_shared_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4183308Z 2025-12-05 22:27:42,405 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_extract_io_params_tosa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4185375Z 2025-12-05 22:27:42,405 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_int64.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4187116Z 2025-12-05 22:27:42,405 [INFO] 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-12-05T22:27:42.4188857Z 2025-12-05 22:27:42,405 [INFO] 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-12-05T22:27:42.4190844Z 2025-12-05 22:27:42,406 [INFO] 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-12-05T22:27:42.4193034Z 2025-12-05 22:27:42,406 [INFO] 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-12-05T22:27:42.4194990Z 2025-12-05 22:27:42,406 [INFO] 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-12-05T22:27:42.4197077Z 2025-12-05 22:27:42,406 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_outputs_order.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4199663Z 2025-12-05 22:27:42,406 [INFO] 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-12-05T22:27:42.4201752Z 2025-12-05 22:27:42,406 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_pass_required_order.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4203928Z 2025-12-05 22:27:42,406 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_qat_training_loop.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4205827Z 2025-12-05 22:27:42,407 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_quant_custom_meta.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4207734Z 2025-12-05 22:27:42,407 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_save_exported_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4209607Z 2025-12-05 22:27:42,407 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_tosa_dialect_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4211550Z 2025-12-05 22:27:42,407 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc/test_tosa_dialect_dw_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/misc 2025-12-05T22:27:42.4213575Z 2025-12-05 22:27:42,407 [INFO] 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-12-05T22:27:42.4214999Z 2025-12-05 22:27:42,407 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/models 2025-12-05T22:27:42.4216415Z 2025-12-05 22:27:42,408 [INFO] 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-12-05T22:27:42.4218568Z 2025-12-05 22:27:42,408 [INFO] 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-12-05T22:27:42.4220601Z 2025-12-05 22:27:42,408 [INFO] 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-12-05T22:27:42.4222486Z 2025-12-05 22:27:42,408 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_inception_v3_arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-12-05T22:27:42.4224341Z 2025-12-05 22:27:42,408 [INFO] 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-12-05T22:27:42.4226143Z 2025-12-05 22:27:42,408 [INFO] 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-12-05T22:27:42.4228129Z 2025-12-05 22:27:42,408 [INFO] 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-12-05T22:27:42.4230107Z 2025-12-05 22:27:42,408 [INFO] 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-12-05T22:27:42.4232224Z 2025-12-05 22:27:42,409 [INFO] 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-12-05T22:27:42.4234115Z 2025-12-05 22:27:42,409 [INFO] 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-12-05T22:27:42.4235933Z 2025-12-05 22:27:42,409 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_nss.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-12-05T22:27:42.4237799Z 2025-12-05 22:27:42,409 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/test_resnet18.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models 2025-12-05T22:27:42.4239737Z 2025-12-05 22:27:42,409 [INFO] 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-12-05T22:27:42.4241638Z 2025-12-05 22:27:42,409 [INFO] 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-12-05T22:27:42.4243080Z 2025-12-05 22:27:42,410 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/models/stable_diffusion 2025-12-05T22:27:42.4244912Z 2025-12-05 22:27:42,410 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/stable_diffusion/stable_diffusion_module_test_configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models/stable_diffusion 2025-12-05T22:27:42.4247498Z 2025-12-05 22:27:42,410 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/stable_diffusion/test_CLIPTextModelWithProjection.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models/stable_diffusion 2025-12-05T22:27:42.4250005Z 2025-12-05 22:27:42,410 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/stable_diffusion/test_SD3Transformer2DModel.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models/stable_diffusion 2025-12-05T22:27:42.4252314Z 2025-12-05 22:27:42,410 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/stable_diffusion/test_T5EncoderModel.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models/stable_diffusion 2025-12-05T22:27:42.4254659Z 2025-12-05 22:27:42,410 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models/stable_diffusion/test_vae_AutoencoderKL.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/models/stable_diffusion 2025-12-05T22:27:42.4256234Z 2025-12-05 22:27:42,411 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/ops 2025-12-05T22:27:42.4257574Z 2025-12-05 22:27:42,411 [INFO] 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-12-05T22:27:42.4259304Z 2025-12-05 22:27:42,411 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_acos.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4261091Z 2025-12-05 22:27:42,411 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_acosh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4262960Z 2025-12-05 22:27:42,411 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_adaptive_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4265178Z 2025-12-05 22:27:42,411 [INFO] 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-12-05T22:27:42.4267015Z 2025-12-05 22:27:42,412 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_addmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4268835Z 2025-12-05 22:27:42,412 [INFO] 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-12-05T22:27:42.4270494Z 2025-12-05 22:27:42,412 [INFO] 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-12-05T22:27:42.4272179Z 2025-12-05 22:27:42,412 [INFO] 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-12-05T22:27:42.4273847Z 2025-12-05 22:27:42,412 [INFO] 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-12-05T22:27:42.4275531Z 2025-12-05 22:27:42,412 [INFO] 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-12-05T22:27:42.4277279Z 2025-12-05 22:27:42,412 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_asin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4279069Z 2025-12-05 22:27:42,413 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_asinh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4281256Z 2025-12-05 22:27:42,413 [INFO] 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-12-05T22:27:42.4283034Z 2025-12-05 22:27:42,413 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_atan.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4284899Z 2025-12-05 22:27:42,413 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_atanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4298896Z 2025-12-05 22:27:42,413 [INFO] 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-12-05T22:27:42.4300811Z 2025-12-05 22:27:42,413 [INFO] 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-12-05T22:27:42.4302737Z 2025-12-05 22:27:42,414 [INFO] 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-12-05T22:27:42.4304655Z 2025-12-05 22:27:42,414 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_bitwise_not.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4306548Z 2025-12-05 22:27:42,414 [INFO] 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-12-05T22:27:42.4308316Z 2025-12-05 22:27:42,414 [INFO] 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-12-05T22:27:42.4310210Z 2025-12-05 22:27:42,414 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_ceil.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4312089Z 2025-12-05 22:27:42,414 [INFO] 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-12-05T22:27:42.4313852Z 2025-12-05 22:27:42,414 [INFO] 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-12-05T22:27:42.4315761Z 2025-12-05 22:27:42,415 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_cond.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4317659Z 2025-12-05 22:27:42,415 [INFO] 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-12-05T22:27:42.4319669Z 2025-12-05 22:27:42,415 [INFO] 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-12-05T22:27:42.4321791Z 2025-12-05 22:27:42,415 [INFO] 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-12-05T22:27:42.4323702Z 2025-12-05 22:27:42,415 [INFO] 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-12-05T22:27:42.4325607Z 2025-12-05 22:27:42,415 [INFO] 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-12-05T22:27:42.4327945Z 2025-12-05 22:27:42,415 [INFO] 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-12-05T22:27:42.4329929Z 2025-12-05 22:27:42,416 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4332339Z 2025-12-05 22:27:42,416 [INFO] 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-12-05T22:27:42.4334050Z 2025-12-05 22:27:42,416 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_cosh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4335803Z 2025-12-05 22:27:42,416 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_cumsum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4337591Z 2025-12-05 22:27:42,416 [INFO] 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-12-05T22:27:42.4339484Z 2025-12-05 22:27:42,416 [INFO] 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-12-05T22:27:42.4341267Z 2025-12-05 22:27:42,416 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_div_tensor_mode.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4343215Z 2025-12-05 22:27:42,417 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_elu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4345227Z 2025-12-05 22:27:42,417 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_embedding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4347247Z 2025-12-05 22:27:42,417 [INFO] 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-12-05T22:27:42.4349227Z 2025-12-05 22:27:42,417 [INFO] 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-12-05T22:27:42.4351076Z 2025-12-05 22:27:42,417 [INFO] 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-12-05T22:27:42.4352802Z 2025-12-05 22:27:42,417 [INFO] 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-12-05T22:27:42.4354534Z 2025-12-05 22:27:42,417 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_expm1.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4356388Z 2025-12-05 22:27:42,418 [INFO] 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-12-05T22:27:42.4358394Z 2025-12-05 22:27:42,418 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_fill_scalar.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4360298Z 2025-12-05 22:27:42,418 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_floor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4362327Z 2025-12-05 22:27:42,418 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_floor_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4364330Z 2025-12-05 22:27:42,418 [INFO] 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-12-05T22:27:42.4366129Z 2025-12-05 22:27:42,418 [INFO] 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-12-05T22:27:42.4368023Z 2025-12-05 22:27:42,418 [INFO] 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-12-05T22:27:42.4369841Z 2025-12-05 22:27:42,419 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_glu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4371739Z 2025-12-05 22:27:42,419 [INFO] 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-12-05T22:27:42.4373661Z 2025-12-05 22:27:42,419 [INFO] 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-12-05T22:27:42.4375623Z 2025-12-05 22:27:42,419 [INFO] 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-12-05T22:27:42.4377489Z 2025-12-05 22:27:42,419 [INFO] 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-12-05T22:27:42.4379513Z 2025-12-05 22:27:42,419 [INFO] 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-12-05T22:27:42.4381508Z 2025-12-05 22:27:42,419 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_index_select.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4383420Z 2025-12-05 22:27:42,420 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_index_tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4385222Z 2025-12-05 22:27:42,420 [INFO] 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-12-05T22:27:42.4387196Z 2025-12-05 22:27:42,420 [INFO] 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-12-05T22:27:42.4389190Z 2025-12-05 22:27:42,420 [INFO] 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-12-05T22:27:42.4391182Z 2025-12-05 22:27:42,420 [INFO] 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-12-05T22:27:42.4393093Z 2025-12-05 22:27:42,420 [INFO] 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-12-05T22:27:42.4394890Z 2025-12-05 22:27:42,421 [INFO] 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-12-05T22:27:42.4396873Z 2025-12-05 22:27:42,421 [INFO] 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-12-05T22:27:42.4398748Z 2025-12-05 22:27:42,421 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_logit.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4400577Z 2025-12-05 22:27:42,421 [INFO] 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-12-05T22:27:42.4402382Z 2025-12-05 22:27:42,421 [INFO] 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-12-05T22:27:42.4404298Z 2025-12-05 22:27:42,422 [INFO] 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-12-05T22:27:42.4406091Z 2025-12-05 22:27:42,422 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_masked_fill.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4408018Z 2025-12-05 22:27:42,422 [INFO] 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-12-05T22:27:42.4409808Z 2025-12-05 22:27:42,422 [INFO] 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-12-05T22:27:42.4411629Z 2025-12-05 22:27:42,422 [INFO] 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-12-05T22:27:42.4413510Z 2025-12-05 22:27:42,422 [INFO] 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-12-05T22:27:42.4415410Z 2025-12-05 22:27:42,423 [INFO] 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-12-05T22:27:42.4417267Z 2025-12-05 22:27:42,423 [INFO] 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-12-05T22:27:42.4419154Z 2025-12-05 22:27:42,423 [INFO] 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-12-05T22:27:42.4421010Z 2025-12-05 22:27:42,423 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_multihead_attention.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4422958Z 2025-12-05 22:27:42,423 [INFO] 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-12-05T22:27:42.4424718Z 2025-12-05 22:27:42,423 [INFO] 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-12-05T22:27:42.4426514Z 2025-12-05 22:27:42,423 [INFO] 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-12-05T22:27:42.4428376Z 2025-12-05 22:27:42,424 [INFO] 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-12-05T22:27:42.4430419Z 2025-12-05 22:27:42,424 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_pixel_shuffling.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4432316Z 2025-12-05 22:27:42,424 [INFO] 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-12-05T22:27:42.4434177Z 2025-12-05 22:27:42,424 [INFO] 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-12-05T22:27:42.4436079Z 2025-12-05 22:27:42,424 [INFO] 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-12-05T22:27:42.4437878Z 2025-12-05 22:27:42,424 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_remainder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4439757Z 2025-12-05 22:27:42,424 [INFO] 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-12-05T22:27:42.4441602Z 2025-12-05 22:27:42,425 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_round.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4443518Z 2025-12-05 22:27:42,425 [INFO] 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-12-05T22:27:42.4445302Z 2025-12-05 22:27:42,425 [INFO] 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-12-05T22:27:42.4447072Z 2025-12-05 22:27:42,425 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_rsub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4449139Z 2025-12-05 22:27:42,425 [INFO] 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-12-05T22:27:42.4451042Z 2025-12-05 22:27:42,425 [INFO] 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-12-05T22:27:42.4452843Z 2025-12-05 22:27:42,425 [INFO] 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-12-05T22:27:42.4454635Z 2025-12-05 22:27:42,426 [INFO] 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-12-05T22:27:42.4456554Z 2025-12-05 22:27:42,426 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_select_scatter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4458532Z 2025-12-05 22:27:42,426 [INFO] 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-12-05T22:27:42.4460418Z 2025-12-05 22:27:42,426 [INFO] 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-12-05T22:27:42.4462150Z 2025-12-05 22:27:42,426 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sign.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4463969Z 2025-12-05 22:27:42,426 [INFO] 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-12-05T22:27:42.4465671Z 2025-12-05 22:27:42,426 [INFO] 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-12-05T22:27:42.4467455Z 2025-12-05 22:27:42,427 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_sinh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4469209Z 2025-12-05 22:27:42,427 [INFO] 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-12-05T22:27:42.4470931Z 2025-12-05 22:27:42,427 [INFO] 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-12-05T22:27:42.4472736Z 2025-12-05 22:27:42,427 [INFO] 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-12-05T22:27:42.4474651Z 2025-12-05 22:27:42,427 [INFO] 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-12-05T22:27:42.4476449Z 2025-12-05 22:27:42,427 [INFO] 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-12-05T22:27:42.4478322Z 2025-12-05 22:27:42,428 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_stack.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4480163Z 2025-12-05 22:27:42,428 [INFO] 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-12-05T22:27:42.4482102Z 2025-12-05 22:27:42,428 [INFO] 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-12-05T22:27:42.4483967Z 2025-12-05 22:27:42,428 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_t_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4485902Z 2025-12-05 22:27:42,428 [INFO] 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-12-05T22:27:42.4487814Z 2025-12-05 22:27:42,428 [INFO] 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-12-05T22:27:42.4489742Z 2025-12-05 22:27:42,428 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_transpose_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4491808Z 2025-12-05 22:27:42,429 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_unary_combos.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4493643Z 2025-12-05 22:27:42,429 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_unbind.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4495663Z 2025-12-05 22:27:42,429 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_unflatten.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4497636Z 2025-12-05 22:27:42,429 [INFO] 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-12-05T22:27:42.4499630Z 2025-12-05 22:27:42,429 [INFO] 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-12-05T22:27:42.4501726Z 2025-12-05 22:27:42,430 [INFO] 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-12-05T22:27:42.4503661Z 2025-12-05 22:27:42,430 [INFO] 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-12-05T22:27:42.4505609Z 2025-12-05 22:27:42,430 [INFO] 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-12-05T22:27:42.4507396Z 2025-12-05 22:27:42,430 [INFO] 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-12-05T22:27:42.4509338Z 2025-12-05 22:27:42,430 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops/test_while.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/ops 2025-12-05T22:27:42.4511335Z 2025-12-05 22:27:42,430 [INFO] 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-12-05T22:27:42.4512760Z 2025-12-05 22:27:42,430 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/passes 2025-12-05T22:27:42.4514287Z 2025-12-05 22:27:42,431 [INFO] 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-12-05T22:27:42.4516478Z 2025-12-05 22:27:42,431 [INFO] 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-12-05T22:27:42.4518758Z 2025-12-05 22:27:42,431 [INFO] 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-12-05T22:27:42.4521148Z 2025-12-05 22:27:42,431 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_convert_int32_clamp_to_minmax_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4523381Z 2025-12-05 22:27:42,431 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_convert_int64_const_ops_to_int32.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4525524Z 2025-12-05 22:27:42,431 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_convert_int64_output_ops_to_int32.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4527825Z 2025-12-05 22:27:42,432 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_convert_permute_singleton_to_view_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4529936Z 2025-12-05 22:27:42,432 [INFO] 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-12-05T22:27:42.4532061Z 2025-12-05 22:27:42,432 [INFO] 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-12-05T22:27:42.4534200Z 2025-12-05 22:27:42,432 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_avg_pool2d_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4536327Z 2025-12-05 22:27:42,432 [INFO] 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-12-05T22:27:42.4538540Z 2025-12-05 22:27:42,432 [INFO] 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-12-05T22:27:42.4540655Z 2025-12-05 22:27:42,432 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_int_pow_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4542749Z 2025-12-05 22:27:42,432 [INFO] 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-12-05T22:27:42.4544937Z 2025-12-05 22:27:42,433 [INFO] 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-12-05T22:27:42.4547015Z 2025-12-05 22:27:42,433 [INFO] 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-12-05T22:27:42.4549201Z 2025-12-05 22:27:42,433 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decompose_quant_nodes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4551345Z 2025-12-05 22:27:42,433 [INFO] 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-12-05T22:27:42.4553492Z 2025-12-05 22:27:42,433 [INFO] 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-12-05T22:27:42.4555718Z 2025-12-05 22:27:42,433 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_decorate_fp32_to_int32_casting_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4557738Z 2025-12-05 22:27:42,433 [INFO] 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-12-05T22:27:42.4559770Z 2025-12-05 22:27:42,434 [INFO] 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-12-05T22:27:42.4561937Z 2025-12-05 22:27:42,434 [INFO] 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-12-05T22:27:42.4563937Z 2025-12-05 22:27:42,434 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_fuse_duplicate_users_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4566054Z 2025-12-05 22:27:42,434 [INFO] 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-12-05T22:27:42.4568344Z 2025-12-05 22:27:42,434 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_fuse_view_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4570423Z 2025-12-05 22:27:42,434 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_insert_int32_casts_after_int64_placeholders_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4572603Z 2025-12-05 22:27:42,434 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_insert_rescale_i32_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4574668Z 2025-12-05 22:27:42,435 [INFO] 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-12-05T22:27:42.4576780Z 2025-12-05 22:27:42,435 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_int32_cast_embedding_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4578789Z 2025-12-05 22:27:42,435 [INFO] 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-12-05T22:27:42.4580969Z 2025-12-05 22:27:42,435 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_promote_bool_operands_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4583020Z 2025-12-05 22:27:42,435 [INFO] 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-12-05T22:27:42.4585043Z 2025-12-05 22:27:42,435 [INFO] 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-12-05T22:27:42.4587007Z 2025-12-05 22:27:42,435 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes/test_to_tosa_memory_format.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/passes 2025-12-05T22:27:42.4589098Z 2025-12-05 22:27:42,435 [INFO] 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-12-05T22:27:42.4590545Z 2025-12-05 22:27:42,436 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/quantizer 2025-12-05T22:27:42.4592257Z 2025-12-05 22:27:42,436 [INFO] 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-12-05T22:27:42.4594327Z 2025-12-05 22:27:42,436 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer/test_set_module_name.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/quantizer 2025-12-05T22:27:42.4595676Z 2025-12-05 22:27:42,436 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tester 2025-12-05T22:27:42.4597084Z 2025-12-05 22:27:42,436 [INFO] 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-12-05T22:27:42.4599183Z 2025-12-05 22:27:42,437 [INFO] 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-12-05T22:27:42.4601332Z 2025-12-05 22:27:42,437 [INFO] 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-12-05T22:27:42.4603332Z 2025-12-05 22:27:42,437 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester/quantize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/tester 2025-12-05T22:27:42.4605472Z 2025-12-05 22:27:42,437 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester/serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/test/tester 2025-12-05T22:27:42.4607465Z 2025-12-05 22:27:42,437 [INFO] 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-12-05T22:27:42.4608781Z 2025-12-05 22:27:42,437 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tosautil 2025-12-05T22:27:42.4610090Z 2025-12-05 22:27:42,437 [INFO] 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-12-05T22:27:42.4611424Z 2025-12-05 22:27:42,438 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa 2025-12-05T22:27:42.4612868Z 2025-12-05 22:27:42,438 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa 2025-12-05T22:27:42.4614685Z 2025-12-05 22:27:42,438 [INFO] 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/tosa 2025-12-05T22:27:42.4616478Z 2025-12-05 22:27:42,438 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/compile_spec.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa 2025-12-05T22:27:42.4618370Z 2025-12-05 22:27:42,438 [INFO] 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/tosa 2025-12-05T22:27:42.4620178Z 2025-12-05 22:27:42,438 [INFO] 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/tosa 2025-12-05T22:27:42.4622024Z 2025-12-05 22:27:42,439 [INFO] 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/tosa 2025-12-05T22:27:42.4623862Z 2025-12-05 22:27:42,439 [INFO] 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/tosa 2025-12-05T22:27:42.4625188Z 2025-12-05 22:27:42,439 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa/dialect 2025-12-05T22:27:42.4626710Z 2025-12-05 22:27:42,439 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/dialect 2025-12-05T22:27:42.4628746Z 2025-12-05 22:27:42,439 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/lib.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/dialect 2025-12-05T22:27:42.4630816Z 2025-12-05 22:27:42,439 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops_registration.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/dialect 2025-12-05T22:27:42.4632435Z 2025-12-05 22:27:42,440 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:42.4633980Z 2025-12-05 22:27:42,440 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops/conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:42.4636131Z 2025-12-05 22:27:42,440 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops/depthwise_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:42.4638143Z 2025-12-05 22:27:42,440 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops/matmul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:42.4639957Z 2025-12-05 22:27:42,440 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops/rescale.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:42.4641957Z 2025-12-05 22:27:42,440 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops/resize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:42.4643904Z 2025-12-05 22:27:42,440 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops/table.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:42.4645805Z 2025-12-05 22:27:42,440 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/dialect/ops/transpose.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/tosa/dialect/ops 2025-12-05T22:27:42.4647163Z 2025-12-05 22:27:42,441 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa/schemas 2025-12-05T22:27:42.4648491Z 2025-12-05 22:27:42,441 [INFO] 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-12-05T22:27:42.4649740Z 2025-12-05 22:27:42,441 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/util 2025-12-05T22:27:42.4650964Z 2025-12-05 22:27:42,441 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util/_factory.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/util 2025-12-05T22:27:42.4652531Z 2025-12-05 22:27:42,441 [INFO] 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-12-05T22:27:42.4653817Z 2025-12-05 22:27:42,441 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/vgf 2025-12-05T22:27:42.4654897Z 2025-12-05 22:27:42,442 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/vgf 2025-12-05T22:27:42.4656438Z 2025-12-05 22:27:42,442 [INFO] 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/vgf 2025-12-05T22:27:42.4657970Z 2025-12-05 22:27:42,442 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf/compile_spec.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/vgf 2025-12-05T22:27:42.4659637Z 2025-12-05 22:27:42,442 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/vgf/model_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/arm/vgf 2025-12-05T22:27:42.4661226Z 2025-12-05 22:27:42,442 [INFO] 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/vgf 2025-12-05T22:27:42.4662344Z 2025-12-05 22:27:42,442 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cuda 2025-12-05T22:27:42.4663412Z 2025-12-05 22:27:42,442 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cuda 2025-12-05T22:27:42.4664865Z 2025-12-05 22:27:42,443 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/cuda_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cuda 2025-12-05T22:27:42.4666507Z 2025-12-05 22:27:42,443 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/cuda_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cuda 2025-12-05T22:27:42.4667667Z 2025-12-05 22:27:42,443 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cuda/tests 2025-12-05T22:27:42.4668925Z 2025-12-05 22:27:42,443 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/tests/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cuda/tests 2025-12-05T22:27:42.4670525Z 2025-12-05 22:27:42,443 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/tests/test_cuda_export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cuda/tests 2025-12-05T22:27:42.4672228Z 2025-12-05 22:27:42,443 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/tests/test_cuda_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cuda/tests 2025-12-05T22:27:42.4673489Z 2025-12-05 22:27:42,443 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cuda/triton 2025-12-05T22:27:42.4674682Z 2025-12-05 22:27:42,444 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/triton/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cuda/triton 2025-12-05T22:27:42.4676291Z 2025-12-05 22:27:42,444 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/triton/replacement_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cuda/triton 2025-12-05T22:27:42.4677608Z 2025-12-05 22:27:42,444 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cuda/triton/kernels 2025-12-05T22:27:42.4678926Z 2025-12-05 22:27:42,444 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/triton/kernels/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cuda/triton/kernels 2025-12-05T22:27:42.4680740Z 2025-12-05 22:27:42,444 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cuda/triton/kernels/sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cuda/triton/kernels 2025-12-05T22:27:42.4681930Z 2025-12-05 22:27:42,444 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example 2025-12-05T22:27:42.4683251Z 2025-12-05 22:27:42,444 [INFO] 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-12-05T22:27:42.4684921Z 2025-12-05 22:27:42,445 [INFO] 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-12-05T22:27:42.4686940Z 2025-12-05 22:27:42,445 [INFO] 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-12-05T22:27:42.4688885Z 2025-12-05 22:27:42,445 [INFO] 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-12-05T22:27:42.4690324Z 2025-12-05 22:27:42,445 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_backend_delegate_passes 2025-12-05T22:27:42.4692118Z 2025-12-05 22:27:42,445 [INFO] 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-12-05T22:27:42.4694662Z 2025-12-05 22:27:42,445 [INFO] 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-12-05T22:27:42.4696500Z 2025-12-05 22:27:42,446 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_operators 2025-12-05T22:27:42.4698181Z 2025-12-05 22:27:42,446 [INFO] 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-12-05T22:27:42.4700166Z 2025-12-05 22:27:42,446 [INFO] 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-12-05T22:27:42.4702084Z 2025-12-05 22:27:42,446 [INFO] 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-12-05T22:27:42.4704157Z 2025-12-05 22:27:42,446 [INFO] 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-12-05T22:27:42.4706290Z 2025-12-05 22:27:42,446 [INFO] 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-12-05T22:27:42.4708283Z 2025-12-05 22:27:42,446 [INFO] 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-12-05T22:27:42.4710387Z 2025-12-05 22:27:42,446 [INFO] 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-12-05T22:27:42.4712424Z 2025-12-05 22:27:42,447 [INFO] 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-12-05T22:27:42.4714428Z 2025-12-05 22:27:42,447 [INFO] 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-12-05T22:27:42.4716540Z 2025-12-05 22:27:42,447 [INFO] 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-12-05T22:27:42.4717926Z 2025-12-05 22:27:42,447 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek 2025-12-05T22:27:42.4719549Z 2025-12-05 22:27:42,447 [INFO] 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-12-05T22:27:42.4721121Z 2025-12-05 22:27:42,447 [INFO] 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-12-05T22:27:42.4722911Z 2025-12-05 22:27:42,447 [INFO] 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-12-05T22:27:42.4724096Z 2025-12-05 22:27:42,447 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/_passes 2025-12-05T22:27:42.4725521Z 2025-12-05 22:27:42,448 [INFO] 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-12-05T22:27:42.4727353Z 2025-12-05 22:27:42,448 [INFO] 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-12-05T22:27:42.4728897Z 2025-12-05 22:27:42,448 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/quantizer 2025-12-05T22:27:42.4730451Z 2025-12-05 22:27:42,448 [INFO] 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-12-05T22:27:42.4732520Z 2025-12-05 22:27:42,448 [INFO] 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-12-05T22:27:42.4734706Z 2025-12-05 22:27:42,448 [INFO] 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-12-05T22:27:42.4736727Z 2025-12-05 22:27:42,448 [INFO] 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-12-05T22:27:42.4738215Z 2025-12-05 22:27:42,449 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp 2025-12-05T22:27:42.4739518Z 2025-12-05 22:27:42,449 [INFO] 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-12-05T22:27:42.4741098Z 2025-12-05 22:27:42,449 [INFO] 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-12-05T22:27:42.4742609Z 2025-12-05 22:27:42,449 [INFO] 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-12-05T22:27:42.4744393Z 2025-12-05 22:27:42,449 [INFO] 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-12-05T22:27:42.4745586Z 2025-12-05 22:27:42,449 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/_passes 2025-12-05T22:27:42.4747002Z 2025-12-05 22:27:42,450 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/_passes/remove_getitem_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/_passes 2025-12-05T22:27:42.4748605Z 2025-12-05 22:27:42,450 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/aten_passes 2025-12-05T22:27:42.4750061Z 2025-12-05 22:27:42,450 [INFO] 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-12-05T22:27:42.4752056Z 2025-12-05 22:27:42,450 [INFO] 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-12-05T22:27:42.4753927Z 2025-12-05 22:27:42,450 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes/fuse_linear_and_add_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/aten_passes 2025-12-05T22:27:42.4755879Z 2025-12-05 22:27:42,450 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes/move_activation_before_concat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/aten_passes 2025-12-05T22:27:42.4757901Z 2025-12-05 22:27:42,451 [INFO] 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-12-05T22:27:42.4759840Z 2025-12-05 22:27:42,451 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes/remove_nodes_with_known_outputs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/aten_passes 2025-12-05T22:27:42.4762033Z 2025-12-05 22:27:42,451 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes/split_group_convolution.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/aten_passes 2025-12-05T22:27:42.4763997Z 2025-12-05 22:27:42,451 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes/split_gru_based_on_num_layers.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/aten_passes 2025-12-05T22:27:42.4765379Z 2025-12-05 22:27:42,451 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend 2025-12-05T22:27:42.4766780Z 2025-12-05 22:27:42,452 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/custom_delegation_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend 2025-12-05T22:27:42.4768600Z 2025-12-05 22:27:42,452 [INFO] 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-12-05T22:27:42.4770449Z 2025-12-05 22:27:42,452 [INFO] 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-12-05T22:27:42.4772288Z 2025-12-05 22:27:42,452 [INFO] 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-12-05T22:27:42.4774153Z 2025-12-05 22:27:42,452 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/neutron_operator_support.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend 2025-12-05T22:27:42.4776058Z 2025-12-05 22:27:42,452 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/neutron_target_spec.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend 2025-12-05T22:27:42.4777892Z 2025-12-05 22:27:42,452 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/node_format.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend 2025-12-05T22:27:42.4779661Z 2025-12-05 22:27:42,453 [INFO] 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-12-05T22:27:42.4781158Z 2025-12-05 22:27:42,453 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir 2025-12-05T22:27:42.4782571Z 2025-12-05 22:27:42,453 [INFO] 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-12-05T22:27:42.4784519Z 2025-12-05 22:27:42,453 [INFO] 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-12-05T22:27:42.4786843Z 2025-12-05 22:27:42,453 [INFO] 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-12-05T22:27:42.4789013Z 2025-12-05 22:27:42,453 [INFO] 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-12-05T22:27:42.4790820Z 2025-12-05 22:27:42,454 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter 2025-12-05T22:27:42.4792507Z 2025-12-05 22:27:42,454 [INFO] 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-12-05T22:27:42.4794661Z 2025-12-05 22:27:42,454 [INFO] 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-12-05T22:27:42.4796855Z 2025-12-05 22:27:42,454 [INFO] 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-12-05T22:27:42.4799025Z 2025-12-05 22:27:42,454 [INFO] 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-12-05T22:27:42.4800685Z 2025-12-05 22:27:42,454 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/builder 2025-12-05T22:27:42.4802249Z 2025-12-05 22:27:42,454 [INFO] 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-12-05T22:27:42.4804621Z 2025-12-05 22:27:42,455 [INFO] 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-12-05T22:27:42.4807083Z 2025-12-05 22:27:42,455 [INFO] 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-12-05T22:27:42.4809341Z 2025-12-05 22:27:42,455 [INFO] 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-12-05T22:27:42.4811245Z 2025-12-05 22:27:42,455 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/conversion 2025-12-05T22:27:42.4813026Z 2025-12-05 22:27:42,455 [INFO] 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-12-05T22:27:42.4815584Z 2025-12-05 22:27:42,455 [INFO] 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-12-05T22:27:42.4818064Z 2025-12-05 22:27:42,456 [INFO] 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-12-05T22:27:42.4820679Z 2025-12-05 22:27:42,456 [INFO] 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-12-05T22:27:42.4822451Z 2025-12-05 22:27:42,456 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters 2025-12-05T22:27:42.4824239Z 2025-12-05 22:27:42,456 [INFO] 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-12-05T22:27:42.4826047Z 2025-12-05 22:27:42,456 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:42.4828160Z 2025-12-05 22:27:42,456 [INFO] 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-12-05T22:27:42.4830873Z 2025-12-05 22:27:42,456 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/abs_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:42.4833863Z 2025-12-05 22:27:42,457 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/adaptive_avg_pool_2d_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:42.4836739Z 2025-12-05 22:27:42,457 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/add_tensor_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:42.4840055Z 2025-12-05 22:27:42,457 [INFO] 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-12-05T22:27:42.4842603Z 2025-12-05 22:27:42,457 [INFO] 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-12-05T22:27:42.4845284Z 2025-12-05 22:27:42,457 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/cat_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:42.4847970Z 2025-12-05 22:27:42,457 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/clone_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:42.4850674Z 2025-12-05 22:27:42,458 [INFO] 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-12-05T22:27:42.4853528Z 2025-12-05 22:27:42,458 [INFO] 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-12-05T22:27:42.4856225Z 2025-12-05 22:27:42,458 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/hardtanh_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:42.4858943Z 2025-12-05 22:27:42,458 [INFO] 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-12-05T22:27:42.4861599Z 2025-12-05 22:27:42,458 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mean_dim_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:42.4864174Z 2025-12-05 22:27:42,458 [INFO] 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-12-05T22:27:42.4866826Z 2025-12-05 22:27:42,459 [INFO] 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-12-05T22:27:42.4869730Z 2025-12-05 22:27:42,459 [INFO] 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-12-05T22:27:42.4872466Z 2025-12-05 22:27:42,459 [INFO] 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-12-05T22:27:42.4875214Z 2025-12-05 22:27:42,459 [INFO] 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-12-05T22:27:42.4877945Z 2025-12-05 22:27:42,459 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/sigmoid_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:42.4880690Z 2025-12-05 22:27:42,459 [INFO] 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-12-05T22:27:42.4883475Z 2025-12-05 22:27:42,460 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/sub_tensor_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:42.4886297Z 2025-12-05 22:27:42,460 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/tanh_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-12-05T22:27:42.4889078Z 2025-12-05 22:27:42,460 [INFO] 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-12-05T22:27:42.4891495Z 2025-12-05 22:27:42,460 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-12-05T22:27:42.4893308Z 2025-12-05 22:27:42,460 [INFO] 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-12-05T22:27:42.4895758Z 2025-12-05 22:27:42,460 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared/conv_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-12-05T22:27:42.4898360Z 2025-12-05 22:27:42,460 [INFO] 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-12-05T22:27:42.4900839Z 2025-12-05 22:27:42,461 [INFO] 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-12-05T22:27:42.4903494Z 2025-12-05 22:27:42,461 [INFO] 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-12-05T22:27:42.4905270Z 2025-12-05 22:27:42,461 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib 2025-12-05T22:27:42.4906631Z 2025-12-05 22:27:42,461 [INFO] 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-12-05T22:27:42.4908011Z 2025-12-05 22:27:42,461 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib/tflite 2025-12-05T22:27:42.4909620Z 2025-12-05 22:27:42,461 [INFO] 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-12-05T22:27:42.4911783Z 2025-12-05 22:27:42,462 [INFO] 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-12-05T22:27:42.4913924Z 2025-12-05 22:27:42,462 [INFO] 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-12-05T22:27:42.4916129Z 2025-12-05 22:27:42,462 [INFO] 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-12-05T22:27:42.4918319Z 2025-12-05 22:27:42,462 [INFO] 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-12-05T22:27:42.4920352Z 2025-12-05 22:27:42,462 [INFO] 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-12-05T22:27:42.4922533Z 2025-12-05 22:27:42,462 [INFO] 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-12-05T22:27:42.4924678Z 2025-12-05 22:27:42,463 [INFO] 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-12-05T22:27:42.4926851Z 2025-12-05 22:27:42,463 [INFO] 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-12-05T22:27:42.4928980Z 2025-12-05 22:27:42,463 [INFO] 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-12-05T22:27:42.4931254Z 2025-12-05 22:27:42,463 [INFO] 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-12-05T22:27:42.4933552Z 2025-12-05 22:27:42,463 [INFO] 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-12-05T22:27:42.4935778Z 2025-12-05 22:27:42,463 [INFO] 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-12-05T22:27:42.4937956Z 2025-12-05 22:27:42,463 [INFO] 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-12-05T22:27:42.4940791Z 2025-12-05 22:27:42,464 [INFO] 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-12-05T22:27:42.4943159Z 2025-12-05 22:27:42,464 [INFO] 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-12-05T22:27:42.4945325Z 2025-12-05 22:27:42,464 [INFO] 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-12-05T22:27:42.4947486Z 2025-12-05 22:27:42,464 [INFO] 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-12-05T22:27:42.4949872Z 2025-12-05 22:27:42,464 [INFO] 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-12-05T22:27:42.4951991Z 2025-12-05 22:27:42,464 [INFO] 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-12-05T22:27:42.4954378Z 2025-12-05 22:27:42,464 [INFO] 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-12-05T22:27:42.4956564Z 2025-12-05 22:27:42,465 [INFO] 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-12-05T22:27:42.4958891Z 2025-12-05 22:27:42,465 [INFO] 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-12-05T22:27:42.4961118Z 2025-12-05 22:27:42,465 [INFO] 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-12-05T22:27:42.4963174Z 2025-12-05 22:27:42,465 [INFO] 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-12-05T22:27:42.4965516Z 2025-12-05 22:27:42,465 [INFO] 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-12-05T22:27:42.4967814Z 2025-12-05 22:27:42,465 [INFO] 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-12-05T22:27:42.4969985Z 2025-12-05 22:27:42,465 [INFO] 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-12-05T22:27:42.4972195Z 2025-12-05 22:27:42,466 [INFO] 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-12-05T22:27:42.4974654Z 2025-12-05 22:27:42,466 [INFO] 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-12-05T22:27:42.4976819Z 2025-12-05 22:27:42,466 [INFO] 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-12-05T22:27:42.4979255Z 2025-12-05 22:27:42,466 [INFO] 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-12-05T22:27:42.4981516Z 2025-12-05 22:27:42,466 [INFO] 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-12-05T22:27:42.4983738Z 2025-12-05 22:27:42,466 [INFO] 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-12-05T22:27:42.4986130Z 2025-12-05 22:27:42,467 [INFO] 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-12-05T22:27:42.4988350Z 2025-12-05 22:27:42,467 [INFO] 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-12-05T22:27:42.4990657Z 2025-12-05 22:27:42,467 [INFO] 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-12-05T22:27:42.4992817Z 2025-12-05 22:27:42,467 [INFO] 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-12-05T22:27:42.4995133Z 2025-12-05 22:27:42,467 [INFO] 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-12-05T22:27:42.4997257Z 2025-12-05 22:27:42,467 [INFO] 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-12-05T22:27:42.4999485Z 2025-12-05 22:27:42,467 [INFO] 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-12-05T22:27:42.5001867Z 2025-12-05 22:27:42,468 [INFO] 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-12-05T22:27:42.5004049Z 2025-12-05 22:27:42,468 [INFO] 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-12-05T22:27:42.5006193Z 2025-12-05 22:27:42,468 [INFO] 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-12-05T22:27:42.5008332Z 2025-12-05 22:27:42,468 [INFO] 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-12-05T22:27:42.5010649Z 2025-12-05 22:27:42,468 [INFO] 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-12-05T22:27:42.5012932Z 2025-12-05 22:27:42,468 [INFO] 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-12-05T22:27:42.5015172Z 2025-12-05 22:27:42,469 [INFO] 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-12-05T22:27:42.5017495Z 2025-12-05 22:27:42,469 [INFO] 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-12-05T22:27:42.5019987Z 2025-12-05 22:27:42,469 [INFO] 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-12-05T22:27:42.5022247Z 2025-12-05 22:27:42,469 [INFO] 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-12-05T22:27:42.5024569Z 2025-12-05 22:27:42,469 [INFO] 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-12-05T22:27:42.5026763Z 2025-12-05 22:27:42,470 [INFO] 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-12-05T22:27:42.5028999Z 2025-12-05 22:27:42,470 [INFO] 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-12-05T22:27:42.5031191Z 2025-12-05 22:27:42,470 [INFO] 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-12-05T22:27:42.5033442Z 2025-12-05 22:27:42,470 [INFO] 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-12-05T22:27:42.5035595Z 2025-12-05 22:27:42,470 [INFO] 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-12-05T22:27:42.5037786Z 2025-12-05 22:27:42,471 [INFO] 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-12-05T22:27:42.5040231Z 2025-12-05 22:27:42,471 [INFO] 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-12-05T22:27:42.5042413Z 2025-12-05 22:27:42,471 [INFO] 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-12-05T22:27:42.5044755Z 2025-12-05 22:27:42,471 [INFO] 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-12-05T22:27:42.5046995Z 2025-12-05 22:27:42,471 [INFO] 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-12-05T22:27:42.5049025Z 2025-12-05 22:27:42,472 [INFO] 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-12-05T22:27:42.5051082Z 2025-12-05 22:27:42,472 [INFO] 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-12-05T22:27:42.5053818Z 2025-12-05 22:27:42,472 [INFO] 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-12-05T22:27:42.5056250Z 2025-12-05 22:27:42,472 [INFO] 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-12-05T22:27:42.5058213Z 2025-12-05 22:27:42,472 [INFO] 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-12-05T22:27:42.5060271Z 2025-12-05 22:27:42,473 [INFO] 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-12-05T22:27:42.5062223Z 2025-12-05 22:27:42,473 [INFO] 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-12-05T22:27:42.5064468Z 2025-12-05 22:27:42,473 [INFO] 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-12-05T22:27:42.5066388Z 2025-12-05 22:27:42,473 [INFO] 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-12-05T22:27:42.5068582Z 2025-12-05 22:27:42,473 [INFO] 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-12-05T22:27:42.5070762Z 2025-12-05 22:27:42,473 [INFO] 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-12-05T22:27:42.5072776Z 2025-12-05 22:27:42,474 [INFO] 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-12-05T22:27:42.5074903Z 2025-12-05 22:27:42,474 [INFO] 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-12-05T22:27:42.5076901Z 2025-12-05 22:27:42,474 [INFO] 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-12-05T22:27:42.5079164Z 2025-12-05 22:27:42,474 [INFO] 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-12-05T22:27:42.5081425Z 2025-12-05 22:27:42,474 [INFO] 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-12-05T22:27:42.5083588Z 2025-12-05 22:27:42,474 [INFO] 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-12-05T22:27:42.5085830Z 2025-12-05 22:27:42,474 [INFO] 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-12-05T22:27:42.5088188Z 2025-12-05 22:27:42,475 [INFO] 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-12-05T22:27:42.5090417Z 2025-12-05 22:27:42,475 [INFO] 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-12-05T22:27:42.5092498Z 2025-12-05 22:27:42,475 [INFO] 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-12-05T22:27:42.5094613Z 2025-12-05 22:27:42,475 [INFO] 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-12-05T22:27:42.5096847Z 2025-12-05 22:27:42,475 [INFO] 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-12-05T22:27:42.5099194Z 2025-12-05 22:27:42,475 [INFO] 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-12-05T22:27:42.5101790Z 2025-12-05 22:27:42,475 [INFO] 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-12-05T22:27:42.5104104Z 2025-12-05 22:27:42,476 [INFO] 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-12-05T22:27:42.5106230Z 2025-12-05 22:27:42,476 [INFO] 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-12-05T22:27:42.5108399Z 2025-12-05 22:27:42,476 [INFO] 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-12-05T22:27:42.5110561Z 2025-12-05 22:27:42,476 [INFO] 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-12-05T22:27:42.5112615Z 2025-12-05 22:27:42,476 [INFO] 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-12-05T22:27:42.5114762Z 2025-12-05 22:27:42,476 [INFO] 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-12-05T22:27:42.5116804Z 2025-12-05 22:27:42,476 [INFO] 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-12-05T22:27:42.5119213Z 2025-12-05 22:27:42,477 [INFO] 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-12-05T22:27:42.5121354Z 2025-12-05 22:27:42,477 [INFO] 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-12-05T22:27:42.5123644Z 2025-12-05 22:27:42,477 [INFO] 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-12-05T22:27:42.5125843Z 2025-12-05 22:27:42,477 [INFO] 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-12-05T22:27:42.5128239Z 2025-12-05 22:27:42,477 [INFO] 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-12-05T22:27:42.5130557Z 2025-12-05 22:27:42,477 [INFO] 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-12-05T22:27:42.5132841Z 2025-12-05 22:27:42,477 [INFO] 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-12-05T22:27:42.5135103Z 2025-12-05 22:27:42,478 [INFO] 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-12-05T22:27:42.5137370Z 2025-12-05 22:27:42,478 [INFO] 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-12-05T22:27:42.5139480Z 2025-12-05 22:27:42,478 [INFO] 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-12-05T22:27:42.5141785Z 2025-12-05 22:27:42,478 [INFO] 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-12-05T22:27:42.5144084Z 2025-12-05 22:27:42,478 [INFO] 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-12-05T22:27:42.5146428Z 2025-12-05 22:27:42,478 [INFO] 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-12-05T22:27:42.5148742Z 2025-12-05 22:27:42,479 [INFO] 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-12-05T22:27:42.5151091Z 2025-12-05 22:27:42,479 [INFO] 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-12-05T22:27:42.5153430Z 2025-12-05 22:27:42,479 [INFO] 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-12-05T22:27:42.5154644Z 2025-12-05 22:27:42,479 [INFO] 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-12-05T22:27:42.5155650Z 2025-12-05 22:27:42,479 [INFO] 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-12-05T22:27:42.5156748Z 2025-12-05 22:27:42,479 [INFO] 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-12-05T22:27:42.5157855Z 2025-12-05 22:27:42,479 [INFO] 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-12-05T22:27:42.5158834Z 2025-12-05 22:27:42,480 [INFO] 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-12-05T22:27:42.5159889Z 2025-12-05 22:27:42,480 [INFO] 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-12-05T22:27:42.5160949Z 2025-12-05 22:27:42,480 [INFO] 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-12-05T22:27:42.5162044Z 2025-12-05 22:27:42,480 [INFO] 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-12-05T22:27:42.5163577Z 2025-12-05 22:27:42,480 [INFO] 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-12-05T22:27:42.5164632Z 2025-12-05 22:27:42,480 [INFO] 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-12-05T22:27:42.5165693Z 2025-12-05 22:27:42,480 [INFO] 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-12-05T22:27:42.5166716Z 2025-12-05 22:27:42,481 [INFO] 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-12-05T22:27:42.5167663Z 2025-12-05 22:27:42,481 [INFO] 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-12-05T22:27:42.5168667Z 2025-12-05 22:27:42,481 [INFO] 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-12-05T22:27:42.5169737Z 2025-12-05 22:27:42,481 [INFO] 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-12-05T22:27:42.5170755Z 2025-12-05 22:27:42,481 [INFO] 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-12-05T22:27:42.5171725Z 2025-12-05 22:27:42,481 [INFO] 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-12-05T22:27:42.5172666Z 2025-12-05 22:27:42,481 [INFO] 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-12-05T22:27:42.5173719Z 2025-12-05 22:27:42,481 [INFO] 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-12-05T22:27:42.5174739Z 2025-12-05 22:27:42,482 [INFO] 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-12-05T22:27:42.5175753Z 2025-12-05 22:27:42,482 [INFO] 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-12-05T22:27:42.5176767Z 2025-12-05 22:27:42,482 [INFO] 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-12-05T22:27:42.5177770Z 2025-12-05 22:27:42,482 [INFO] 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-12-05T22:27:42.5178782Z 2025-12-05 22:27:42,482 [INFO] 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-12-05T22:27:42.5179713Z 2025-12-05 22:27:42,482 [INFO] 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-12-05T22:27:42.5180709Z 2025-12-05 22:27:42,482 [INFO] 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-12-05T22:27:42.5181750Z 2025-12-05 22:27:42,482 [INFO] 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-12-05T22:27:42.5182732Z 2025-12-05 22:27:42,483 [INFO] 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-12-05T22:27:42.5183846Z 2025-12-05 22:27:42,483 [INFO] 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-12-05T22:27:42.5184877Z 2025-12-05 22:27:42,483 [INFO] 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-12-05T22:27:42.5186004Z 2025-12-05 22:27:42,483 [INFO] 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-12-05T22:27:42.5187075Z 2025-12-05 22:27:42,483 [INFO] 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-12-05T22:27:42.5188195Z 2025-12-05 22:27:42,483 [INFO] 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-12-05T22:27:42.5189396Z 2025-12-05 22:27:42,483 [INFO] 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-12-05T22:27:42.5190437Z 2025-12-05 22:27:42,484 [INFO] 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-12-05T22:27:42.5191473Z 2025-12-05 22:27:42,484 [INFO] 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-12-05T22:27:42.5192589Z 2025-12-05 22:27:42,484 [INFO] 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-12-05T22:27:42.5193695Z 2025-12-05 22:27:42,484 [INFO] 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-12-05T22:27:42.5194800Z 2025-12-05 22:27:42,484 [INFO] 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-12-05T22:27:42.5195919Z 2025-12-05 22:27:42,484 [INFO] 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-12-05T22:27:42.5196985Z 2025-12-05 22:27:42,484 [INFO] 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-12-05T22:27:42.5198028Z 2025-12-05 22:27:42,485 [INFO] 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-12-05T22:27:42.5199109Z 2025-12-05 22:27:42,485 [INFO] 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-12-05T22:27:42.5200212Z 2025-12-05 22:27:42,485 [INFO] 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-12-05T22:27:42.5201256Z 2025-12-05 22:27:42,485 [INFO] 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-12-05T22:27:42.5202291Z 2025-12-05 22:27:42,485 [INFO] 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-12-05T22:27:42.5203474Z 2025-12-05 22:27:42,485 [INFO] 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-12-05T22:27:42.5204537Z 2025-12-05 22:27:42,486 [INFO] 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-12-05T22:27:42.5205626Z 2025-12-05 22:27:42,486 [INFO] 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-12-05T22:27:42.5206620Z 2025-12-05 22:27:42,486 [INFO] 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-12-05T22:27:42.5207569Z 2025-12-05 22:27:42,486 [INFO] 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-12-05T22:27:42.5208570Z 2025-12-05 22:27:42,486 [INFO] 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-12-05T22:27:42.5209443Z 2025-12-05 22:27:42,486 [INFO] 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-12-05T22:27:42.5210395Z 2025-12-05 22:27:42,487 [INFO] 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-12-05T22:27:42.5211331Z 2025-12-05 22:27:42,487 [INFO] 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-12-05T22:27:42.5212359Z 2025-12-05 22:27:42,487 [INFO] 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-12-05T22:27:42.5213464Z 2025-12-05 22:27:42,487 [INFO] 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-12-05T22:27:42.5214490Z 2025-12-05 22:27:42,487 [INFO] 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-12-05T22:27:42.5215472Z 2025-12-05 22:27:42,487 [INFO] 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-12-05T22:27:42.5216524Z 2025-12-05 22:27:42,487 [INFO] 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-12-05T22:27:42.5217526Z 2025-12-05 22:27:42,488 [INFO] 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-12-05T22:27:42.5218897Z 2025-12-05 22:27:42,488 [INFO] 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-12-05T22:27:42.5220179Z 2025-12-05 22:27:42,488 [INFO] 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-12-05T22:27:42.5221269Z 2025-12-05 22:27:42,488 [INFO] 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-12-05T22:27:42.5222486Z 2025-12-05 22:27:42,488 [INFO] 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-12-05T22:27:42.5223502Z 2025-12-05 22:27:42,488 [INFO] 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-12-05T22:27:42.5224670Z 2025-12-05 22:27:42,489 [INFO] 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-12-05T22:27:42.5225845Z 2025-12-05 22:27:42,489 [INFO] 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-12-05T22:27:42.5226836Z 2025-12-05 22:27:42,489 [INFO] 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-12-05T22:27:42.5228212Z 2025-12-05 22:27:42,489 [INFO] 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-12-05T22:27:42.5229512Z 2025-12-05 22:27:42,489 [INFO] 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-12-05T22:27:42.5230531Z 2025-12-05 22:27:42,489 [INFO] 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-12-05T22:27:42.5231550Z 2025-12-05 22:27:42,489 [INFO] 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-12-05T22:27:42.5232507Z 2025-12-05 22:27:42,490 [INFO] 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-12-05T22:27:42.5232957Z 2025-12-05 22:27:42,490 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator 2025-12-05T22:27:42.5234002Z 2025-12-05 22:27:42,490 [INFO] 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-12-05T22:27:42.5235048Z 2025-12-05 22:27:42,490 [INFO] 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-12-05T22:27:42.5235618Z 2025-12-05 22:27:42,491 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-12-05T22:27:42.5236904Z 2025-12-05 22:27:42,491 [INFO] 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-12-05T22:27:42.5238108Z 2025-12-05 22:27:42,491 [INFO] 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-12-05T22:27:42.5239326Z 2025-12-05 22:27:42,491 [INFO] 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-12-05T22:27:42.5240562Z 2025-12-05 22:27:42,491 [INFO] 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-12-05T22:27:42.5241806Z 2025-12-05 22:27:42,491 [INFO] 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-12-05T22:27:42.5243079Z 2025-12-05 22:27:42,491 [INFO] 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-12-05T22:27:42.5244349Z 2025-12-05 22:27:42,492 [INFO] 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-12-05T22:27:42.5245632Z 2025-12-05 22:27:42,492 [INFO] 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-12-05T22:27:42.5247046Z 2025-12-05 22:27:42,492 [INFO] 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-12-05T22:27:42.5248396Z 2025-12-05 22:27:42,492 [INFO] 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-12-05T22:27:42.5249629Z 2025-12-05 22:27:42,492 [INFO] 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-12-05T22:27:42.5250921Z 2025-12-05 22:27:42,492 [INFO] 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-12-05T22:27:42.5252156Z 2025-12-05 22:27:42,493 [INFO] 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-12-05T22:27:42.5253464Z 2025-12-05 22:27:42,493 [INFO] 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-12-05T22:27:42.5254841Z 2025-12-05 22:27:42,493 [INFO] 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-12-05T22:27:42.5256084Z 2025-12-05 22:27:42,493 [INFO] 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-12-05T22:27:42.5257420Z 2025-12-05 22:27:42,493 [INFO] 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-12-05T22:27:42.5258684Z 2025-12-05 22:27:42,493 [INFO] 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-12-05T22:27:42.5259996Z 2025-12-05 22:27:42,494 [INFO] 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-12-05T22:27:42.5261228Z 2025-12-05 22:27:42,494 [INFO] 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-12-05T22:27:42.5262478Z 2025-12-05 22:27:42,494 [INFO] 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-12-05T22:27:42.5263766Z 2025-12-05 22:27:42,494 [INFO] 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-12-05T22:27:42.5265023Z 2025-12-05 22:27:42,494 [INFO] 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-12-05T22:27:42.5266290Z 2025-12-05 22:27:42,494 [INFO] 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-12-05T22:27:42.5267584Z 2025-12-05 22:27:42,494 [INFO] 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-12-05T22:27:42.5268966Z 2025-12-05 22:27:42,495 [INFO] 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-12-05T22:27:42.5270187Z 2025-12-05 22:27:42,495 [INFO] 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-12-05T22:27:42.5271511Z 2025-12-05 22:27:42,495 [INFO] 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-12-05T22:27:42.5272751Z 2025-12-05 22:27:42,495 [INFO] 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-12-05T22:27:42.5273997Z 2025-12-05 22:27:42,495 [INFO] 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-12-05T22:27:42.5275268Z 2025-12-05 22:27:42,495 [INFO] 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-12-05T22:27:42.5276555Z 2025-12-05 22:27:42,496 [INFO] 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-12-05T22:27:42.5277827Z 2025-12-05 22:27:42,496 [INFO] 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-12-05T22:27:42.5279056Z 2025-12-05 22:27:42,496 [INFO] 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-12-05T22:27:42.5280308Z 2025-12-05 22:27:42,496 [INFO] 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-12-05T22:27:42.5281694Z 2025-12-05 22:27:42,496 [INFO] 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-12-05T22:27:42.5282964Z 2025-12-05 22:27:42,496 [INFO] 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-12-05T22:27:42.5284661Z 2025-12-05 22:27:42,496 [INFO] 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-12-05T22:27:42.5285714Z 2025-12-05 22:27:42,497 [INFO] 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-12-05T22:27:42.5286781Z 2025-12-05 22:27:42,497 [INFO] 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-12-05T22:27:42.5288052Z 2025-12-05 22:27:42,497 [INFO] 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-12-05T22:27:42.5289394Z 2025-12-05 22:27:42,497 [INFO] 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-12-05T22:27:42.5290618Z 2025-12-05 22:27:42,497 [INFO] 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-12-05T22:27:42.5291812Z 2025-12-05 22:27:42,497 [INFO] 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-12-05T22:27:42.5293004Z 2025-12-05 22:27:42,497 [INFO] 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-12-05T22:27:42.5294219Z 2025-12-05 22:27:42,498 [INFO] 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-12-05T22:27:42.5295450Z 2025-12-05 22:27:42,498 [INFO] 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-12-05T22:27:42.5296707Z 2025-12-05 22:27:42,498 [INFO] 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-12-05T22:27:42.5298017Z 2025-12-05 22:27:42,498 [INFO] 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-12-05T22:27:42.5299211Z 2025-12-05 22:27:42,498 [INFO] 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-12-05T22:27:42.5300425Z 2025-12-05 22:27:42,498 [INFO] 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-12-05T22:27:42.5301586Z 2025-12-05 22:27:42,498 [INFO] 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-12-05T22:27:42.5302787Z 2025-12-05 22:27:42,498 [INFO] 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-12-05T22:27:42.5304022Z 2025-12-05 22:27:42,499 [INFO] 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-12-05T22:27:42.5305254Z 2025-12-05 22:27:42,499 [INFO] 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-12-05T22:27:42.5306570Z 2025-12-05 22:27:42,499 [INFO] 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-12-05T22:27:42.5307766Z 2025-12-05 22:27:42,499 [INFO] 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-12-05T22:27:42.5309103Z 2025-12-05 22:27:42,499 [INFO] 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-12-05T22:27:42.5310275Z 2025-12-05 22:27:42,499 [INFO] 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-12-05T22:27:42.5311595Z 2025-12-05 22:27:42,499 [INFO] 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-12-05T22:27:42.5312902Z 2025-12-05 22:27:42,500 [INFO] 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-12-05T22:27:42.5314158Z 2025-12-05 22:27:42,500 [INFO] 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-12-05T22:27:42.5315476Z 2025-12-05 22:27:42,500 [INFO] 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-12-05T22:27:42.5316726Z 2025-12-05 22:27:42,500 [INFO] 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-12-05T22:27:42.5317900Z 2025-12-05 22:27:42,500 [INFO] 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-12-05T22:27:42.5319259Z 2025-12-05 22:27:42,500 [INFO] 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-12-05T22:27:42.5320490Z 2025-12-05 22:27:42,500 [INFO] 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-12-05T22:27:42.5321730Z 2025-12-05 22:27:42,501 [INFO] 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-12-05T22:27:42.5323118Z 2025-12-05 22:27:42,501 [INFO] 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-12-05T22:27:42.5324267Z 2025-12-05 22:27:42,501 [INFO] 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-12-05T22:27:42.5325464Z 2025-12-05 22:27:42,501 [INFO] 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-12-05T22:27:42.5326697Z 2025-12-05 22:27:42,501 [INFO] 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-12-05T22:27:42.5327995Z 2025-12-05 22:27:42,501 [INFO] 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-12-05T22:27:42.5329232Z 2025-12-05 22:27:42,501 [INFO] 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-12-05T22:27:42.5330508Z 2025-12-05 22:27:42,502 [INFO] 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-12-05T22:27:42.5331666Z 2025-12-05 22:27:42,502 [INFO] 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-12-05T22:27:42.5332931Z 2025-12-05 22:27:42,502 [INFO] 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-12-05T22:27:42.5334132Z 2025-12-05 22:27:42,502 [INFO] 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-12-05T22:27:42.5335363Z 2025-12-05 22:27:42,502 [INFO] 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-12-05T22:27:42.5336621Z 2025-12-05 22:27:42,502 [INFO] 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-12-05T22:27:42.5337958Z 2025-12-05 22:27:42,502 [INFO] 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-12-05T22:27:42.5339302Z 2025-12-05 22:27:42,503 [INFO] 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-12-05T22:27:42.5339896Z 2025-12-05 22:27:42,503 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-12-05T22:27:42.5341150Z 2025-12-05 22:27:42,503 [INFO] 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-12-05T22:27:42.5341761Z 2025-12-05 22:27:42,503 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-12-05T22:27:42.5343276Z 2025-12-05 22:27:42,503 [INFO] 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-12-05T22:27:42.5344205Z 2025-12-05 22:27:42,503 [INFO] 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-12-05T22:27:42.5345197Z 2025-12-05 22:27:42,504 [INFO] 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-12-05T22:27:42.5345603Z 2025-12-05 22:27:42,504 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-12-05T22:27:42.5346545Z 2025-12-05 22:27:42,504 [INFO] 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-12-05T22:27:42.5347439Z 2025-12-05 22:27:42,504 [INFO] 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-12-05T22:27:42.5348628Z 2025-12-05 22:27:42,504 [INFO] 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-12-05T22:27:42.5349665Z 2025-12-05 22:27:42,504 [INFO] 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-12-05T22:27:42.5350676Z 2025-12-05 22:27:42,504 [INFO] 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-12-05T22:27:42.5351713Z 2025-12-05 22:27:42,505 [INFO] 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-12-05T22:27:42.5352234Z 2025-12-05 22:27:42,505 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-12-05T22:27:42.5353380Z 2025-12-05 22:27:42,505 [INFO] 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-12-05T22:27:42.5354631Z 2025-12-05 22:27:42,505 [INFO] 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-12-05T22:27:42.5356095Z 2025-12-05 22:27:42,505 [INFO] 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-12-05T22:27:42.5357317Z 2025-12-05 22:27:42,505 [INFO] 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-12-05T22:27:42.5357722Z 2025-12-05 22:27:42,506 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/edge_passes 2025-12-05T22:27:42.5358682Z 2025-12-05 22:27:42,506 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/edge_passes/move_auxiliary_operator_into_separate_qdq_cluster_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/edge_passes 2025-12-05T22:27:42.5359582Z 2025-12-05 22:27:42,506 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/edge_passes/neutron_edge_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/edge_passes 2025-12-05T22:27:42.5360462Z 2025-12-05 22:27:42,506 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/edge_passes/neutron_edge_pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/edge_passes 2025-12-05T22:27:42.5361478Z 2025-12-05 22:27:42,506 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/edge_passes/remove_additional_quantize_dequantize_nodes_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/edge_passes 2025-12-05T22:27:42.5362397Z 2025-12-05 22:27:42,506 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/edge_passes/remove_io_quant_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/edge_passes 2025-12-05T22:27:42.5362720Z 2025-12-05 22:27:42,507 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/quantizer 2025-12-05T22:27:42.5363704Z 2025-12-05 22:27:42,507 [INFO] 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-12-05T22:27:42.5364466Z 2025-12-05 22:27:42,507 [INFO] 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-12-05T22:27:42.5365387Z 2025-12-05 22:27:42,507 [INFO] 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-12-05T22:27:42.5365691Z 2025-12-05 22:27:42,507 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests 2025-12-05T22:27:42.5366551Z 2025-12-05 22:27:42,508 [INFO] 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-12-05T22:27:42.5367311Z 2025-12-05 22:27:42,508 [INFO] 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-12-05T22:27:42.5368091Z 2025-12-05 22:27:42,508 [INFO] 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-12-05T22:27:42.5368892Z 2025-12-05 22:27:42,508 [INFO] 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-12-05T22:27:42.5369831Z 2025-12-05 22:27:42,508 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_context_sensitive_delegation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-12-05T22:27:42.5370654Z 2025-12-05 22:27:42,508 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_edge_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-12-05T22:27:42.5371544Z 2025-12-05 22:27:42,509 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_gru_splitting.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-12-05T22:27:42.5372338Z 2025-12-05 22:27:42,509 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_integration.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-12-05T22:27:42.5373161Z 2025-12-05 22:27:42,509 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_linear_and_add_fusion.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-12-05T22:27:42.5374121Z 2025-12-05 22:27:42,509 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_move_activation_before_concatenation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-12-05T22:27:42.5374928Z 2025-12-05 22:27:42,509 [INFO] 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-12-05T22:27:42.5375838Z 2025-12-05 22:27:42,509 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_neutron_backend_executor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-12-05T22:27:42.5376679Z 2025-12-05 22:27:42,510 [INFO] 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-12-05T22:27:42.5377552Z 2025-12-05 22:27:42,510 [INFO] 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-12-05T22:27:42.5378419Z 2025-12-05 22:27:42,510 [INFO] 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-12-05T22:27:42.5379301Z 2025-12-05 22:27:42,510 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_per_channel_conversion.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-12-05T22:27:42.5380209Z 2025-12-05 22:27:42,510 [INFO] 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-12-05T22:27:42.5380964Z 2025-12-05 22:27:42,510 [INFO] 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-12-05T22:27:42.5381833Z 2025-12-05 22:27:42,510 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_removing_dead_code.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-12-05T22:27:42.5382724Z 2025-12-05 22:27:42,511 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_removing_nodes_with_known_outputs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-12-05T22:27:42.5383574Z 2025-12-05 22:27:42,511 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/test_split_group_convolution.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests 2025-12-05T22:27:42.5383931Z 2025-12-05 22:27:42,511 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir 2025-12-05T22:27:42.5384757Z 2025-12-05 22:27:42,511 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir 2025-12-05T22:27:42.5385179Z 2025-12-05 22:27:42,511 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter 2025-12-05T22:27:42.5386170Z 2025-12-05 22:27:42,511 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter 2025-12-05T22:27:42.5386623Z 2025-12-05 22:27:42,512 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5387722Z 2025-12-05 22:27:42,512 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5388894Z 2025-12-05 22:27:42,512 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_abs_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5390069Z 2025-12-05 22:27:42,512 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_adaptive_avg_pool2d_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5391207Z 2025-12-05 22:27:42,512 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_add_tensor_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5392382Z 2025-12-05 22:27:42,512 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_addmm_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5393591Z 2025-12-05 22:27:42,512 [INFO] 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-12-05T22:27:42.5394879Z 2025-12-05 22:27:42,513 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_cat_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5396050Z 2025-12-05 22:27:42,513 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_clone_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5397274Z 2025-12-05 22:27:42,513 [INFO] 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-12-05T22:27:42.5398469Z 2025-12-05 22:27:42,513 [INFO] 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-12-05T22:27:42.5399661Z 2025-12-05 22:27:42,513 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_hardtanh_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5400972Z 2025-12-05 22:27:42,513 [INFO] 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-12-05T22:27:42.5402376Z 2025-12-05 22:27:42,514 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_mean_dim_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5403575Z 2025-12-05 22:27:42,514 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_mm_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5404812Z 2025-12-05 22:27:42,514 [INFO] 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-12-05T22:27:42.5406028Z 2025-12-05 22:27:42,514 [INFO] 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-12-05T22:27:42.5407277Z 2025-12-05 22:27:42,514 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_sigmoid_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5408406Z 2025-12-05 22:27:42,514 [INFO] 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-12-05T22:27:42.5409620Z 2025-12-05 22:27:42,514 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_sub_tensor_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5410820Z 2025-12-05 22:27:42,515 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter/test_tanh_converter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/converter/node_converter 2025-12-05T22:27:42.5412175Z 2025-12-05 22:27:42,515 [INFO] 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-12-05T22:27:42.5412607Z 2025-12-05 22:27:42,515 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/edge_passes 2025-12-05T22:27:42.5413617Z 2025-12-05 22:27:42,515 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/edge_passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/edge_passes 2025-12-05T22:27:42.5414613Z 2025-12-05 22:27:42,515 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/edge_passes/test_remove_io_quant_ops_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/nxp/tests/ir/edge_passes 2025-12-05T22:27:42.5415057Z 2025-12-05 22:27:42,515 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino 2025-12-05T22:27:42.5415798Z 2025-12-05 22:27:42,516 [INFO] 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-12-05T22:27:42.5416680Z 2025-12-05 22:27:42,516 [INFO] 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-12-05T22:27:42.5417436Z 2025-12-05 22:27:42,516 [INFO] 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-12-05T22:27:42.5417918Z 2025-12-05 22:27:42,516 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/quantizer 2025-12-05T22:27:42.5418969Z 2025-12-05 22:27:42,516 [INFO] 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-12-05T22:27:42.5419972Z 2025-12-05 22:27:42,516 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer/observers.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/openvino/quantizer 2025-12-05T22:27:42.5420870Z 2025-12-05 22:27:42,516 [INFO] 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-12-05T22:27:42.5421231Z 2025-12-05 22:27:42,517 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests 2025-12-05T22:27:42.5422138Z 2025-12-05 22:27:42,517 [INFO] 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-12-05T22:27:42.5422551Z 2025-12-05 22:27:42,517 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/models 2025-12-05T22:27:42.5423617Z 2025-12-05 22:27:42,517 [INFO] 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-12-05T22:27:42.5424018Z 2025-12-05 22:27:42,517 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/ops 2025-12-05T22:27:42.5425028Z 2025-12-05 22:27:42,517 [INFO] 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-12-05T22:27:42.5425895Z 2025-12-05 22:27:42,518 [INFO] 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-12-05T22:27:42.5426835Z 2025-12-05 22:27:42,518 [INFO] 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-12-05T22:27:42.5427937Z 2025-12-05 22:27:42,518 [INFO] 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-12-05T22:27:42.5428892Z 2025-12-05 22:27:42,518 [INFO] 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-12-05T22:27:42.5429882Z 2025-12-05 22:27:42,518 [INFO] 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-12-05T22:27:42.5430768Z 2025-12-05 22:27:42,518 [INFO] 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-12-05T22:27:42.5431767Z 2025-12-05 22:27:42,518 [INFO] 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-12-05T22:27:42.5432750Z 2025-12-05 22:27:42,519 [INFO] 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-12-05T22:27:42.5433595Z 2025-12-05 22:27:42,519 [INFO] 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-12-05T22:27:42.5434666Z 2025-12-05 22:27:42,519 [INFO] 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-12-05T22:27:42.5435023Z 2025-12-05 22:27:42,519 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm 2025-12-05T22:27:42.5435799Z 2025-12-05 22:27:42,519 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm 2025-12-05T22:27:42.5436640Z 2025-12-05 22:27:42,519 [INFO] 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-12-05T22:27:42.5437019Z 2025-12-05 22:27:42,520 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5437896Z 2025-12-05 22:27:42,520 [INFO] 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-12-05T22:27:42.5438862Z 2025-12-05 22:27:42,520 [INFO] 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-12-05T22:27:42.5439821Z 2025-12-05 22:27:42,520 [INFO] 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-12-05T22:27:42.5440791Z 2025-12-05 22:27:42,520 [INFO] 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-12-05T22:27:42.5441632Z 2025-12-05 22:27:42,520 [INFO] 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-12-05T22:27:42.5442559Z 2025-12-05 22:27:42,520 [INFO] 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-12-05T22:27:42.5443563Z 2025-12-05 22:27:42,521 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/canonicalize_conv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5444495Z 2025-12-05 22:27:42,521 [INFO] 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-12-05T22:27:42.5445504Z 2025-12-05 22:27:42,521 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/convert_linear_to_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5446398Z 2025-12-05 22:27:42,521 [INFO] 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-12-05T22:27:42.5447423Z 2025-12-05 22:27:42,521 [INFO] 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-12-05T22:27:42.5448431Z 2025-12-05 22:27:42,521 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_binary_alpha.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5449311Z 2025-12-05 22:27:42,522 [INFO] 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-12-05T22:27:42.5450293Z 2025-12-05 22:27:42,522 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_col_im.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5451180Z 2025-12-05 22:27:42,522 [INFO] 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-12-05T22:27:42.5452005Z 2025-12-05 22:27:42,522 [INFO] 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-12-05T22:27:42.5452948Z 2025-12-05 22:27:42,522 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_floor_divide.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5453782Z 2025-12-05 22:27:42,522 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_glu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5454753Z 2025-12-05 22:27:42,523 [INFO] 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-12-05T22:27:42.5455684Z 2025-12-05 22:27:42,523 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_minmaxdim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5456584Z 2025-12-05 22:27:42,523 [INFO] 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-12-05T22:27:42.5457488Z 2025-12-05 22:27:42,523 [INFO] 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-12-05T22:27:42.5458459Z 2025-12-05 22:27:42,523 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_threshold.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5459396Z 2025-12-05 22:27:42,523 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_triu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5460289Z 2025-12-05 22:27:42,523 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/decompose_wrap_with_autocast.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5461130Z 2025-12-05 22:27:42,524 [INFO] 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-12-05T22:27:42.5461997Z 2025-12-05 22:27:42,524 [INFO] 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-12-05T22:27:42.5462824Z 2025-12-05 22:27:42,524 [INFO] 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-12-05T22:27:42.5463767Z 2025-12-05 22:27:42,524 [INFO] 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-12-05T22:27:42.5464698Z 2025-12-05 22:27:42,524 [INFO] 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-12-05T22:27:42.5465644Z 2025-12-05 22:27:42,524 [INFO] 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-12-05T22:27:42.5466525Z 2025-12-05 22:27:42,524 [INFO] 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-12-05T22:27:42.5467561Z 2025-12-05 22:27:42,525 [INFO] 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-12-05T22:27:42.5468738Z 2025-12-05 22:27:42,525 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/insert_reshape_for_reduce_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5469623Z 2025-12-05 22:27:42,525 [INFO] 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-12-05T22:27:42.5470612Z 2025-12-05 22:27:42,525 [INFO] 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-12-05T22:27:42.5471636Z 2025-12-05 22:27:42,525 [INFO] 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-12-05T22:27:42.5472506Z 2025-12-05 22:27:42,525 [INFO] 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-12-05T22:27:42.5473454Z 2025-12-05 22:27:42,525 [INFO] 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-12-05T22:27:42.5474396Z 2025-12-05 22:27:42,526 [INFO] 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-12-05T22:27:42.5475307Z 2025-12-05 22:27:42,526 [INFO] 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-12-05T22:27:42.5476411Z 2025-12-05 22:27:42,526 [INFO] 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-12-05T22:27:42.5477355Z 2025-12-05 22:27:42,526 [INFO] 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-12-05T22:27:42.5478142Z 2025-12-05 22:27:42,526 [INFO] 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-12-05T22:27:42.5478935Z 2025-12-05 22:27:42,526 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes/seq_mse.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/_passes 2025-12-05T22:27:42.5479666Z 2025-12-05 22:27:42,526 [INFO] 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-12-05T22:27:42.5480546Z 2025-12-05 22:27:42,527 [INFO] 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-12-05T22:27:42.5481006Z 2025-12-05 22:27:42,527 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5481797Z 2025-12-05 22:27:42,527 [INFO] 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-12-05T22:27:42.5482692Z 2025-12-05 22:27:42,527 [INFO] 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-12-05T22:27:42.5483643Z 2025-12-05 22:27:42,527 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/node_visitor_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5484396Z 2025-12-05 22:27:42,527 [INFO] 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-12-05T22:27:42.5485377Z 2025-12-05 22:27:42,527 [INFO] 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-12-05T22:27:42.5486192Z 2025-12-05 22:27:42,528 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_adaptive_max_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5487038Z 2025-12-05 22:27:42,528 [INFO] 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-12-05T22:27:42.5487946Z 2025-12-05 22:27:42,528 [INFO] 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-12-05T22:27:42.5488736Z 2025-12-05 22:27:42,528 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_amin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5489685Z 2025-12-05 22:27:42,528 [INFO] 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-12-05T22:27:42.5490447Z 2025-12-05 22:27:42,528 [INFO] 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-12-05T22:27:42.5491363Z 2025-12-05 22:27:42,529 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_argmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5492210Z 2025-12-05 22:27:42,529 [INFO] 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-12-05T22:27:42.5493064Z 2025-12-05 22:27:42,529 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_asin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5493956Z 2025-12-05 22:27:42,529 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_atan.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5494727Z 2025-12-05 22:27:42,529 [INFO] 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-12-05T22:27:42.5495625Z 2025-12-05 22:27:42,529 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_avg_pool3d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5496470Z 2025-12-05 22:27:42,529 [INFO] 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-12-05T22:27:42.5497371Z 2025-12-05 22:27:42,530 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_binary.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5498104Z 2025-12-05 22:27:42,530 [INFO] 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-12-05T22:27:42.5498984Z 2025-12-05 22:27:42,530 [INFO] 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-12-05T22:27:42.5499768Z 2025-12-05 22:27:42,530 [INFO] 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-12-05T22:27:42.5500629Z 2025-12-05 22:27:42,530 [INFO] 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-12-05T22:27:42.5501555Z 2025-12-05 22:27:42,530 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_conv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5502322Z 2025-12-05 22:27:42,530 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5503273Z 2025-12-05 22:27:42,531 [INFO] 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-12-05T22:27:42.5504029Z 2025-12-05 22:27:42,531 [INFO] 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-12-05T22:27:42.5505044Z 2025-12-05 22:27:42,531 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_custom_op.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5505942Z 2025-12-05 22:27:42,531 [INFO] 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-12-05T22:27:42.5506792Z 2025-12-05 22:27:42,531 [INFO] 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-12-05T22:27:42.5507676Z 2025-12-05 22:27:42,531 [INFO] 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-12-05T22:27:42.5508480Z 2025-12-05 22:27:42,531 [INFO] 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-12-05T22:27:42.5509415Z 2025-12-05 22:27:42,532 [INFO] 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-12-05T22:27:42.5510148Z 2025-12-05 22:27:42,532 [INFO] 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-12-05T22:27:42.5511019Z 2025-12-05 22:27:42,532 [INFO] 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-12-05T22:27:42.5511899Z 2025-12-05 22:27:42,532 [INFO] 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-12-05T22:27:42.5512752Z 2025-12-05 22:27:42,532 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_flip.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5513576Z 2025-12-05 22:27:42,532 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_floor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5514388Z 2025-12-05 22:27:42,532 [INFO] 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-12-05T22:27:42.5515296Z 2025-12-05 22:27:42,533 [INFO] 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-12-05T22:27:42.5516065Z 2025-12-05 22:27:42,533 [INFO] 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-12-05T22:27:42.5516929Z 2025-12-05 22:27:42,533 [INFO] 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-12-05T22:27:42.5517673Z 2025-12-05 22:27:42,533 [INFO] 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-12-05T22:27:42.5518755Z 2025-12-05 22:27:42,533 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_grid_sampler_2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5519667Z 2025-12-05 22:27:42,533 [INFO] 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-12-05T22:27:42.5520482Z 2025-12-05 22:27:42,533 [INFO] 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-12-05T22:27:42.5521285Z 2025-12-05 22:27:42,534 [INFO] 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-12-05T22:27:42.5522185Z 2025-12-05 22:27:42,534 [INFO] 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-12-05T22:27:42.5523023Z 2025-12-05 22:27:42,534 [INFO] 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-12-05T22:27:42.5523886Z 2025-12-05 22:27:42,534 [INFO] 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-12-05T22:27:42.5524788Z 2025-12-05 22:27:42,534 [INFO] 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-12-05T22:27:42.5525585Z 2025-12-05 22:27:42,534 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_index_select.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5526617Z 2025-12-05 22:27:42,534 [INFO] 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-12-05T22:27:42.5527387Z 2025-12-05 22:27:42,535 [INFO] 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-12-05T22:27:42.5528275Z 2025-12-05 22:27:42,535 [INFO] 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-12-05T22:27:42.5529062Z 2025-12-05 22:27:42,535 [INFO] 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-12-05T22:27:42.5529907Z 2025-12-05 22:27:42,535 [INFO] 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-12-05T22:27:42.5531017Z 2025-12-05 22:27:42,535 [INFO] 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-12-05T22:27:42.5532092Z 2025-12-05 22:27:42,535 [INFO] 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-12-05T22:27:42.5532845Z 2025-12-05 22:27:42,535 [INFO] 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-12-05T22:27:42.5533895Z 2025-12-05 22:27:42,536 [INFO] 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-12-05T22:27:42.5534750Z 2025-12-05 22:27:42,536 [INFO] 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-12-05T22:27:42.5535622Z 2025-12-05 22:27:42,536 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_max_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5536540Z 2025-12-05 22:27:42,536 [INFO] 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-12-05T22:27:42.5537495Z 2025-12-05 22:27:42,536 [INFO] 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-12-05T22:27:42.5538332Z 2025-12-05 22:27:42,536 [INFO] 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-12-05T22:27:42.5539222Z 2025-12-05 22:27:42,536 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_min_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5540102Z 2025-12-05 22:27:42,537 [INFO] 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-12-05T22:27:42.5540931Z 2025-12-05 22:27:42,537 [INFO] 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-12-05T22:27:42.5541968Z 2025-12-05 22:27:42,537 [INFO] 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-12-05T22:27:42.5542717Z 2025-12-05 22:27:42,537 [INFO] 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-12-05T22:27:42.5543686Z 2025-12-05 22:27:42,537 [INFO] 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-12-05T22:27:42.5544428Z 2025-12-05 22:27:42,537 [INFO] 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-12-05T22:27:42.5545414Z 2025-12-05 22:27:42,537 [INFO] 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-12-05T22:27:42.5546263Z 2025-12-05 22:27:42,537 [INFO] 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-12-05T22:27:42.5547164Z 2025-12-05 22:27:42,538 [INFO] 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-12-05T22:27:42.5548054Z 2025-12-05 22:27:42,538 [INFO] 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-12-05T22:27:42.5548976Z 2025-12-05 22:27:42,538 [INFO] 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-12-05T22:27:42.5549983Z 2025-12-05 22:27:42,538 [INFO] 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-12-05T22:27:42.5550833Z 2025-12-05 22:27:42,538 [INFO] 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-12-05T22:27:42.5551784Z 2025-12-05 22:27:42,538 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_round.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5552664Z 2025-12-05 22:27:42,538 [INFO] 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-12-05T22:27:42.5553557Z 2025-12-05 22:27:42,539 [INFO] 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-12-05T22:27:42.5554428Z 2025-12-05 22:27:42,539 [INFO] 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-12-05T22:27:42.5555271Z 2025-12-05 22:27:42,539 [INFO] 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-12-05T22:27:42.5556277Z 2025-12-05 22:27:42,539 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_sign.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5557055Z 2025-12-05 22:27:42,539 [INFO] 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-12-05T22:27:42.5558060Z 2025-12-05 22:27:42,539 [INFO] 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-12-05T22:27:42.5559042Z 2025-12-05 22:27:42,539 [INFO] 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-12-05T22:27:42.5559905Z 2025-12-05 22:27:42,540 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_slice_scatter.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5560838Z 2025-12-05 22:27:42,540 [INFO] 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-12-05T22:27:42.5561643Z 2025-12-05 22:27:42,540 [INFO] 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-12-05T22:27:42.5562657Z 2025-12-05 22:27:42,540 [INFO] 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-12-05T22:27:42.5563427Z 2025-12-05 22:27:42,540 [INFO] 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-12-05T22:27:42.5564313Z 2025-12-05 22:27:42,540 [INFO] 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-12-05T22:27:42.5565069Z 2025-12-05 22:27:42,540 [INFO] 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-12-05T22:27:42.5565935Z 2025-12-05 22:27:42,541 [INFO] 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-12-05T22:27:42.5566811Z 2025-12-05 22:27:42,541 [INFO] 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-12-05T22:27:42.5567654Z 2025-12-05 22:27:42,541 [INFO] 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-12-05T22:27:42.5568474Z 2025-12-05 22:27:42,541 [INFO] 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-12-05T22:27:42.5569468Z 2025-12-05 22:27:42,541 [INFO] 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-12-05T22:27:42.5570275Z 2025-12-05 22:27:42,541 [INFO] 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-12-05T22:27:42.5571116Z 2025-12-05 22:27:42,541 [INFO] 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-12-05T22:27:42.5571883Z 2025-12-05 22:27:42,542 [INFO] 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-12-05T22:27:42.5572871Z 2025-12-05 22:27:42,542 [INFO] 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-12-05T22:27:42.5573702Z 2025-12-05 22:27:42,542 [INFO] 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-12-05T22:27:42.5574548Z 2025-12-05 22:27:42,542 [INFO] 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-12-05T22:27:42.5575331Z 2025-12-05 22:27:42,542 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders/op_xor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/builders 2025-12-05T22:27:42.5576205Z 2025-12-05 22:27:42,542 [INFO] 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-12-05T22:27:42.5576951Z 2025-12-05 22:27:42,542 [INFO] 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-12-05T22:27:42.5577364Z 2025-12-05 22:27:42,543 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/debugger 2025-12-05T22:27:42.5578128Z 2025-12-05 22:27:42,543 [INFO] 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-12-05T22:27:42.5578467Z 2025-12-05 22:27:42,543 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/partition 2025-12-05T22:27:42.5579364Z 2025-12-05 22:27:42,543 [INFO] 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-12-05T22:27:42.5580176Z 2025-12-05 22:27:42,543 [INFO] 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-12-05T22:27:42.5581109Z 2025-12-05 22:27:42,543 [INFO] 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-12-05T22:27:42.5581450Z 2025-12-05 22:27:42,543 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer 2025-12-05T22:27:42.5582236Z 2025-12-05 22:27:42,544 [INFO] 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-12-05T22:27:42.5583219Z 2025-12-05 22:27:42,544 [INFO] 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-12-05T22:27:42.5583994Z 2025-12-05 22:27:42,544 [INFO] 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-12-05T22:27:42.5584885Z 2025-12-05 22:27:42,544 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/quant_recipe.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer 2025-12-05T22:27:42.5585682Z 2025-12-05 22:27:42,544 [INFO] 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-12-05T22:27:42.5586096Z 2025-12-05 22:27:42,544 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer/observers 2025-12-05T22:27:42.5587133Z 2025-12-05 22:27:42,545 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers/concat_observer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/quantizer/observers 2025-12-05T22:27:42.5588190Z 2025-12-05 22:27:42,545 [INFO] 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-12-05T22:27:42.5589209Z 2025-12-05 22:27:42,545 [INFO] 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-12-05T22:27:42.5589604Z 2025-12-05 22:27:42,545 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/recipes 2025-12-05T22:27:42.5590373Z 2025-12-05 22:27:42,545 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/recipes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/recipes 2025-12-05T22:27:42.5591314Z 2025-12-05 22:27:42,545 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/recipes/qnn_recipe_provider.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/recipes 2025-12-05T22:27:42.5592106Z 2025-12-05 22:27:42,546 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/recipes/qnn_recipe_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/recipes 2025-12-05T22:27:42.5592435Z 2025-12-05 22:27:42,546 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/scripts 2025-12-05T22:27:42.5593313Z 2025-12-05 22:27:42,546 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/scripts/download_qnn_sdk.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/scripts 2025-12-05T22:27:42.5593685Z 2025-12-05 22:27:42,546 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/serialization 2025-12-05T22:27:42.5594588Z 2025-12-05 22:27:42,546 [INFO] 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-12-05T22:27:42.5595515Z 2025-12-05 22:27:42,546 [INFO] 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-12-05T22:27:42.5596977Z 2025-12-05 22:27:42,547 [INFO] 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-12-05T22:27:42.5597304Z 2025-12-05 22:27:42,547 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/tests 2025-12-05T22:27:42.5598152Z 2025-12-05 22:27:42,547 [INFO] 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-12-05T22:27:42.5599098Z 2025-12-05 22:27:42,547 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests/test_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/tests 2025-12-05T22:27:42.5600026Z 2025-12-05 22:27:42,547 [INFO] 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-12-05T22:27:42.5600839Z 2025-12-05 22:27:42,548 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests/tester.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/qualcomm/tests 2025-12-05T22:27:42.5601730Z 2025-12-05 22:27:42,548 [INFO] 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-12-05T22:27:42.5602142Z 2025-12-05 22:27:42,548 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/utils 2025-12-05T22:27:42.5603036Z 2025-12-05 22:27:42,548 [INFO] 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-12-05T22:27:42.5603825Z 2025-12-05 22:27:42,549 [INFO] 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-12-05T22:27:42.5604211Z 2025-12-05 22:27:42,549 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/samsung 2025-12-05T22:27:42.5605019Z 2025-12-05 22:27:42,549 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/enn_preprocess.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung 2025-12-05T22:27:42.5605350Z 2025-12-05 22:27:42,549 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/samsung/_passes 2025-12-05T22:27:42.5606244Z 2025-12-05 22:27:42,549 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes/annotate_qparams.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/_passes 2025-12-05T22:27:42.5607170Z 2025-12-05 22:27:42,550 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes/annotate_scalar_parameters.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/_passes 2025-12-05T22:27:42.5608087Z 2025-12-05 22:27:42,550 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes/conv1d_to_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/_passes 2025-12-05T22:27:42.5609006Z 2025-12-05 22:27:42,550 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes/customized_constant_prop.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/_passes 2025-12-05T22:27:42.5609839Z 2025-12-05 22:27:42,550 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes/fold_qdq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/_passes 2025-12-05T22:27:42.5610783Z 2025-12-05 22:27:42,550 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes/fuse_conv_act.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/_passes 2025-12-05T22:27:42.5611584Z 2025-12-05 22:27:42,550 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes/insert_qdq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/_passes 2025-12-05T22:27:42.5612478Z 2025-12-05 22:27:42,551 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes/remove_useless_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/_passes 2025-12-05T22:27:42.5613326Z 2025-12-05 22:27:42,551 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes/replace_scalar_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/_passes 2025-12-05T22:27:42.5614174Z 2025-12-05 22:27:42,551 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/_passes/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/_passes 2025-12-05T22:27:42.5614617Z 2025-12-05 22:27:42,551 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/samsung/builders 2025-12-05T22:27:42.5615499Z 2025-12-05 22:27:42,551 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5616338Z 2025-12-05 22:27:42,552 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/node_visitor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5617285Z 2025-12-05 22:27:42,552 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5618325Z 2025-12-05 22:27:42,552 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5619293Z 2025-12-05 22:27:42,552 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_batch_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5620075Z 2025-12-05 22:27:42,552 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_bmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5620979Z 2025-12-05 22:27:42,552 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5621794Z 2025-12-05 22:27:42,552 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5622719Z 2025-12-05 22:27:42,553 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_constant_pad_nd.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5623597Z 2025-12-05 22:27:42,553 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5624438Z 2025-12-05 22:27:42,553 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_dequantize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5625321Z 2025-12-05 22:27:42,553 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5626293Z 2025-12-05 22:27:42,553 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_embedding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5627248Z 2025-12-05 22:27:42,553 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_expand_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5628120Z 2025-12-05 22:27:42,554 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_gelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5629070Z 2025-12-05 22:27:42,554 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_getitem.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5630003Z 2025-12-05 22:27:42,554 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_hardsigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5630838Z 2025-12-05 22:27:42,554 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_hardswish.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5631804Z 2025-12-05 22:27:42,554 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_hardtanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5632849Z 2025-12-05 22:27:42,554 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_layer_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5633686Z 2025-12-05 22:27:42,554 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_leaky_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5634579Z 2025-12-05 22:27:42,554 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5635416Z 2025-12-05 22:27:42,555 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_log_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5636370Z 2025-12-05 22:27:42,555 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_max_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5637182Z 2025-12-05 22:27:42,555 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_maximum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5638085Z 2025-12-05 22:27:42,555 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_mean_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5638962Z 2025-12-05 22:27:42,555 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_minimum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5639771Z 2025-12-05 22:27:42,555 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_mul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5640657Z 2025-12-05 22:27:42,555 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5641611Z 2025-12-05 22:27:42,556 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_pixel_shuffle.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5642557Z 2025-12-05 22:27:42,556 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_quantize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5643405Z 2025-12-05 22:27:42,556 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5662620Z 2025-12-05 22:27:42,556 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_reshape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5663480Z 2025-12-05 22:27:42,556 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5664362Z 2025-12-05 22:27:42,556 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_select.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5665294Z 2025-12-05 22:27:42,557 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_slice_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5666250Z 2025-12-05 22:27:42,557 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5667315Z 2025-12-05 22:27:42,557 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_sqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5668327Z 2025-12-05 22:27:42,557 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_squeeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5669287Z 2025-12-05 22:27:42,557 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5670254Z 2025-12-05 22:27:42,557 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_to_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5671252Z 2025-12-05 22:27:42,557 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_unsqueeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5672231Z 2025-12-05 22:27:42,558 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_upsample_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5673282Z 2025-12-05 22:27:42,558 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/op_upsample_nearest2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5674232Z 2025-12-05 22:27:42,558 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/builders/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/builders 2025-12-05T22:27:42.5674657Z 2025-12-05 22:27:42,558 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/samsung/partition 2025-12-05T22:27:42.5675713Z 2025-12-05 22:27:42,558 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/partition/enn_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/partition 2025-12-05T22:27:42.5676119Z 2025-12-05 22:27:42,558 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/samsung/quantizer 2025-12-05T22:27:42.5677192Z 2025-12-05 22:27:42,559 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/quantizer/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/quantizer 2025-12-05T22:27:42.5678159Z 2025-12-05 22:27:42,559 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/quantizer/annotator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/quantizer 2025-12-05T22:27:42.5679183Z 2025-12-05 22:27:42,559 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/quantizer/qconfig.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/quantizer 2025-12-05T22:27:42.5680201Z 2025-12-05 22:27:42,559 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/quantizer/quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/quantizer 2025-12-05T22:27:42.5680647Z 2025-12-05 22:27:42,559 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/samsung/serialization 2025-12-05T22:27:42.5681669Z 2025-12-05 22:27:42,559 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/serialization/compile_options.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/serialization 2025-12-05T22:27:42.5682738Z 2025-12-05 22:27:42,560 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/serialization/enn_graph_schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/serialization 2025-12-05T22:27:42.5683921Z 2025-12-05 22:27:42,560 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/serialization/compile_options_def.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/serialization 2025-12-05T22:27:42.5684431Z 2025-12-05 22:27:42,560 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/samsung/utils 2025-12-05T22:27:42.5685315Z 2025-12-05 22:27:42,560 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/utils/constants.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/utils 2025-12-05T22:27:42.5686228Z 2025-12-05 22:27:42,560 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/utils/export_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/utils 2025-12-05T22:27:42.5687076Z 2025-12-05 22:27:42,560 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/utils/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/utils 2025-12-05T22:27:42.5687548Z 2025-12-05 22:27:42,561 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/samsung/test 2025-12-05T22:27:42.5687926Z 2025-12-05 22:27:42,561 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5688818Z 2025-12-05 22:27:42,561 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5689663Z 2025-12-05 22:27:42,561 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_avg_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5690614Z 2025-12-05 22:27:42,561 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_batch_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5691480Z 2025-12-05 22:27:42,562 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_bmm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5692372Z 2025-12-05 22:27:42,562 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5693435Z 2025-12-05 22:27:42,562 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5694328Z 2025-12-05 22:27:42,562 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_constant_pad_nd.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5695263Z 2025-12-05 22:27:42,562 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5696263Z 2025-12-05 22:27:42,562 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5697205Z 2025-12-05 22:27:42,562 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_embedding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5698158Z 2025-12-05 22:27:42,563 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_expand_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5699086Z 2025-12-05 22:27:42,563 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_gelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5723715Z 2025-12-05 22:27:42,563 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_leaky_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5724704Z 2025-12-05 22:27:42,563 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5725614Z 2025-12-05 22:27:42,563 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_log_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5726519Z 2025-12-05 22:27:42,563 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_max_pool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5727335Z 2025-12-05 22:27:42,564 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_mean_dim.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5728266Z 2025-12-05 22:27:42,564 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_minimum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5729162Z 2025-12-05 22:27:42,564 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_mul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5730119Z 2025-12-05 22:27:42,564 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5731116Z 2025-12-05 22:27:42,564 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_pixel_shuffle.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5731964Z 2025-12-05 22:27:42,564 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5732987Z 2025-12-05 22:27:42,564 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_reshape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5733952Z 2025-12-05 22:27:42,565 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5734793Z 2025-12-05 22:27:42,565 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_select.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5735758Z 2025-12-05 22:27:42,565 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_slice_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5736784Z 2025-12-05 22:27:42,565 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_softmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5737600Z 2025-12-05 22:27:42,565 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_sqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5738547Z 2025-12-05 22:27:42,565 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_squeeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5739475Z 2025-12-05 22:27:42,565 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5740421Z 2025-12-05 22:27:42,566 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_to_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5741412Z 2025-12-05 22:27:42,566 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_unsqueeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5742421Z 2025-12-05 22:27:42,566 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_upsample_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5743328Z 2025-12-05 22:27:42,566 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/ops/test_upsample_nearest2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/ops 2025-12-05T22:27:42.5743715Z 2025-12-05 22:27:42,566 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/samsung/test/tester 2025-12-05T22:27:42.5744660Z 2025-12-05 22:27:42,566 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/tester/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/tester 2025-12-05T22:27:42.5745699Z 2025-12-05 22:27:42,567 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/samsung/test/tester/samsung_tester.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/samsung/test/tester 2025-12-05T22:27:42.5746029Z 2025-12-05 22:27:42,567 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms 2025-12-05T22:27:42.5746870Z 2025-12-05 22:27:42,567 [INFO] 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-12-05T22:27:42.5747679Z 2025-12-05 22:27:42,567 [INFO] 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-12-05T22:27:42.5748824Z 2025-12-05 22:27:42,567 [INFO] 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-12-05T22:27:42.5749615Z 2025-12-05 22:27:42,567 [INFO] 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-12-05T22:27:42.5750572Z 2025-12-05 22:27:42,567 [INFO] 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-12-05T22:27:42.5751583Z 2025-12-05 22:27:42,568 [INFO] 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-12-05T22:27:42.5752378Z 2025-12-05 22:27:42,568 [INFO] 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-12-05T22:27:42.5753257Z 2025-12-05 22:27:42,568 [INFO] 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-12-05T22:27:42.5754037Z 2025-12-05 22:27:42,568 [INFO] 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-12-05T22:27:42.5754938Z 2025-12-05 22:27:42,568 [INFO] 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-12-05T22:27:42.5756008Z 2025-12-05 22:27:42,568 [INFO] 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-12-05T22:27:42.5756819Z 2025-12-05 22:27:42,569 [INFO] 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-12-05T22:27:42.5757907Z 2025-12-05 22:27:42,569 [INFO] 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-12-05T22:27:42.5759822Z 2025-12-05 22:27:42,569 [INFO] 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-12-05T22:27:42.5795626Z 2025-12-05 22:27:42,569 [INFO] 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-12-05T22:27:42.5798007Z 2025-12-05 22:27:42,569 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms/test 2025-12-05T22:27:42.5800534Z 2025-12-05 22:27:42,569 [INFO] 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-12-05T22:27:42.5804263Z 2025-12-05 22:27:42,570 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test/test_create_mutable_buffer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms/test 2025-12-05T22:27:42.5807669Z 2025-12-05 22:27:42,570 [INFO] 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-12-05T22:27:42.5811014Z 2025-12-05 22:27:42,570 [INFO] 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-12-05T22:27:42.5814373Z 2025-12-05 22:27:42,570 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test/test_remove_clone_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/transforms/test 2025-12-05T22:27:42.5816675Z 2025-12-05 22:27:42,570 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan 2025-12-05T22:27:42.5818891Z 2025-12-05 22:27:42,570 [INFO] 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-12-05T22:27:42.5821605Z 2025-12-05 22:27:42,571 [INFO] 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-12-05T22:27:42.5824374Z 2025-12-05 22:27:42,571 [INFO] 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-12-05T22:27:42.5827078Z 2025-12-05 22:27:42,571 [INFO] 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-12-05T22:27:42.5829931Z 2025-12-05 22:27:42,571 [INFO] 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-12-05T22:27:42.5832098Z 2025-12-05 22:27:42,571 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/_passes 2025-12-05T22:27:42.5834353Z 2025-12-05 22:27:42,572 [INFO] 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-12-05T22:27:42.5837444Z 2025-12-05 22:27:42,572 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/fold_qdq.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-12-05T22:27:42.5840416Z 2025-12-05 22:27:42,572 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes/fuse_patterns.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/_passes 2025-12-05T22:27:42.5843478Z 2025-12-05 22:27:42,572 [INFO] 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-12-05T22:27:42.5846589Z 2025-12-05 22:27:42,572 [INFO] 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-12-05T22:27:42.5849681Z 2025-12-05 22:27:42,572 [INFO] 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-12-05T22:27:42.5852761Z 2025-12-05 22:27:42,573 [INFO] 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-12-05T22:27:42.5855936Z 2025-12-05 22:27:42,573 [INFO] 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-12-05T22:27:42.5859117Z 2025-12-05 22:27:42,573 [INFO] 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-12-05T22:27:42.5861398Z 2025-12-05 22:27:42,573 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/partitioner 2025-12-05T22:27:42.5863857Z 2025-12-05 22:27:42,573 [INFO] 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-12-05T22:27:42.5866499Z 2025-12-05 22:27:42,573 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/patterns 2025-12-05T22:27:42.5868779Z 2025-12-05 22:27:42,574 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/patterns 2025-12-05T22:27:42.5871882Z 2025-12-05 22:27:42,574 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns/pattern_registry.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/patterns 2025-12-05T22:27:42.5875113Z 2025-12-05 22:27:42,574 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns/quantized_binary.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/patterns 2025-12-05T22:27:42.5878376Z 2025-12-05 22:27:42,574 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns/quantized_convolution.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/patterns 2025-12-05T22:27:42.5881597Z 2025-12-05 22:27:42,574 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns/quantized_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/patterns 2025-12-05T22:27:42.5884682Z 2025-12-05 22:27:42,574 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns/rope.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/patterns 2025-12-05T22:27:42.5887649Z 2025-12-05 22:27:42,574 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns/sdpa.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/patterns 2025-12-05T22:27:42.5890843Z 2025-12-05 22:27:42,575 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/patterns/select_as_symint.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/patterns 2025-12-05T22:27:42.5893186Z 2025-12-05 22:27:42,575 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/quantizer 2025-12-05T22:27:42.5895523Z 2025-12-05 22:27:42,575 [INFO] 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-12-05T22:27:42.5898807Z 2025-12-05 22:27:42,575 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer/vulkan_quantizer_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/quantizer 2025-12-05T22:27:42.5901182Z 2025-12-05 22:27:42,575 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime 2025-12-05T22:27:42.5903453Z 2025-12-05 22:27:42,576 [INFO] 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-12-05T22:27:42.5905762Z 2025-12-05 22:27:42,576 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph 2025-12-05T22:27:42.5907345Z 2025-12-05 22:27:42,576 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops 2025-12-05T22:27:42.5909082Z 2025-12-05 22:27:42,576 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.5911839Z 2025-12-05 22:27:42,576 [INFO] 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-12-05T22:27:42.5915665Z 2025-12-05 22:27:42,576 [INFO] 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-12-05T22:27:42.5923107Z 2025-12-05 22:27:42,577 [INFO] 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-12-05T22:27:42.5925487Z 2025-12-05 22:27:42,577 [INFO] 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-12-05T22:27:42.5927531Z 2025-12-05 22:27:42,577 [INFO] 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-12-05T22:27:42.5929761Z 2025-12-05 22:27:42,577 [INFO] 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-12-05T22:27:42.5931866Z 2025-12-05 22:27:42,577 [INFO] 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-12-05T22:27:42.5934138Z 2025-12-05 22:27:42,577 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/binary_q8ta_q8ta_q8to.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.5936312Z 2025-12-05 22:27:42,578 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/binary_scalar_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.5938843Z 2025-12-05 22:27:42,578 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/binary_scalar_texture.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.5941309Z 2025-12-05 22:27:42,578 [INFO] 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-12-05T22:27:42.5943632Z 2025-12-05 22:27:42,578 [INFO] 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-12-05T22:27:42.5946000Z 2025-12-05 22:27:42,578 [INFO] 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-12-05T22:27:42.5948201Z 2025-12-05 22:27:42,578 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/choose_qparams_per_row.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.5950575Z 2025-12-05 22:27:42,578 [INFO] 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-12-05T22:27:42.5952738Z 2025-12-05 22:27:42,579 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/col2im.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.5955016Z 2025-12-05 22:27:42,579 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/concat_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.5957207Z 2025-12-05 22:27:42,579 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/concat_texture.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.5959554Z 2025-12-05 22:27:42,579 [INFO] 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-12-05T22:27:42.5961857Z 2025-12-05 22:27:42,579 [INFO] 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-12-05T22:27:42.5963999Z 2025-12-05 22:27:42,579 [INFO] 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-12-05T22:27:42.5966357Z 2025-12-05 22:27:42,579 [INFO] 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-12-05T22:27:42.5981547Z 2025-12-05 22:27:42,579 [INFO] 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-12-05T22:27:42.5983857Z 2025-12-05 22:27:42,580 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_q8ta_q8csw_q8to.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.5986126Z 2025-12-05 22:27:42,580 [INFO] 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-12-05T22:27:42.5988395Z 2025-12-05 22:27:42,580 [INFO] 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-12-05T22:27:42.5990628Z 2025-12-05 22:27:42,580 [INFO] 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-12-05T22:27:42.5992771Z 2025-12-05 22:27:42,580 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_q8ta_q8csw_q8to_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.5994909Z 2025-12-05 22:27:42,580 [INFO] 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-12-05T22:27:42.5997142Z 2025-12-05 22:27:42,580 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_q8csw_linear_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.5999312Z 2025-12-05 22:27:42,580 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_q8ta_q8csw_linear_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6001582Z 2025-12-05 22:27:42,580 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_q8ta_q8csw_q8to.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6003822Z 2025-12-05 22:27:42,581 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_q8ta_q8csw_q8to_linear_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6006134Z 2025-12-05 22:27:42,581 [INFO] 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-12-05T22:27:42.6008364Z 2025-12-05 22:27:42,581 [INFO] 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-12-05T22:27:42.6010605Z 2025-12-05 22:27:42,581 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/embedding_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6012813Z 2025-12-05 22:27:42,581 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/embedding_legacy.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6014920Z 2025-12-05 22:27:42,581 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/embedding_texture.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6017124Z 2025-12-05 22:27:42,581 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/expand_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6019704Z 2025-12-05 22:27:42,581 [INFO] 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-12-05T22:27:42.6021926Z 2025-12-05 22:27:42,582 [INFO] 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-12-05T22:27:42.6024057Z 2025-12-05 22:27:42,582 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/gather_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6026326Z 2025-12-05 22:27:42,582 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/gather_texture.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6028503Z 2025-12-05 22:27:42,582 [INFO] 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-12-05T22:27:42.6030893Z 2025-12-05 22:27:42,582 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/group_norm_reduce_texture.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6033302Z 2025-12-05 22:27:42,582 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/group_norm_texture.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6035465Z 2025-12-05 22:27:42,582 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/im2col.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6037795Z 2025-12-05 22:27:42,582 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/im2col_packed_int8.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6040112Z 2025-12-05 22:27:42,583 [INFO] 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-12-05T22:27:42.6042325Z 2025-12-05 22:27:42,583 [INFO] 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-12-05T22:27:42.6044694Z 2025-12-05 22:27:42,583 [INFO] 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-12-05T22:27:42.6047003Z 2025-12-05 22:27:42,583 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_dq8ca_q4gsw_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6049359Z 2025-12-05 22:27:42,583 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_q4gsw_coop.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6051714Z 2025-12-05 22:27:42,583 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_q4gsw_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6054067Z 2025-12-05 22:27:42,583 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_q8csw_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6056525Z 2025-12-05 22:27:42,584 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/linear_q8ta_q8csw_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6058897Z 2025-12-05 22:27:42,584 [INFO] 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-12-05T22:27:42.6061139Z 2025-12-05 22:27:42,584 [INFO] 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-12-05T22:27:42.6063469Z 2025-12-05 22:27:42,584 [INFO] 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-12-05T22:27:42.6065666Z 2025-12-05 22:27:42,584 [INFO] 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-12-05T22:27:42.6067849Z 2025-12-05 22:27:42,584 [INFO] 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-12-05T22:27:42.6070387Z 2025-12-05 22:27:42,584 [INFO] 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-12-05T22:27:42.6072641Z 2025-12-05 22:27:42,584 [INFO] 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-12-05T22:27:42.6074869Z 2025-12-05 22:27:42,584 [INFO] 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-12-05T22:27:42.6077036Z 2025-12-05 22:27:42,585 [INFO] 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-12-05T22:27:42.6079360Z 2025-12-05 22:27:42,585 [INFO] 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-12-05T22:27:42.6081814Z 2025-12-05 22:27:42,585 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/pack_q4_linear_weight.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6084179Z 2025-12-05 22:27:42,585 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/pack_q8_conv2d_dw_weights.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6086531Z 2025-12-05 22:27:42,585 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/pack_q8_conv2d_weights.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6088894Z 2025-12-05 22:27:42,585 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/pack_q8_linear_weight.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6094759Z 2025-12-05 22:27:42,585 [INFO] 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-12-05T22:27:42.6097547Z 2025-12-05 22:27:42,585 [INFO] 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-12-05T22:27:42.6100242Z 2025-12-05 22:27:42,586 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/permute_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6102557Z 2025-12-05 22:27:42,586 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/permute_texture.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6104866Z 2025-12-05 22:27:42,586 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/quantize_and_pack_4h4w.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6107288Z 2025-12-05 22:27:42,586 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/quantize_and_pack_4h4w_with_group_sums.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6109803Z 2025-12-05 22:27:42,586 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/quantize_and_pack_4w4c.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6112187Z 2025-12-05 22:27:42,586 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/quantize_and_pack_im2col.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6114475Z 2025-12-05 22:27:42,586 [INFO] 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-12-05T22:27:42.6116766Z 2025-12-05 22:27:42,586 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/reduce2d.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6119245Z 2025-12-05 22:27:42,587 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/reduce_per_row_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6121436Z 2025-12-05 22:27:42,587 [INFO] 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-12-05T22:27:42.6123716Z 2025-12-05 22:27:42,587 [INFO] 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-12-05T22:27:42.6126032Z 2025-12-05 22:27:42,587 [INFO] 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-12-05T22:27:42.6128368Z 2025-12-05 22:27:42,587 [INFO] 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-12-05T22:27:42.6130778Z 2025-12-05 22:27:42,587 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/scalar_tensor.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6133155Z 2025-12-05 22:27:42,587 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weights_softmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6135584Z 2025-12-05 22:27:42,587 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_compute_attn_weights_coop.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6138041Z 2025-12-05 22:27:42,588 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_compute_attn_weights_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6140454Z 2025-12-05 22:27:42,588 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_compute_out_coop.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6142759Z 2025-12-05 22:27:42,588 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_compute_out_tiled.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6145088Z 2025-12-05 22:27:42,588 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_kv_cache_update.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6147379Z 2025-12-05 22:27:42,588 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/set_zero.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6150213Z 2025-12-05 22:27:42,588 [INFO] 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-12-05T22:27:42.6152864Z 2025-12-05 22:27:42,588 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/split_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6155493Z 2025-12-05 22:27:42,588 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/split_texture.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6158012Z 2025-12-05 22:27:42,589 [INFO] 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-12-05T22:27:42.6160437Z 2025-12-05 22:27:42,589 [INFO] 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-12-05T22:27:42.6162931Z 2025-12-05 22:27:42,589 [INFO] 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-12-05T22:27:42.6165413Z 2025-12-05 22:27:42,589 [INFO] 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-12-05T22:27:42.6167961Z 2025-12-05 22:27:42,589 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/unpack_4w4c_and_dequantize.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6170739Z 2025-12-05 22:27:42,589 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/update_concat_offset.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6173328Z 2025-12-05 22:27:42,589 [INFO] 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-12-05T22:27:42.6175702Z 2025-12-05 22:27:42,589 [INFO] 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-12-05T22:27:42.6178073Z 2025-12-05 22:27:42,590 [INFO] 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-12-05T22:27:42.6180584Z 2025-12-05 22:27:42,590 [INFO] 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-12-05T22:27:42.6183094Z 2025-12-05 22:27:42,590 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/view_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6185503Z 2025-12-05 22:27:42,590 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl/view_convert_buffer.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/runtime/graph/ops/glsl 2025-12-05T22:27:42.6187848Z 2025-12-05 22:27:42,590 [INFO] 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-12-05T22:27:42.6189482Z 2025-12-05 22:27:42,590 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/serialization 2025-12-05T22:27:42.6191081Z 2025-12-05 22:27:42,590 [INFO] 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-12-05T22:27:42.6193099Z 2025-12-05 22:27:42,591 [INFO] 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-12-05T22:27:42.6195144Z 2025-12-05 22:27:42,591 [INFO] 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-12-05T22:27:42.6197236Z 2025-12-05 22:27:42,591 [INFO] 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-12-05T22:27:42.6198666Z 2025-12-05 22:27:42,591 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test 2025-12-05T22:27:42.6200026Z 2025-12-05 22:27:42,591 [INFO] 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-12-05T22:27:42.6202019Z 2025-12-05 22:27:42,591 [INFO] 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-12-05T22:27:42.6203951Z 2025-12-05 22:27:42,591 [INFO] 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-12-05T22:27:42.6205838Z 2025-12-05 22:27:42,592 [INFO] 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-12-05T22:27:42.6207503Z 2025-12-05 22:27:42,592 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/tester.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test 2025-12-05T22:27:42.6209454Z 2025-12-05 22:27:42,592 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test 2025-12-05T22:27:42.6210927Z 2025-12-05 22:27:42,592 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests 2025-12-05T22:27:42.6212380Z 2025-12-05 22:27:42,592 [INFO] 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-12-05T22:27:42.6214222Z 2025-12-05 22:27:42,592 [INFO] 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-12-05T22:27:42.6216293Z 2025-12-05 22:27:42,593 [INFO] 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-12-05T22:27:42.6217925Z 2025-12-05 22:27:42,593 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests/utils 2025-12-05T22:27:42.6219687Z 2025-12-05 22:27:42,593 [INFO] 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-12-05T22:27:42.6221942Z 2025-12-05 22:27:42,593 [INFO] 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-12-05T22:27:42.6224278Z 2025-12-05 22:27:42,593 [INFO] 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-12-05T22:27:42.6226270Z 2025-12-05 22:27:42,593 [INFO] 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-12-05T22:27:42.6228510Z 2025-12-05 22:27:42,593 [INFO] 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-12-05T22:27:42.6230622Z 2025-12-05 22:27:42,594 [INFO] 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-12-05T22:27:42.6232120Z 2025-12-05 22:27:42,594 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/glsl 2025-12-05T22:27:42.6233433Z 2025-12-05 22:27:42,594 [INFO] 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-12-05T22:27:42.6235429Z 2025-12-05 22:27:42,594 [INFO] 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-12-05T22:27:42.6237444Z 2025-12-05 22:27:42,594 [INFO] 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-12-05T22:27:42.6239147Z 2025-12-05 22:27:42,594 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/custom_ops 2025-12-05T22:27:42.6240059Z 2025-12-05 22:27:42,594 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/custom_ops/glsl 2025-12-05T22:27:42.6241556Z 2025-12-05 22:27:42,595 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/custom_ops/glsl/add.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/test/custom_ops/glsl 2025-12-05T22:27:42.6243007Z 2025-12-05 22:27:42,595 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party 2025-12-05T22:27:42.6243986Z 2025-12-05 22:27:42,595 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/volk 2025-12-05T22:27:42.6245450Z 2025-12-05 22:27:42,595 [INFO] 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-12-05T22:27:42.6246958Z 2025-12-05 22:27:42,595 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers 2025-12-05T22:27:42.6248120Z 2025-12-05 22:27:42,595 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-12-05T22:27:42.6249909Z 2025-12-05 22:27:42,595 [INFO] 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-12-05T22:27:42.6252484Z 2025-12-05 22:27:42,596 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/base_generator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-12-05T22:27:42.6255028Z 2025-12-05 22:27:42,596 [INFO] 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-12-05T22:27:42.6257613Z 2025-12-05 22:27:42,596 [INFO] 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-12-05T22:27:42.6260158Z 2025-12-05 22:27:42,596 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/parse_dependency.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-12-05T22:27:42.6262647Z 2025-12-05 22:27:42,596 [INFO] 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-12-05T22:27:42.6265035Z 2025-12-05 22:27:42,596 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/stripAPI.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-12-05T22:27:42.6267541Z 2025-12-05 22:27:42,597 [INFO] 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-12-05T22:27:42.6270274Z 2025-12-05 22:27:42,597 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vulkan_object.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-12-05T22:27:42.6272531Z 2025-12-05 22:27:42,597 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-12-05T22:27:42.6274701Z 2025-12-05 22:27:42,597 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/conventions.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-12-05T22:27:42.6277593Z 2025-12-05 22:27:42,597 [INFO] 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-12-05T22:27:42.6279568Z 2025-12-05 22:27:42,597 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator 2025-12-05T22:27:42.6280903Z 2025-12-05 22:27:42,598 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools 2025-12-05T22:27:42.6282327Z 2025-12-05 22:27:42,598 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-12-05T22:27:42.6284774Z 2025-12-05 22:27:42,598 [INFO] 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-12-05T22:27:42.6286797Z 2025-12-05 22:27:42,598 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools 2025-12-05T22:27:42.6287766Z 2025-12-05 22:27:42,598 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo 2025-12-05T22:27:42.6288872Z 2025-12-05 22:27:42,598 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-12-05T22:27:42.6290515Z 2025-12-05 22:27:42,598 [INFO] 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-12-05T22:27:42.6292986Z 2025-12-05 22:27:42,599 [INFO] 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-12-05T22:27:42.6295274Z 2025-12-05 22:27:42,599 [INFO] 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-12-05T22:27:42.6297504Z 2025-12-05 22:27:42,599 [INFO] 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-12-05T22:27:42.6299903Z 2025-12-05 22:27:42,599 [INFO] 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-12-05T22:27:42.6302291Z 2025-12-05 22:27:42,599 [INFO] 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-12-05T22:27:42.6303825Z 2025-12-05 22:27:42,599 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack 2025-12-05T22:27:42.6305149Z 2025-12-05 22:27:42,599 [INFO] 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-12-05T22:27:42.6306891Z 2025-12-05 22:27:42,600 [INFO] 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-12-05T22:27:42.6308535Z 2025-12-05 22:27:42,600 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/_passes 2025-12-05T22:27:42.6309975Z 2025-12-05 22:27:42,600 [INFO] 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-12-05T22:27:42.6312096Z 2025-12-05 22:27:42,600 [INFO] 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-12-05T22:27:42.6314191Z 2025-12-05 22:27:42,600 [INFO] 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-12-05T22:27:42.6316262Z 2025-12-05 22:27:42,600 [INFO] 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-12-05T22:27:42.6318426Z 2025-12-05 22:27:42,600 [INFO] 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-12-05T22:27:42.6320625Z 2025-12-05 22:27:42,601 [INFO] 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-12-05T22:27:42.6322495Z 2025-12-05 22:27:42,601 [INFO] 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-12-05T22:27:42.6324381Z 2025-12-05 22:27:42,601 [INFO] 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-12-05T22:27:42.6326226Z 2025-12-05 22:27:42,601 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/fuse_batch_norm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-12-05T22:27:42.6328211Z 2025-12-05 22:27:42,601 [INFO] 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-12-05T22:27:42.6330120Z 2025-12-05 22:27:42,601 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/propagate_custom_meta_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-12-05T22:27:42.6332030Z 2025-12-05 22:27:42,601 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes/remove_redundant_copy_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/_passes 2025-12-05T22:27:42.6333963Z 2025-12-05 22:27:42,602 [INFO] 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-12-05T22:27:42.6335291Z 2025-12-05 22:27:42,602 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/operators 2025-12-05T22:27:42.6336639Z 2025-12-05 22:27:42,602 [INFO] 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-12-05T22:27:42.6338465Z 2025-12-05 22:27:42,602 [INFO] 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-12-05T22:27:42.6340289Z 2025-12-05 22:27:42,602 [INFO] 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-12-05T22:27:42.6342257Z 2025-12-05 22:27:42,602 [INFO] 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-12-05T22:27:42.6344043Z 2025-12-05 22:27:42,602 [INFO] 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-12-05T22:27:42.6345878Z 2025-12-05 22:27:42,603 [INFO] 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-12-05T22:27:42.6347729Z 2025-12-05 22:27:42,603 [INFO] 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-12-05T22:27:42.6349574Z 2025-12-05 22:27:42,603 [INFO] 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-12-05T22:27:42.6351360Z 2025-12-05 22:27:42,603 [INFO] 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-12-05T22:27:42.6353241Z 2025-12-05 22:27:42,603 [INFO] 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-12-05T22:27:42.6355033Z 2025-12-05 22:27:42,603 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_clone.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-12-05T22:27:42.6356834Z 2025-12-05 22:27:42,603 [INFO] 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-12-05T22:27:42.6358606Z 2025-12-05 22:27:42,603 [INFO] 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-12-05T22:27:42.6360613Z 2025-12-05 22:27:42,604 [INFO] 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-12-05T22:27:42.6362587Z 2025-12-05 22:27:42,604 [INFO] 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-12-05T22:27:42.6364578Z 2025-12-05 22:27:42,604 [INFO] 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-12-05T22:27:42.6366396Z 2025-12-05 22:27:42,604 [INFO] 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-12-05T22:27:42.6368277Z 2025-12-05 22:27:42,604 [INFO] 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-12-05T22:27:42.6370078Z 2025-12-05 22:27:42,604 [INFO] 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-12-05T22:27:42.6371982Z 2025-12-05 22:27:42,604 [INFO] 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-12-05T22:27:42.6373952Z 2025-12-05 22:27:42,604 [INFO] 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-12-05T22:27:42.6375824Z 2025-12-05 22:27:42,605 [INFO] 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-12-05T22:27:42.6377702Z 2025-12-05 22:27:42,605 [INFO] 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-12-05T22:27:42.6379517Z 2025-12-05 22:27:42,605 [INFO] 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-12-05T22:27:42.6381520Z 2025-12-05 22:27:42,605 [INFO] 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-12-05T22:27:42.6383420Z 2025-12-05 22:27:42,605 [INFO] 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-12-05T22:27:42.6385255Z 2025-12-05 22:27:42,605 [INFO] 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-12-05T22:27:42.6387607Z 2025-12-05 22:27:42,605 [INFO] 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-12-05T22:27:42.6389695Z 2025-12-05 22:27:42,605 [INFO] 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-12-05T22:27:42.6391819Z 2025-12-05 22:27:42,606 [INFO] 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-12-05T22:27:42.6393867Z 2025-12-05 22:27:42,606 [INFO] 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-12-05T22:27:42.6395880Z 2025-12-05 22:27:42,606 [INFO] 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-12-05T22:27:42.6397877Z 2025-12-05 22:27:42,606 [INFO] 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-12-05T22:27:42.6399852Z 2025-12-05 22:27:42,606 [INFO] 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-12-05T22:27:42.6401926Z 2025-12-05 22:27:42,606 [INFO] 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-12-05T22:27:42.6403879Z 2025-12-05 22:27:42,606 [INFO] 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-12-05T22:27:42.6405882Z 2025-12-05 22:27:42,606 [INFO] 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-12-05T22:27:42.6407967Z 2025-12-05 22:27:42,607 [INFO] 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-12-05T22:27:42.6409916Z 2025-12-05 22:27:42,607 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_sin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-12-05T22:27:42.6412010Z 2025-12-05 22:27:42,607 [INFO] 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-12-05T22:27:42.6413919Z 2025-12-05 22:27:42,607 [INFO] 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-12-05T22:27:42.6415920Z 2025-12-05 22:27:42,607 [INFO] 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-12-05T22:27:42.6418016Z 2025-12-05 22:27:42,607 [INFO] 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-12-05T22:27:42.6420067Z 2025-12-05 22:27:42,607 [INFO] 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-12-05T22:27:42.6422192Z 2025-12-05 22:27:42,607 [INFO] 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-12-05T22:27:42.6424183Z 2025-12-05 22:27:42,608 [INFO] 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-12-05T22:27:42.6426451Z 2025-12-05 22:27:42,608 [INFO] 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-12-05T22:27:42.6428616Z 2025-12-05 22:27:42,608 [INFO] 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-12-05T22:27:42.6430650Z 2025-12-05 22:27:42,608 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_tanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-12-05T22:27:42.6432693Z 2025-12-05 22:27:42,608 [INFO] 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-12-05T22:27:42.6434925Z 2025-12-05 22:27:42,608 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators/op_view_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/operators 2025-12-05T22:27:42.6436872Z 2025-12-05 22:27:42,608 [INFO] 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-12-05T22:27:42.6438413Z 2025-12-05 22:27:42,608 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition 2025-12-05T22:27:42.6440016Z 2025-12-05 22:27:42,609 [INFO] 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-12-05T22:27:42.6441591Z 2025-12-05 22:27:42,609 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/config 2025-12-05T22:27:42.6443341Z 2025-12-05 22:27:42,609 [INFO] 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-12-05T22:27:42.6445466Z 2025-12-05 22:27:42,609 [INFO] 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-12-05T22:27:42.6447701Z 2025-12-05 22:27:42,609 [INFO] 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-12-05T22:27:42.6449862Z 2025-12-05 22:27:42,609 [INFO] 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-12-05T22:27:42.6451973Z 2025-12-05 22:27:42,610 [INFO] 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-12-05T22:27:42.6454232Z 2025-12-05 22:27:42,610 [INFO] 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-12-05T22:27:42.6455888Z 2025-12-05 22:27:42,610 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/graphs 2025-12-05T22:27:42.6457524Z 2025-12-05 22:27:42,610 [INFO] 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-12-05T22:27:42.6459593Z 2025-12-05 22:27:42,610 [INFO] 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-12-05T22:27:42.6461118Z 2025-12-05 22:27:42,610 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/quantizer 2025-12-05T22:27:42.6462740Z 2025-12-05 22:27:42,610 [INFO] 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-12-05T22:27:42.6464822Z 2025-12-05 22:27:42,610 [INFO] 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-12-05T22:27:42.6466354Z 2025-12-05 22:27:42,611 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/recipes 2025-12-05T22:27:42.6467727Z 2025-12-05 22:27:42,611 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/recipes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/recipes 2025-12-05T22:27:42.6469593Z 2025-12-05 22:27:42,611 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/recipes/xnnpack_recipe_provider.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/recipes 2025-12-05T22:27:42.6471512Z 2025-12-05 22:27:42,611 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/recipes/xnnpack_recipe_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/recipes 2025-12-05T22:27:42.6472906Z 2025-12-05 22:27:42,611 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/serialization 2025-12-05T22:27:42.6474441Z 2025-12-05 22:27:42,611 [INFO] 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-12-05T22:27:42.6476473Z 2025-12-05 22:27:42,611 [INFO] 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-12-05T22:27:42.6478694Z 2025-12-05 22:27:42,612 [INFO] 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-12-05T22:27:42.6480964Z 2025-12-05 22:27:42,612 [INFO] 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-12-05T22:27:42.6482374Z 2025-12-05 22:27:42,612 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test 2025-12-05T22:27:42.6483622Z 2025-12-05 22:27:42,612 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test 2025-12-05T22:27:42.6485346Z 2025-12-05 22:27:42,612 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/test_xnnpack_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test 2025-12-05T22:27:42.6487382Z 2025-12-05 22:27:42,612 [INFO] 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-12-05T22:27:42.6489377Z 2025-12-05 22:27:42,612 [INFO] 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-12-05T22:27:42.6490867Z 2025-12-05 22:27:42,612 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/models 2025-12-05T22:27:42.6492344Z 2025-12-05 22:27:42,612 [INFO] 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-12-05T22:27:42.6494324Z 2025-12-05 22:27:42,613 [INFO] 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-12-05T22:27:42.6496383Z 2025-12-05 22:27:42,613 [INFO] 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-12-05T22:27:42.6498404Z 2025-12-05 22:27:42,613 [INFO] 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-12-05T22:27:42.6500377Z 2025-12-05 22:27:42,613 [INFO] 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-12-05T22:27:42.6502453Z 2025-12-05 22:27:42,613 [INFO] 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-12-05T22:27:42.6504371Z 2025-12-05 22:27:42,613 [INFO] 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-12-05T22:27:42.6506337Z 2025-12-05 22:27:42,613 [INFO] 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-12-05T22:27:42.6508560Z 2025-12-05 22:27:42,613 [INFO] 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-12-05T22:27:42.6510466Z 2025-12-05 22:27:42,614 [INFO] 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-12-05T22:27:42.6512670Z 2025-12-05 22:27:42,614 [INFO] 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-12-05T22:27:42.6514676Z 2025-12-05 22:27:42,614 [INFO] 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-12-05T22:27:42.6516606Z 2025-12-05 22:27:42,614 [INFO] 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-12-05T22:27:42.6517948Z 2025-12-05 22:27:42,614 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/ops 2025-12-05T22:27:42.6519575Z 2025-12-05 22:27:42,614 [INFO] 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-12-05T22:27:42.6521323Z 2025-12-05 22:27:42,614 [INFO] 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-12-05T22:27:42.6523178Z 2025-12-05 22:27:42,615 [INFO] 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-12-05T22:27:42.6525123Z 2025-12-05 22:27:42,615 [INFO] 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-12-05T22:27:42.6526929Z 2025-12-05 22:27:42,615 [INFO] 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-12-05T22:27:42.6528708Z 2025-12-05 22:27:42,615 [INFO] 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-12-05T22:27:42.6530617Z 2025-12-05 22:27:42,615 [INFO] 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-12-05T22:27:42.6532501Z 2025-12-05 22:27:42,615 [INFO] 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-12-05T22:27:42.6534432Z 2025-12-05 22:27:42,615 [INFO] 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-12-05T22:27:42.6536288Z 2025-12-05 22:27:42,615 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_clone.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-12-05T22:27:42.6538138Z 2025-12-05 22:27:42,615 [INFO] 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-12-05T22:27:42.6540149Z 2025-12-05 22:27:42,616 [INFO] 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-12-05T22:27:42.6542297Z 2025-12-05 22:27:42,616 [INFO] 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-12-05T22:27:42.6544396Z 2025-12-05 22:27:42,616 [INFO] 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-12-05T22:27:42.6546297Z 2025-12-05 22:27:42,616 [INFO] 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-12-05T22:27:42.6548337Z 2025-12-05 22:27:42,616 [INFO] 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-12-05T22:27:42.6550374Z 2025-12-05 22:27:42,616 [INFO] 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-12-05T22:27:42.6552384Z 2025-12-05 22:27:42,616 [INFO] 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-12-05T22:27:42.6554389Z 2025-12-05 22:27:42,616 [INFO] 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-12-05T22:27:42.6556400Z 2025-12-05 22:27:42,616 [INFO] 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-12-05T22:27:42.6558453Z 2025-12-05 22:27:42,617 [INFO] 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-12-05T22:27:42.6560415Z 2025-12-05 22:27:42,617 [INFO] 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-12-05T22:27:42.6562395Z 2025-12-05 22:27:42,617 [INFO] 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-12-05T22:27:42.6564485Z 2025-12-05 22:27:42,617 [INFO] 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-12-05T22:27:42.6566471Z 2025-12-05 22:27:42,617 [INFO] 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-12-05T22:27:42.6568444Z 2025-12-05 22:27:42,617 [INFO] 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-12-05T22:27:42.6570457Z 2025-12-05 22:27:42,617 [INFO] 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-12-05T22:27:42.6572596Z 2025-12-05 22:27:42,617 [INFO] 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-12-05T22:27:42.6574593Z 2025-12-05 22:27:42,617 [INFO] 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-12-05T22:27:42.6576681Z 2025-12-05 22:27:42,618 [INFO] 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-12-05T22:27:42.6578704Z 2025-12-05 22:27:42,618 [INFO] 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-12-05T22:27:42.6580756Z 2025-12-05 22:27:42,618 [INFO] 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-12-05T22:27:42.6582745Z 2025-12-05 22:27:42,618 [INFO] 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-12-05T22:27:42.6584836Z 2025-12-05 22:27:42,618 [INFO] 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-12-05T22:27:42.6586893Z 2025-12-05 22:27:42,618 [INFO] 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-12-05T22:27:42.6588794Z 2025-12-05 22:27:42,618 [INFO] 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-12-05T22:27:42.6590708Z 2025-12-05 22:27:42,618 [INFO] 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-12-05T22:27:42.6592544Z 2025-12-05 22:27:42,619 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_sin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-12-05T22:27:42.6594554Z 2025-12-05 22:27:42,619 [INFO] 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-12-05T22:27:42.6596410Z 2025-12-05 22:27:42,619 [INFO] 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-12-05T22:27:42.6598251Z 2025-12-05 22:27:42,619 [INFO] 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-12-05T22:27:42.6600271Z 2025-12-05 22:27:42,619 [INFO] 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-12-05T22:27:42.6602449Z 2025-12-05 22:27:42,619 [INFO] 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-12-05T22:27:42.6604505Z 2025-12-05 22:27:42,620 [INFO] 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-12-05T22:27:42.6606469Z 2025-12-05 22:27:42,620 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_tanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-12-05T22:27:42.6608445Z 2025-12-05 22:27:42,620 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_to_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-12-05T22:27:42.6610783Z 2025-12-05 22:27:42,620 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops/test_view_copy.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/ops 2025-12-05T22:27:42.6612339Z 2025-12-05 22:27:42,620 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/passes 2025-12-05T22:27:42.6613834Z 2025-12-05 22:27:42,620 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-12-05T22:27:42.6615977Z 2025-12-05 22:27:42,621 [INFO] 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-12-05T22:27:42.6618298Z 2025-12-05 22:27:42,621 [INFO] 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-12-05T22:27:42.6620562Z 2025-12-05 22:27:42,621 [INFO] 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-12-05T22:27:42.6622697Z 2025-12-05 22:27:42,621 [INFO] 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-12-05T22:27:42.6624887Z 2025-12-05 22:27:42,621 [INFO] 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-12-05T22:27:42.6627146Z 2025-12-05 22:27:42,621 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_propagate_custom_meta_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-12-05T22:27:42.6629324Z 2025-12-05 22:27:42,621 [INFO] 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-12-05T22:27:42.6631660Z 2025-12-05 22:27:42,622 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes/test_remove_redundant_copy_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/passes 2025-12-05T22:27:42.6633294Z 2025-12-05 22:27:42,622 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/quantizer 2025-12-05T22:27:42.6635058Z 2025-12-05 22:27:42,622 [INFO] 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-12-05T22:27:42.6637228Z 2025-12-05 22:27:42,622 [INFO] 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-12-05T22:27:42.6639492Z 2025-12-05 22:27:42,622 [INFO] 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-12-05T22:27:42.6641185Z 2025-12-05 22:27:42,623 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/recipes 2025-12-05T22:27:42.6642904Z 2025-12-05 22:27:42,623 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/recipes/test_xnnpack_recipes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/test/recipes 2025-12-05T22:27:42.6644469Z 2025-12-05 22:27:42,623 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/serialization 2025-12-05T22:27:42.6646203Z 2025-12-05 22:27:42,623 [INFO] 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-12-05T22:27:42.6648355Z 2025-12-05 22:27:42,623 [INFO] 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-12-05T22:27:42.6650094Z 2025-12-05 22:27:42,623 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/tester 2025-12-05T22:27:42.6651591Z 2025-12-05 22:27:42,624 [INFO] 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-12-05T22:27:42.6653550Z 2025-12-05 22:27:42,624 [INFO] 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-12-05T22:27:42.6655028Z 2025-12-05 22:27:42,624 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party 2025-12-05T22:27:42.6656164Z 2025-12-05 22:27:42,624 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16 2025-12-05T22:27:42.6657756Z 2025-12-05 22:27:42,624 [INFO] 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-12-05T22:27:42.6659410Z 2025-12-05 22:27:42,624 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include 2025-12-05T22:27:42.6660650Z 2025-12-05 22:27:42,625 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-12-05T22:27:42.6662440Z 2025-12-05 22:27:42,625 [INFO] 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-12-05T22:27:42.6664847Z 2025-12-05 22:27:42,625 [INFO] 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-12-05T22:27:42.6667197Z 2025-12-05 22:27:42,625 [INFO] 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-12-05T22:27:42.6669154Z 2025-12-05 22:27:42,625 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test 2025-12-05T22:27:42.6670329Z 2025-12-05 22:27:42,625 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-12-05T22:27:42.6672168Z 2025-12-05 22:27:42,625 [INFO] 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-12-05T22:27:42.6674629Z 2025-12-05 22:27:42,626 [INFO] 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-12-05T22:27:42.6676586Z 2025-12-05 22:27:42,626 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FXdiv 2025-12-05T22:27:42.6678269Z 2025-12-05 22:27:42,626 [INFO] 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-12-05T22:27:42.6680247Z 2025-12-05 22:27:42,626 [INFO] 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-12-05T22:27:42.6681747Z 2025-12-05 22:27:42,626 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo 2025-12-05T22:27:42.6683412Z 2025-12-05 22:27:42,626 [INFO] 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-12-05T22:27:42.6685232Z 2025-12-05 22:27:42,627 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-12-05T22:27:42.6687100Z 2025-12-05 22:27:42,627 [INFO] 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-12-05T22:27:42.6689715Z 2025-12-05 22:27:42,627 [INFO] 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-12-05T22:27:42.6692264Z 2025-12-05 22:27:42,627 [INFO] 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-12-05T22:27:42.6694082Z 2025-12-05 22:27:42,627 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps 2025-12-05T22:27:42.6695213Z 2025-12-05 22:27:42,627 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-12-05T22:27:42.6697019Z 2025-12-05 22:27:42,628 [INFO] 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-12-05T22:27:42.6699420Z 2025-12-05 22:27:42,628 [INFO] 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-12-05T22:27:42.6701681Z 2025-12-05 22:27:42,628 [INFO] 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-12-05T22:27:42.6703329Z 2025-12-05 22:27:42,628 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/pthreadpool 2025-12-05T22:27:42.6705072Z 2025-12-05 22:27:42,628 [INFO] 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-12-05T22:27:42.6707366Z 2025-12-05 22:27:42,628 [INFO] 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-12-05T22:27:42.6709122Z 2025-12-05 22:27:42,629 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK 2025-12-05T22:27:42.6710227Z 2025-12-05 22:27:42,629 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6712127Z 2025-12-05 22:27:42,629 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/aarch32_template.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6714643Z 2025-12-05 22:27:42,629 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/aarch64_template.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6717136Z 2025-12-05 22:27:42,629 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/arm_template.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6719803Z 2025-12-05 22:27:42,629 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/avx512bf16_template.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6722278Z 2025-12-05 22:27:42,629 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/avx512f_template.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6724741Z 2025-12-05 22:27:42,630 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/avx512vnni_template.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6727238Z 2025-12-05 22:27:42,630 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/base_architecture.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6729725Z 2025-12-05 22:27:42,630 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/fma3_template.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6732049Z 2025-12-05 22:27:42,630 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6734550Z 2025-12-05 22:27:42,630 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_bf16_f32_gemm_microkernels.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6737302Z 2025-12-05 22:27:42,630 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_f32_gemm_microkernels.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6740318Z 2025-12-05 22:27:42,630 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_gemm_microkernels_main.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6743156Z 2025-12-05 22:27:42,631 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_qd8_f32_qc4w_gemm_microkernels.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6745979Z 2025-12-05 22:27:42,631 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_qd8_f32_qc8w_gemm_microkernels.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6748777Z 2025-12-05 22:27:42,631 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_qs8_qc4w_gemm_microkernels.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6751497Z 2025-12-05 22:27:42,631 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_qs8_qc8w_gemm_microkernels.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6754236Z 2025-12-05 22:27:42,631 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/neondot_template.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6756984Z 2025-12-05 22:27:42,631 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/neonfma_template.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6759509Z 2025-12-05 22:27:42,632 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/neonmlal_aarch32_template.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6762033Z 2025-12-05 22:27:42,632 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/x64_template.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler 2025-12-05T22:27:42.6763863Z 2025-12-05 22:27:42,632 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-12-05T22:27:42.6765642Z 2025-12-05 22:27:42,632 [INFO] 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-12-05T22:27:42.6767998Z 2025-12-05 22:27:42,632 [INFO] 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-12-05T22:27:42.6770514Z 2025-12-05 22:27:42,632 [INFO] 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-12-05T22:27:42.6772961Z 2025-12-05 22:27:42,633 [INFO] 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-12-05T22:27:42.6774728Z 2025-12-05 22:27:42,633 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-12-05T22:27:42.6776532Z 2025-12-05 22:27:42,633 [INFO] 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-12-05T22:27:42.6778759Z 2025-12-05 22:27:42,633 [INFO] 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-12-05T22:27:42.6781055Z 2025-12-05 22:27:42,633 [INFO] 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-12-05T22:27:42.6783394Z 2025-12-05 22:27:42,633 [INFO] 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-12-05T22:27:42.6785810Z 2025-12-05 22:27:42,634 [INFO] 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-12-05T22:27:42.6788300Z 2025-12-05 22:27:42,634 [INFO] 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-12-05T22:27:42.6790950Z 2025-12-05 22:27:42,634 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-12-05T22:27:42.6793327Z 2025-12-05 22:27:42,634 [INFO] 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-12-05T22:27:42.6795840Z 2025-12-05 22:27:42,634 [INFO] 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-12-05T22:27:42.6798215Z 2025-12-05 22:27:42,634 [INFO] 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-12-05T22:27:42.6800808Z 2025-12-05 22:27:42,635 [INFO] 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-12-05T22:27:42.6803503Z 2025-12-05 22:27:42,635 [INFO] 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-12-05T22:27:42.6806008Z 2025-12-05 22:27:42,635 [INFO] 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-12-05T22:27:42.6808473Z 2025-12-05 22:27:42,635 [INFO] 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-12-05T22:27:42.6810966Z 2025-12-05 22:27:42,635 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-discontiguous-test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-12-05T22:27:42.6813443Z 2025-12-05 22:27:42,635 [INFO] 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-12-05T22:27:42.6815830Z 2025-12-05 22:27:42,635 [INFO] 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-12-05T22:27:42.6818080Z 2025-12-05 22:27:42,636 [INFO] 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-12-05T22:27:42.6820538Z 2025-12-05 22:27:42,636 [INFO] 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-12-05T22:27:42.6822976Z 2025-12-05 22:27:42,636 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools/parse-microkernel-bench.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-12-05T22:27:42.6825249Z 2025-12-05 22:27:42,636 [INFO] 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-12-05T22:27:42.6827050Z 2025-12-05 22:27:42,636 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.6828872Z 2025-12-05 22:27:42,636 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-f32-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.6831151Z 2025-12-05 22:27:42,637 [INFO] 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-12-05T22:27:42.6833424Z 2025-12-05 22:27:42,637 [INFO] 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-12-05T22:27:42.6835661Z 2025-12-05 22:27:42,637 [INFO] 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-12-05T22:27:42.6837947Z 2025-12-05 22:27:42,637 [INFO] 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-12-05T22:27:42.6840283Z 2025-12-05 22:27:42,637 [INFO] 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-12-05T22:27:42.6842557Z 2025-12-05 22:27:42,637 [INFO] 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-12-05T22:27:42.6844805Z 2025-12-05 22:27:42,637 [INFO] 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-12-05T22:27:42.6847098Z 2025-12-05 22:27:42,638 [INFO] 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-12-05T22:27:42.6849383Z 2025-12-05 22:27:42,638 [INFO] 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-12-05T22:27:42.6851644Z 2025-12-05 22:27:42,638 [INFO] 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-12-05T22:27:42.6853944Z 2025-12-05 22:27:42,638 [INFO] 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-12-05T22:27:42.6856233Z 2025-12-05 22:27:42,638 [INFO] 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-12-05T22:27:42.6858443Z 2025-12-05 22:27:42,638 [INFO] 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-12-05T22:27:42.6860752Z 2025-12-05 22:27:42,639 [INFO] 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-12-05T22:27:42.6863197Z 2025-12-05 22:27:42,639 [INFO] 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-12-05T22:27:42.6865758Z 2025-12-05 22:27:42,639 [INFO] 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-12-05T22:27:42.6868044Z 2025-12-05 22:27:42,639 [INFO] 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-12-05T22:27:42.6870622Z 2025-12-05 22:27:42,639 [INFO] 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-12-05T22:27:42.6872908Z 2025-12-05 22:27:42,639 [INFO] 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-12-05T22:27:42.6875348Z 2025-12-05 22:27:42,640 [INFO] 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-12-05T22:27:42.6877644Z 2025-12-05 22:27:42,640 [INFO] 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-12-05T22:27:42.6879896Z 2025-12-05 22:27:42,640 [INFO] 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-12-05T22:27:42.6882576Z 2025-12-05 22:27:42,640 [INFO] 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-12-05T22:27:42.6884869Z 2025-12-05 22:27:42,640 [INFO] 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-12-05T22:27:42.6887324Z 2025-12-05 22:27:42,640 [INFO] 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-12-05T22:27:42.6889727Z 2025-12-05 22:27:42,640 [INFO] 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-12-05T22:27:42.6890905Z 2025-12-05 22:27:42,641 [INFO] 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-12-05T22:27:42.6891958Z 2025-12-05 22:27:42,641 [INFO] 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-12-05T22:27:42.6893297Z 2025-12-05 22:27:42,641 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/pf16-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.6894466Z 2025-12-05 22:27:42,641 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/pf32-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.6895475Z 2025-12-05 22:27:42,641 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/pqs8-qc8w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.6896755Z 2025-12-05 22:27:42,641 [INFO] 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-12-05T22:27:42.6897943Z 2025-12-05 22:27:42,641 [INFO] 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-12-05T22:27:42.6898979Z 2025-12-05 22:27:42,642 [INFO] 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-12-05T22:27:42.6900205Z 2025-12-05 22:27:42,642 [INFO] 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-12-05T22:27:42.6901381Z 2025-12-05 22:27:42,642 [INFO] 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-12-05T22:27:42.6902412Z 2025-12-05 22:27:42,642 [INFO] 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-12-05T22:27:42.6903724Z 2025-12-05 22:27:42,642 [INFO] 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-12-05T22:27:42.6904921Z 2025-12-05 22:27:42,642 [INFO] 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-12-05T22:27:42.6905988Z 2025-12-05 22:27:42,643 [INFO] 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-12-05T22:27:42.6907225Z 2025-12-05 22:27:42,643 [INFO] 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-12-05T22:27:42.6908522Z 2025-12-05 22:27:42,643 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc8w-gemm-minmax.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.6909569Z 2025-12-05 22:27:42,643 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc4w-gemm-minmax-fp32.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/xnnpack/third-party/XNNPACK/test 2025-12-05T22:27:42.6910869Z 2025-12-05 22:27:42,643 [INFO] 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-12-05T22:27:42.6912120Z 2025-12-05 22:27:42,643 [INFO] 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-12-05T22:27:42.6913126Z 2025-12-05 22:27:42,644 [INFO] 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-12-05T22:27:42.6914332Z 2025-12-05 22:27:42,644 [INFO] 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-12-05T22:27:42.6915560Z 2025-12-05 22:27:42,644 [INFO] 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-12-05T22:27:42.6916600Z 2025-12-05 22:27:42,644 [INFO] 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-12-05T22:27:42.6917782Z 2025-12-05 22:27:42,644 [INFO] 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-12-05T22:27:42.6919063Z 2025-12-05 22:27:42,644 [INFO] 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-12-05T22:27:42.6920143Z 2025-12-05 22:27:42,645 [INFO] 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-12-05T22:27:42.6921247Z 2025-12-05 22:27:42,645 [INFO] 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-12-05T22:27:42.6921572Z 2025-12-05 22:27:42,645 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/utils 2025-12-05T22:27:42.6922302Z 2025-12-05 22:27:42,645 [INFO] 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-12-05T22:27:42.6923233Z 2025-12-05 22:27:42,645 [INFO] 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-12-05T22:27:42.6923939Z 2025-12-05 22:27:42,645 [INFO] 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-12-05T22:27:42.6924967Z 2025-12-05 22:27:42,645 [INFO] 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-12-05T22:27:42.6925257Z 2025-12-05 22:27:42,646 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple 2025-12-05T22:27:42.6925569Z 2025-12-05 22:27:42,646 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml 2025-12-05T22:27:42.6926589Z 2025-12-05 22:27:42,646 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/logging.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml 2025-12-05T22:27:42.6926941Z 2025-12-05 22:27:42,646 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/compiler 2025-12-05T22:27:42.6927912Z 2025-12-05 22:27:42,646 [INFO] 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-12-05T22:27:42.6928881Z 2025-12-05 22:27:42,647 [INFO] 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-12-05T22:27:42.6929960Z 2025-12-05 22:27:42,647 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler/enumerated_shape_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/compiler 2025-12-05T22:27:42.6930829Z 2025-12-05 22:27:42,647 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler/torch_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/compiler 2025-12-05T22:27:42.6931431Z 2025-12-05 22:27:42,647 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/partition 2025-12-05T22:27:42.6932234Z 2025-12-05 22:27:42,647 [INFO] 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-12-05T22:27:42.6933300Z 2025-12-05 22:27:42,647 [INFO] 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-12-05T22:27:42.6933663Z 2025-12-05 22:27:42,648 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/quantizer 2025-12-05T22:27:42.6934599Z 2025-12-05 22:27:42,648 [INFO] 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-12-05T22:27:42.6935881Z 2025-12-05 22:27:42,648 [INFO] 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-12-05T22:27:42.6936403Z 2025-12-05 22:27:42,648 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/recipes 2025-12-05T22:27:42.6937298Z 2025-12-05 22:27:42,648 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/recipes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/recipes 2025-12-05T22:27:42.6938468Z 2025-12-05 22:27:42,648 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/recipes/coreml_recipe_provider.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/recipes 2025-12-05T22:27:42.6939399Z 2025-12-05 22:27:42,649 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/recipes/coreml_recipe_types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/recipes 2025-12-05T22:27:42.6939886Z 2025-12-05 22:27:42,649 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/test 2025-12-05T22:27:42.6940824Z 2025-12-05 22:27:42,649 [INFO] 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-12-05T22:27:42.6941955Z 2025-12-05 22:27:42,649 [INFO] 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-12-05T22:27:42.6943145Z 2025-12-05 22:27:42,649 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test/test_coreml_recipes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/test 2025-12-05T22:27:42.6944035Z 2025-12-05 22:27:42,649 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test/test_coreml_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/test 2025-12-05T22:27:42.6945136Z 2025-12-05 22:27:42,650 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test/test_enumerated_shapes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/test 2025-12-05T22:27:42.6946186Z 2025-12-05 22:27:42,650 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test/test_torch_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/test 2025-12-05T22:27:42.6947029Z 2025-12-05 22:27:42,650 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test/tester.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/coreml/test 2025-12-05T22:27:42.6947527Z 2025-12-05 22:27:42,650 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime 2025-12-05T22:27:42.6948072Z 2025-12-05 22:27:42,650 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime/test 2025-12-05T22:27:42.6949309Z 2025-12-05 22:27:42,650 [INFO] 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-12-05T22:27:42.6950181Z 2025-12-05 22:27:42,650 [INFO] 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-12-05T22:27:42.6951405Z 2025-12-05 22:27:42,651 [INFO] 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-12-05T22:27:42.6951768Z 2025-12-05 22:27:42,651 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/metal 2025-12-05T22:27:42.6952842Z 2025-12-05 22:27:42,651 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/metal/metal_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/metal 2025-12-05T22:27:42.6953795Z 2025-12-05 22:27:42,651 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/metal/metal_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/metal 2025-12-05T22:27:42.6954295Z 2025-12-05 22:27:42,651 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/metal/tests 2025-12-05T22:27:42.6955202Z 2025-12-05 22:27:42,652 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/metal/tests/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/metal/tests 2025-12-05T22:27:42.6956166Z 2025-12-05 22:27:42,652 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/metal/tests/test_metal_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/metal/tests 2025-12-05T22:27:42.6957318Z 2025-12-05 22:27:42,652 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/metal/tests/test_metal_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/apple/metal/tests 2025-12-05T22:27:42.6957639Z 2025-12-05 22:27:42,652 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps 2025-12-05T22:27:42.6958539Z 2025-12-05 22:27:42,652 [INFO] 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-12-05T22:27:42.6959471Z 2025-12-05 22:27:42,652 [INFO] 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-12-05T22:27:42.6959902Z 2025-12-05 22:27:42,652 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/operators 2025-12-05T22:27:42.6960926Z 2025-12-05 22:27:42,653 [INFO] 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-12-05T22:27:42.6961925Z 2025-12-05 22:27:42,653 [INFO] 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-12-05T22:27:42.6962870Z 2025-12-05 22:27:42,653 [INFO] 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-12-05T22:27:42.6963993Z 2025-12-05 22:27:42,653 [INFO] 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-12-05T22:27:42.6964898Z 2025-12-05 22:27:42,653 [INFO] 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-12-05T22:27:42.6965928Z 2025-12-05 22:27:42,653 [INFO] 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-12-05T22:27:42.6967005Z 2025-12-05 22:27:42,653 [INFO] 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-12-05T22:27:42.6967951Z 2025-12-05 22:27:42,654 [INFO] 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-12-05T22:27:42.6969106Z 2025-12-05 22:27:42,654 [INFO] 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-12-05T22:27:42.6970175Z 2025-12-05 22:27:42,654 [INFO] 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-12-05T22:27:42.6971046Z 2025-12-05 22:27:42,654 [INFO] 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-12-05T22:27:42.6972032Z 2025-12-05 22:27:42,654 [INFO] 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-12-05T22:27:42.6972965Z 2025-12-05 22:27:42,654 [INFO] 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-12-05T22:27:42.6974008Z 2025-12-05 22:27:42,654 [INFO] 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-12-05T22:27:42.6974930Z 2025-12-05 22:27:42,654 [INFO] 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-12-05T22:27:42.6975860Z 2025-12-05 22:27:42,655 [INFO] 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-12-05T22:27:42.6977055Z 2025-12-05 22:27:42,655 [INFO] 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-12-05T22:27:42.6977917Z 2025-12-05 22:27:42,655 [INFO] 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-12-05T22:27:42.6978879Z 2025-12-05 22:27:42,655 [INFO] 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-12-05T22:27:42.6979780Z 2025-12-05 22:27:42,655 [INFO] 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-12-05T22:27:42.6980320Z 2025-12-05 22:27:42,655 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/partition 2025-12-05T22:27:42.6981159Z 2025-12-05 22:27:42,655 [INFO] 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-12-05T22:27:42.6982216Z 2025-12-05 22:27:42,656 [INFO] 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-12-05T22:27:42.6982580Z 2025-12-05 22:27:42,656 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/serialization 2025-12-05T22:27:42.6983774Z 2025-12-05 22:27:42,656 [INFO] 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-12-05T22:27:42.6984769Z 2025-12-05 22:27:42,656 [INFO] 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-12-05T22:27:42.6985826Z 2025-12-05 22:27:42,656 [INFO] 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-12-05T22:27:42.6986269Z 2025-12-05 22:27:42,656 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/test 2025-12-05T22:27:42.6987211Z 2025-12-05 22:27:42,656 [INFO] 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-12-05T22:27:42.6988122Z 2025-12-05 22:27:42,657 [INFO] 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-12-05T22:27:42.6989072Z 2025-12-05 22:27:42,657 [INFO] 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-12-05T22:27:42.6989974Z 2025-12-05 22:27:42,657 [INFO] 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-12-05T22:27:42.6990904Z 2025-12-05 22:27:42,657 [INFO] 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-12-05T22:27:42.6991826Z 2025-12-05 22:27:42,657 [INFO] 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-12-05T22:27:42.6992740Z 2025-12-05 22:27:42,657 [INFO] 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-12-05T22:27:42.6993170Z 2025-12-05 22:27:42,658 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/utils 2025-12-05T22:27:42.6994330Z 2025-12-05 22:27:42,658 [INFO] 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-12-05T22:27:42.6995155Z 2025-12-05 22:27:42,658 [INFO] 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-12-05T22:27:42.6995525Z 2025-12-05 22:27:42,658 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence 2025-12-05T22:27:42.6995892Z 2025-12-05 22:27:42,658 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot 2025-12-05T22:27:42.6996686Z 2025-12-05 22:27:42,658 [INFO] 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-12-05T22:27:42.6997525Z 2025-12-05 22:27:42,659 [INFO] 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-12-05T22:27:42.6998391Z 2025-12-05 22:27:42,659 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/compiler_funcs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-12-05T22:27:42.6999220Z 2025-12-05 22:27:42,659 [INFO] 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-12-05T22:27:42.7000151Z 2025-12-05 22:27:42,659 [INFO] 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-12-05T22:27:42.7001007Z 2025-12-05 22:27:42,659 [INFO] 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-12-05T22:27:42.7001900Z 2025-12-05 22:27:42,659 [INFO] 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-12-05T22:27:42.7002687Z 2025-12-05 22:27:42,659 [INFO] 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-12-05T22:27:42.7003675Z 2025-12-05 22:27:42,660 [INFO] 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-12-05T22:27:42.7004487Z 2025-12-05 22:27:42,660 [INFO] 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-12-05T22:27:42.7005418Z 2025-12-05 22:27:42,660 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/memory_planning_algo.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-12-05T22:27:42.7006223Z 2025-12-05 22:27:42,660 [INFO] 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-12-05T22:27:42.7007050Z 2025-12-05 22:27:42,660 [INFO] 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-12-05T22:27:42.7008194Z 2025-12-05 22:27:42,660 [INFO] 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-12-05T22:27:42.7009197Z 2025-12-05 22:27:42,661 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/program_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-12-05T22:27:42.7010201Z 2025-12-05 22:27:42,661 [INFO] 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-12-05T22:27:42.7010970Z 2025-12-05 22:27:42,661 [INFO] 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-12-05T22:27:42.7011798Z 2025-12-05 22:27:42,661 [INFO] 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-12-05T22:27:42.7012580Z 2025-12-05 22:27:42,661 [INFO] 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-12-05T22:27:42.7013404Z 2025-12-05 22:27:42,662 [INFO] 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-12-05T22:27:42.7014199Z 2025-12-05 22:27:42,662 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/type_dispatch.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-12-05T22:27:42.7014966Z 2025-12-05 22:27:42,662 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/typing_stubs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-12-05T22:27:42.7015710Z 2025-12-05 22:27:42,662 [INFO] 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-12-05T22:27:42.7016142Z 2025-12-05 22:27:42,662 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/quantizer 2025-12-05T22:27:42.7017141Z 2025-12-05 22:27:42,663 [INFO] 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-12-05T22:27:42.7018017Z 2025-12-05 22:27:42,663 [INFO] 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-12-05T22:27:42.7019102Z 2025-12-05 22:27:42,663 [INFO] 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-12-05T22:27:42.7019946Z 2025-12-05 22:27:42,663 [INFO] 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-12-05T22:27:42.7020336Z 2025-12-05 22:27:42,663 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/tests 2025-12-05T22:27:42.7021235Z 2025-12-05 22:27:42,663 [INFO] 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-12-05T22:27:42.7022108Z 2025-12-05 22:27:42,664 [INFO] 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-12-05T22:27:42.7022970Z 2025-12-05 22:27:42,664 [INFO] 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-12-05T22:27:42.7023906Z 2025-12-05 22:27:42,664 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_idma_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-12-05T22:27:42.7024792Z 2025-12-05 22:27:42,664 [INFO] 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-12-05T22:27:42.7025623Z 2025-12-05 22:27:42,664 [INFO] 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-12-05T22:27:42.7026519Z 2025-12-05 22:27:42,664 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_program_builder.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-12-05T22:27:42.7027378Z 2025-12-05 22:27:42,665 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_quantizer_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-12-05T22:27:42.7028292Z 2025-12-05 22:27:42,665 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_ref_implementations.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-12-05T22:27:42.7029311Z 2025-12-05 22:27:42,665 [INFO] 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-12-05T22:27:42.7030205Z 2025-12-05 22:27:42,665 [INFO] 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-12-05T22:27:42.7031249Z 2025-12-05 22:27:42,665 [INFO] 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-12-05T22:27:42.7032293Z 2025-12-05 22:27:42,665 [INFO] 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-12-05T22:27:42.7033298Z 2025-12-05 22:27:42,666 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests/test_type_dispatch_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot/tests 2025-12-05T22:27:42.7034198Z 2025-12-05 22:27:42,666 [INFO] 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-12-05T22:27:42.7035037Z 2025-12-05 22:27:42,666 [INFO] 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-12-05T22:27:42.7035946Z 2025-12-05 22:27:42,666 [INFO] 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-12-05T22:27:42.7036770Z 2025-12-05 22:27:42,666 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/functions_vision.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/aot 2025-12-05T22:27:42.7037234Z 2025-12-05 22:27:42,666 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/runtime 2025-12-05T22:27:42.7038021Z 2025-12-05 22:27:42,667 [INFO] 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-12-05T22:27:42.7038972Z 2025-12-05 22:27:42,667 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime/etdump.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cadence/runtime 2025-12-05T22:27:42.7039809Z 2025-12-05 22:27:42,667 [INFO] 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-12-05T22:27:42.7040752Z 2025-12-05 22:27:42,667 [INFO] 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-12-05T22:27:42.7041528Z 2025-12-05 22:27:42,667 [INFO] 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-12-05T22:27:42.7041947Z 2025-12-05 22:27:42,667 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils 2025-12-05T22:27:42.7042726Z 2025-12-05 22:27:42,668 [INFO] 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-12-05T22:27:42.7043565Z 2025-12-05 22:27:42,668 [INFO] 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-12-05T22:27:42.7044397Z 2025-12-05 22:27:42,668 [INFO] 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-12-05T22:27:42.7044790Z 2025-12-05 22:27:42,668 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO 2025-12-05T22:27:42.7045618Z 2025-12-05 22:27:42,668 [INFO] 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-12-05T22:27:42.7046130Z 2025-12-05 22:27:42,668 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/calibrator 2025-12-05T22:27:42.7047227Z 2025-12-05 22:27:42,669 [INFO] 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-12-05T22:27:42.7048190Z 2025-12-05 22:27:42,669 [INFO] 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-12-05T22:27:42.7048642Z 2025-12-05 22:27:42,669 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/examples 2025-12-05T22:27:42.7049725Z 2025-12-05 22:27:42,669 [INFO] 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-12-05T22:27:42.7050761Z 2025-12-05 22:27:42,669 [INFO] 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-12-05T22:27:42.7051798Z 2025-12-05 22:27:42,669 [INFO] 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-12-05T22:27:42.7052218Z 2025-12-05 22:27:42,670 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto 2025-12-05T22:27:42.7053224Z 2025-12-05 22:27:42,670 [INFO] 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-12-05T22:27:42.7053818Z 2025-12-05 22:27:42,670 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-12-05T22:27:42.7054909Z 2025-12-05 22:27:42,670 [INFO] 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-12-05T22:27:42.7055469Z 2025-12-05 22:27:42,670 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-12-05T22:27:42.7056658Z 2025-12-05 22:27:42,670 [INFO] 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-12-05T22:27:42.7057860Z 2025-12-05 22:27:42,670 [INFO] 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-12-05T22:27:42.7058936Z 2025-12-05 22:27:42,671 [INFO] 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-12-05T22:27:42.7059471Z 2025-12-05 22:27:42,671 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-12-05T22:27:42.7060840Z 2025-12-05 22:27:42,671 [INFO] 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-12-05T22:27:42.7062054Z 2025-12-05 22:27:42,671 [INFO] 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-12-05T22:27:42.7063436Z 2025-12-05 22:27:42,671 [INFO] 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-12-05T22:27:42.7064571Z 2025-12-05 22:27:42,671 [INFO] 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-12-05T22:27:42.7065134Z 2025-12-05 22:27:42,672 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-12-05T22:27:42.7066398Z 2025-12-05 22:27:42,672 [INFO] 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-12-05T22:27:42.7067616Z 2025-12-05 22:27:42,672 [INFO] 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-12-05T22:27:42.7069207Z 2025-12-05 22:27:42,672 [INFO] 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-12-05T22:27:42.7070528Z 2025-12-05 22:27:42,672 [INFO] 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-12-05T22:27:42.7071195Z 2025-12-05 22:27:42,673 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-12-05T22:27:42.7072376Z 2025-12-05 22:27:42,673 [INFO] 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-12-05T22:27:42.7073450Z 2025-12-05 22:27:42,673 [INFO] 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-12-05T22:27:42.7074009Z 2025-12-05 22:27:42,673 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-12-05T22:27:42.7075008Z 2025-12-05 22:27:42,673 [INFO] 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-12-05T22:27:42.7076144Z 2025-12-05 22:27:42,673 [INFO] 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-12-05T22:27:42.7076628Z 2025-12-05 22:27:42,674 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-12-05T22:27:42.7077759Z 2025-12-05 22:27:42,674 [INFO] 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-12-05T22:27:42.7078863Z 2025-12-05 22:27:42,674 [INFO] 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-12-05T22:27:42.7080009Z 2025-12-05 22:27:42,674 [INFO] 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-12-05T22:27:42.7081090Z 2025-12-05 22:27:42,674 [INFO] 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-12-05T22:27:42.7082166Z 2025-12-05 22:27:42,674 [INFO] 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-12-05T22:27:42.7083292Z 2025-12-05 22:27:42,674 [INFO] 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-12-05T22:27:42.7084378Z 2025-12-05 22:27:42,675 [INFO] 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-12-05T22:27:42.7084949Z 2025-12-05 22:27:42,675 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-12-05T22:27:42.7085894Z 2025-12-05 22:27:42,675 [INFO] 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-12-05T22:27:42.7086957Z 2025-12-05 22:27:42,675 [INFO] 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-12-05T22:27:42.7088029Z 2025-12-05 22:27:42,675 [INFO] 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-12-05T22:27:42.7089088Z 2025-12-05 22:27:42,676 [INFO] 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-12-05T22:27:42.7089470Z 2025-12-05 22:27:42,676 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test 2025-12-05T22:27:42.7089883Z 2025-12-05 22:27:42,676 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-12-05T22:27:42.7091008Z 2025-12-05 22:27:42,676 [INFO] 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-12-05T22:27:42.7092155Z 2025-12-05 22:27:42,676 [INFO] 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-12-05T22:27:42.7093295Z 2025-12-05 22:27:42,676 [INFO] 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-12-05T22:27:42.7094330Z 2025-12-05 22:27:42,677 [INFO] 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-12-05T22:27:42.7095412Z 2025-12-05 22:27:42,677 [INFO] 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-12-05T22:27:42.7096602Z 2025-12-05 22:27:42,677 [INFO] 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-12-05T22:27:42.7097739Z 2025-12-05 22:27:42,677 [INFO] 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-12-05T22:27:42.7098854Z 2025-12-05 22:27:42,677 [INFO] 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-12-05T22:27:42.7099830Z 2025-12-05 22:27:42,677 [INFO] 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-12-05T22:27:42.7100915Z 2025-12-05 22:27:42,678 [INFO] 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-12-05T22:27:42.7102168Z 2025-12-05 22:27:42,678 [INFO] 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-12-05T22:27:42.7103360Z 2025-12-05 22:27:42,678 [INFO] 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-12-05T22:27:42.7104519Z 2025-12-05 22:27:42,678 [INFO] 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-12-05T22:27:42.7105600Z 2025-12-05 22:27:42,678 [INFO] 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-12-05T22:27:42.7106781Z 2025-12-05 22:27:42,678 [INFO] 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-12-05T22:27:42.7107091Z 2025-12-05 22:27:42,679 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m 2025-12-05T22:27:42.7107509Z 2025-12-05 22:27:42,679 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/ops 2025-12-05T22:27:42.7108316Z 2025-12-05 22:27:42,679 [INFO] 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-12-05T22:27:42.7109317Z 2025-12-05 22:27:42,679 [INFO] 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-12-05T22:27:42.7109648Z 2025-12-05 22:27:42,679 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/passes 2025-12-05T22:27:42.7110489Z 2025-12-05 22:27:42,679 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/passes 2025-12-05T22:27:42.7111357Z 2025-12-05 22:27:42,680 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes/activation_fusion_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/passes 2025-12-05T22:27:42.7112417Z 2025-12-05 22:27:42,680 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes/clamp_hardswish_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/passes 2025-12-05T22:27:42.7113358Z 2025-12-05 22:27:42,680 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes/convert_to_cortex_m_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/passes 2025-12-05T22:27:42.7114176Z 2025-12-05 22:27:42,680 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes/cortex_m_pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/passes 2025-12-05T22:27:42.7115197Z 2025-12-05 22:27:42,680 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes/decompose_hardswish_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/passes 2025-12-05T22:27:42.7116026Z 2025-12-05 22:27:42,680 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes/passes_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/passes 2025-12-05T22:27:42.7116925Z 2025-12-05 22:27:42,680 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes/quantized_op_fusion_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/passes 2025-12-05T22:27:42.7117924Z 2025-12-05 22:27:42,681 [INFO] 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-12-05T22:27:42.7118645Z 2025-12-05 22:27:42,681 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/quantizer 2025-12-05T22:27:42.7119729Z 2025-12-05 22:27:42,681 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/quantizer/operator_configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/quantizer 2025-12-05T22:27:42.7120677Z 2025-12-05 22:27:42,681 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/quantizer/quantization_configs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/quantizer 2025-12-05T22:27:42.7121565Z 2025-12-05 22:27:42,681 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/quantizer/quantizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/quantizer 2025-12-05T22:27:42.7122017Z 2025-12-05 22:27:42,681 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/test 2025-12-05T22:27:42.7122919Z 2025-12-05 22:27:42,682 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/test_helpers_passes_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test 2025-12-05T22:27:42.7123970Z 2025-12-05 22:27:42,682 [INFO] 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-12-05T22:27:42.7125030Z 2025-12-05 22:27:42,682 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/tester.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test 2025-12-05T22:27:42.7125468Z 2025-12-05 22:27:42,682 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/test/misc 2025-12-05T22:27:42.7126319Z 2025-12-05 22:27:42,682 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/misc/test_quantization.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/misc 2025-12-05T22:27:42.7126707Z 2025-12-05 22:27:42,682 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/test/models 2025-12-05T22:27:42.7127763Z 2025-12-05 22:27:42,682 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/models/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/models 2025-12-05T22:27:42.7128777Z 2025-12-05 22:27:42,683 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/models/test_mobilenet_v3.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/models 2025-12-05T22:27:42.7129130Z 2025-12-05 22:27:42,683 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/test/ops 2025-12-05T22:27:42.7130046Z 2025-12-05 22:27:42,683 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/ops 2025-12-05T22:27:42.7130974Z 2025-12-05 22:27:42,683 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops/test_activation.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/ops 2025-12-05T22:27:42.7131787Z 2025-12-05 22:27:42,683 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops/test_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/ops 2025-12-05T22:27:42.7132732Z 2025-12-05 22:27:42,683 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops/test_conv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/ops 2025-12-05T22:27:42.7133567Z 2025-12-05 22:27:42,684 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops/test_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/ops 2025-12-05T22:27:42.7134530Z 2025-12-05 22:27:42,684 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops/test_lstm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/ops 2025-12-05T22:27:42.7135483Z 2025-12-05 22:27:42,684 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops/test_maximum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/ops 2025-12-05T22:27:42.7136334Z 2025-12-05 22:27:42,684 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops/test_minimum.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/ops 2025-12-05T22:27:42.7137201Z 2025-12-05 22:27:42,684 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops/test_mul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/ops 2025-12-05T22:27:42.7138120Z 2025-12-05 22:27:42,684 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test/ops/test_transpose.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/cortex_m/test/ops 2025-12-05T22:27:42.7138509Z 2025-12-05 22:27:42,684 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/test 2025-12-05T22:27:42.7138830Z 2025-12-05 22:27:42,685 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/test/facto 2025-12-05T22:27:42.7139718Z 2025-12-05 22:27:42,685 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/facto/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/facto 2025-12-05T22:27:42.7140491Z 2025-12-05 22:27:42,685 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/facto/facto_specs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/facto 2025-12-05T22:27:42.7141333Z 2025-12-05 22:27:42,685 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/facto/test_facto.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/facto 2025-12-05T22:27:42.7141675Z 2025-12-05 22:27:42,685 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/test/harness 2025-12-05T22:27:42.7142553Z 2025-12-05 22:27:42,685 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness 2025-12-05T22:27:42.7143468Z 2025-12-05 22:27:42,685 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/error_statistics.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness 2025-12-05T22:27:42.7144286Z 2025-12-05 22:27:42,686 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/tester.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness 2025-12-05T22:27:42.7144756Z 2025-12-05 22:27:42,686 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/test/harness/stages 2025-12-05T22:27:42.7145622Z 2025-12-05 22:27:42,686 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness/stages 2025-12-05T22:27:42.7146603Z 2025-12-05 22:27:42,686 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages/export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness/stages 2025-12-05T22:27:42.7147521Z 2025-12-05 22:27:42,686 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages/partition.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness/stages 2025-12-05T22:27:42.7148406Z 2025-12-05 22:27:42,686 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages/quantize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness/stages 2025-12-05T22:27:42.7149482Z 2025-12-05 22:27:42,687 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages/run_passes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness/stages 2025-12-05T22:27:42.7150607Z 2025-12-05 22:27:42,687 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages/serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness/stages 2025-12-05T22:27:42.7151389Z 2025-12-05 22:27:42,687 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages/stage.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness/stages 2025-12-05T22:27:42.7152342Z 2025-12-05 22:27:42,687 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages/to_edge.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness/stages 2025-12-05T22:27:42.7153411Z 2025-12-05 22:27:42,687 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages/to_edge_transform_and_lower.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness/stages 2025-12-05T22:27:42.7154258Z 2025-12-05 22:27:42,687 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/stages/to_executorch.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness/stages 2025-12-05T22:27:42.7154629Z 2025-12-05 22:27:42,687 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/test/harness/tests 2025-12-05T22:27:42.7155634Z 2025-12-05 22:27:42,688 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/harness/tests/test_error_statistics.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/harness/tests 2025-12-05T22:27:42.7156077Z 2025-12-05 22:27:42,688 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/test/suite 2025-12-05T22:27:42.7156757Z 2025-12-05 22:27:42,688 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite 2025-12-05T22:27:42.7157643Z 2025-12-05 22:27:42,688 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/conftest.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite 2025-12-05T22:27:42.7158468Z 2025-12-05 22:27:42,688 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/context.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite 2025-12-05T22:27:42.7159329Z 2025-12-05 22:27:42,688 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/discovery.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite 2025-12-05T22:27:42.7160069Z 2025-12-05 22:27:42,688 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite 2025-12-05T22:27:42.7160974Z 2025-12-05 22:27:42,689 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/generate_markdown_summary.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite 2025-12-05T22:27:42.7161994Z 2025-12-05 22:27:42,689 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/generate_markdown_summary_json.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite 2025-12-05T22:27:42.7162773Z 2025-12-05 22:27:42,689 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/reporting.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite 2025-12-05T22:27:42.7163585Z 2025-12-05 22:27:42,689 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/runner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite 2025-12-05T22:27:42.7163999Z 2025-12-05 22:27:42,689 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/test/suite/flows 2025-12-05T22:27:42.7164870Z 2025-12-05 22:27:42,689 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/flows 2025-12-05T22:27:42.7165794Z 2025-12-05 22:27:42,690 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows/arm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/flows 2025-12-05T22:27:42.7166689Z 2025-12-05 22:27:42,690 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows/coreml.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/flows 2025-12-05T22:27:42.7167584Z 2025-12-05 22:27:42,690 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows/portable.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/flows 2025-12-05T22:27:42.7168456Z 2025-12-05 22:27:42,690 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows/qualcomm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/flows 2025-12-05T22:27:42.7169291Z 2025-12-05 22:27:42,690 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows/vulkan.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/flows 2025-12-05T22:27:42.7170316Z 2025-12-05 22:27:42,690 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/flows/xnnpack.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/flows 2025-12-05T22:27:42.7170681Z 2025-12-05 22:27:42,690 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/test/suite/models 2025-12-05T22:27:42.7171607Z 2025-12-05 22:27:42,691 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/models/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/models 2025-12-05T22:27:42.7172474Z 2025-12-05 22:27:42,691 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/models/test_torchaudio.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/models 2025-12-05T22:27:42.7173440Z 2025-12-05 22:27:42,691 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/models/test_torchvision.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/models 2025-12-05T22:27:42.7174023Z 2025-12-05 22:27:42,691 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/test/suite/operators 2025-12-05T22:27:42.7174857Z 2025-12-05 22:27:42,691 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7175800Z 2025-12-05 22:27:42,691 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_abs.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7176840Z 2025-12-05 22:27:42,691 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_adaptive_avgpool1d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7177887Z 2025-12-05 22:27:42,692 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_adaptive_avgpool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7178978Z 2025-12-05 22:27:42,692 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_adaptive_avgpool3d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7180086Z 2025-12-05 22:27:42,692 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_adaptive_maxpool1d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7181218Z 2025-12-05 22:27:42,692 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_adaptive_maxpool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7182282Z 2025-12-05 22:27:42,692 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_adaptive_maxpool3d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7183245Z 2025-12-05 22:27:42,692 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_add.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7184366Z 2025-12-05 22:27:42,692 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_amax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7185250Z 2025-12-05 22:27:42,693 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_amin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7186244Z 2025-12-05 22:27:42,693 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_argmax.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7187328Z 2025-12-05 22:27:42,693 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_argmin.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7188215Z 2025-12-05 22:27:42,693 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_avgpool1d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7189396Z 2025-12-05 22:27:42,693 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_avgpool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7190746Z 2025-12-05 22:27:42,693 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_avgpool3d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7191818Z 2025-12-05 22:27:42,693 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_cat.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7192698Z 2025-12-05 22:27:42,694 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_ceil.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7193487Z 2025-12-05 22:27:42,694 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_clamp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7194366Z 2025-12-05 22:27:42,694 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_conv1d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7195242Z 2025-12-05 22:27:42,694 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_conv2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7196106Z 2025-12-05 22:27:42,694 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_conv3d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7197110Z 2025-12-05 22:27:42,694 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_convtranspose1d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7198021Z 2025-12-05 22:27:42,695 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_convtranspose2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7199027Z 2025-12-05 22:27:42,695 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_convtranspose3d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7199827Z 2025-12-05 22:27:42,695 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_div.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7200734Z 2025-12-05 22:27:42,695 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_elu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7201639Z 2025-12-05 22:27:42,695 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_embedding.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7202532Z 2025-12-05 22:27:42,695 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_embedding_bag.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7203459Z 2025-12-05 22:27:42,695 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_exp.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7204260Z 2025-12-05 22:27:42,696 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_expand.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7205199Z 2025-12-05 22:27:42,696 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_floor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7206066Z 2025-12-05 22:27:42,696 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_floor_divide.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7207015Z 2025-12-05 22:27:42,696 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_gelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7207936Z 2025-12-05 22:27:42,696 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_glu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7208770Z 2025-12-05 22:27:42,696 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_hardsigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7209725Z 2025-12-05 22:27:42,696 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_hardswish.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7210533Z 2025-12-05 22:27:42,697 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_hardtanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7211497Z 2025-12-05 22:27:42,697 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_index_put.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7212389Z 2025-12-05 22:27:42,697 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_index_select.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7213428Z 2025-12-05 22:27:42,697 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_leaky_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7214445Z 2025-12-05 22:27:42,697 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_linear.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7215306Z 2025-12-05 22:27:42,697 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_log.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7216383Z 2025-12-05 22:27:42,697 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_log10.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7217265Z 2025-12-05 22:27:42,697 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_log1p.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7218409Z 2025-12-05 22:27:42,698 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_log2.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7219547Z 2025-12-05 22:27:42,698 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_logsigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7220372Z 2025-12-05 22:27:42,698 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_lstm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7221368Z 2025-12-05 22:27:42,698 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_masked_fill.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7222317Z 2025-12-05 22:27:42,698 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_maxpool1d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7223397Z 2025-12-05 22:27:42,698 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_maxpool2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7224494Z 2025-12-05 22:27:42,698 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_maxpool3d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7225427Z 2025-12-05 22:27:42,699 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_mean.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7226277Z 2025-12-05 22:27:42,699 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_median.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7227303Z 2025-12-05 22:27:42,699 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_mul.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7228152Z 2025-12-05 22:27:42,699 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_neg.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7229256Z 2025-12-05 22:27:42,699 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_permute.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7230338Z 2025-12-05 22:27:42,699 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_pow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7231139Z 2025-12-05 22:27:42,699 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_prelu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7232208Z 2025-12-05 22:27:42,700 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_relu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7233068Z 2025-12-05 22:27:42,700 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_reshape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7234070Z 2025-12-05 22:27:42,700 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_round.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7235066Z 2025-12-05 22:27:42,700 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_rsqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7235867Z 2025-12-05 22:27:42,700 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_select.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7236946Z 2025-12-05 22:27:42,700 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_sigmoid.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7237800Z 2025-12-05 22:27:42,701 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_silu.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7238778Z 2025-12-05 22:27:42,701 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_slice.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7239841Z 2025-12-05 22:27:42,701 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_split.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7240639Z 2025-12-05 22:27:42,701 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_sqrt.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7241699Z 2025-12-05 22:27:42,701 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_square.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7242715Z 2025-12-05 22:27:42,701 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_squeeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7243577Z 2025-12-05 22:27:42,701 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_stack.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7244563Z 2025-12-05 22:27:42,702 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_sub.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7245411Z 2025-12-05 22:27:42,702 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_tanh.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7246509Z 2025-12-05 22:27:42,702 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_threshold.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7247651Z 2025-12-05 22:27:42,702 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_transpose.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7248511Z 2025-12-05 22:27:42,702 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_trunc.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7249468Z 2025-12-05 22:27:42,702 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_unsqueeze.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7250540Z 2025-12-05 22:27:42,702 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_upsample_bilinear2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7251472Z 2025-12-05 22:27:42,703 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_upsample_nearest2d.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7252468Z 2025-12-05 22:27:42,703 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/operators/test_view.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/operators 2025-12-05T22:27:42.7252799Z 2025-12-05 22:27:42,703 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/test/suite/tests 2025-12-05T22:27:42.7253684Z 2025-12-05 22:27:42,703 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/tests/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/tests 2025-12-05T22:27:42.7254588Z 2025-12-05 22:27:42,703 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/backends/test/suite/tests/test_reporting.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/backends/test/suite/tests 2025-12-05T22:27:42.7254986Z 2025-12-05 22:27:42,704 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen 2025-12-05T22:27:42.7255670Z 2025-12-05 22:27:42,704 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen 2025-12-05T22:27:42.7256217Z 2025-12-05 22:27:42,704 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen 2025-12-05T22:27:42.7256971Z 2025-12-05 22:27:42,704 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen 2025-12-05T22:27:42.7257589Z 2025-12-05 22:27:42,704 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/parse.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen 2025-12-05T22:27:42.7257887Z 2025-12-05 22:27:42,705 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api 2025-12-05T22:27:42.7258648Z 2025-12-05 22:27:42,705 [INFO] 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-12-05T22:27:42.7259268Z 2025-12-05 22:27:42,705 [INFO] 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-12-05T22:27:42.7260055Z 2025-12-05 22:27:42,705 [INFO] 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-12-05T22:27:42.7260721Z 2025-12-05 22:27:42,705 [INFO] 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-12-05T22:27:42.7261173Z 2025-12-05 22:27:42,705 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api/types 2025-12-05T22:27:42.7262057Z 2025-12-05 22:27:42,706 [INFO] 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-12-05T22:27:42.7263157Z 2025-12-05 22:27:42,706 [INFO] 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-12-05T22:27:42.7263831Z 2025-12-05 22:27:42,706 [INFO] 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-12-05T22:27:42.7264179Z 2025-12-05 22:27:42,706 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/test 2025-12-05T22:27:42.7265019Z 2025-12-05 22:27:42,706 [INFO] 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-12-05T22:27:42.7265763Z 2025-12-05 22:27:42,706 [INFO] 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-12-05T22:27:42.7266676Z 2025-12-05 22:27:42,707 [INFO] 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-12-05T22:27:42.7267350Z 2025-12-05 22:27:42,707 [INFO] 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-12-05T22:27:42.7268209Z 2025-12-05 22:27:42,707 [INFO] 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-12-05T22:27:42.7268965Z 2025-12-05 22:27:42,707 [INFO] 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-12-05T22:27:42.7269260Z 2025-12-05 22:27:42,707 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools 2025-12-05T22:27:42.7270180Z 2025-12-05 22:27:42,707 [INFO] 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-12-05T22:27:42.7270889Z 2025-12-05 22:27:42,708 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/combine_prim_ops_headers.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-12-05T22:27:42.7271736Z 2025-12-05 22:27:42,708 [INFO] 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-12-05T22:27:42.7272369Z 2025-12-05 22:27:42,708 [INFO] 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-12-05T22:27:42.7273223Z 2025-12-05 22:27:42,708 [INFO] 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-12-05T22:27:42.7273926Z 2025-12-05 22:27:42,708 [INFO] 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-12-05T22:27:42.7274787Z 2025-12-05 22:27:42,709 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/gen_selected_prim_ops.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-12-05T22:27:42.7275417Z 2025-12-05 22:27:42,709 [INFO] 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-12-05T22:27:42.7276350Z 2025-12-05 22:27:42,709 [INFO] 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-12-05T22:27:42.7276653Z 2025-12-05 22:27:42,709 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools/test 2025-12-05T22:27:42.7277548Z 2025-12-05 22:27:42,709 [INFO] 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-12-05T22:27:42.7278335Z 2025-12-05 22:27:42,709 [INFO] 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-12-05T22:27:42.7279149Z 2025-12-05 22:27:42,710 [INFO] 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-12-05T22:27:42.7280000Z 2025-12-05 22:27:42,710 [INFO] 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-12-05T22:27:42.7280936Z 2025-12-05 22:27:42,710 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test/test_tools_selective_build.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools/test 2025-12-05T22:27:42.7281628Z 2025-12-05 22:27:42,710 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/selective_build.pyi -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-12-05T22:27:42.7282671Z 2025-12-05 22:27:42,710 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/selective_build.cpython-310-x86_64-linux-gnu.so -> pip-out/bdist.linux-x86_64/wheel/./executorch/codegen/tools 2025-12-05T22:27:42.7282975Z 2025-12-05 22:27:42,711 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools 2025-12-05T22:27:42.7283721Z 2025-12-05 22:27:42,711 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools 2025-12-05T22:27:42.7284181Z 2025-12-05 22:27:42,711 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug 2025-12-05T22:27:42.7285102Z 2025-12-05 22:27:42,711 [INFO] 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-12-05T22:27:42.7285865Z 2025-12-05 22:27:42,711 [INFO] 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-12-05T22:27:42.7286284Z 2025-12-05 22:27:42,712 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug/tests 2025-12-05T22:27:42.7287218Z 2025-12-05 22:27:42,712 [INFO] 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-12-05T22:27:42.7287613Z 2025-12-05 22:27:42,712 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program 2025-12-05T22:27:42.7288468Z 2025-12-05 22:27:42,712 [INFO] 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-12-05T22:27:42.7289190Z 2025-12-05 22:27:42,712 [INFO] 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-12-05T22:27:42.7290089Z 2025-12-05 22:27:42,712 [INFO] 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-12-05T22:27:42.7290521Z 2025-12-05 22:27:42,713 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema 2025-12-05T22:27:42.7291434Z 2025-12-05 22:27:42,713 [INFO] 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-12-05T22:27:42.7292487Z 2025-12-05 22:27:42,713 [INFO] 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-12-05T22:27:42.7292946Z 2025-12-05 22:27:42,713 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema/test 2025-12-05T22:27:42.7293984Z 2025-12-05 22:27:42,713 [INFO] 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-12-05T22:27:42.7294972Z 2025-12-05 22:27:42,713 [INFO] 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-12-05T22:27:42.7295891Z 2025-12-05 22:27:42,713 [INFO] 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-12-05T22:27:42.7296371Z 2025-12-05 22:27:42,714 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize 2025-12-05T22:27:42.7297228Z 2025-12-05 22:27:42,714 [INFO] 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-12-05T22:27:42.7297674Z 2025-12-05 22:27:42,714 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize/test 2025-12-05T22:27:42.7298719Z 2025-12-05 22:27:42,714 [INFO] 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-12-05T22:27:42.7299827Z 2025-12-05 22:27:42,714 [INFO] 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-12-05T22:27:42.7300846Z 2025-12-05 22:27:42,714 [INFO] 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-12-05T22:27:42.7301356Z 2025-12-05 22:27:42,715 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/test 2025-12-05T22:27:42.7302216Z 2025-12-05 22:27:42,715 [INFO] 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-12-05T22:27:42.7303224Z 2025-12-05 22:27:42,715 [INFO] 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-12-05T22:27:42.7304119Z 2025-12-05 22:27:42,715 [INFO] 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-12-05T22:27:42.7304475Z 2025-12-05 22:27:42,715 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/util 2025-12-05T22:27:42.7305366Z 2025-12-05 22:27:42,715 [INFO] 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-12-05T22:27:42.7305859Z 2025-12-05 22:27:42,716 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/debug_format 2025-12-05T22:27:42.7306662Z 2025-12-05 22:27:42,716 [INFO] 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-12-05T22:27:42.7307417Z 2025-12-05 22:27:42,716 [INFO] 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-12-05T22:27:42.7307732Z 2025-12-05 22:27:42,716 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump 2025-12-05T22:27:42.7308573Z 2025-12-05 22:27:42,716 [INFO] 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-12-05T22:27:42.7309304Z 2025-12-05 22:27:42,716 [INFO] 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-12-05T22:27:42.7309691Z 2025-12-05 22:27:42,716 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump/tests 2025-12-05T22:27:42.7310589Z 2025-12-05 22:27:42,717 [INFO] 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-12-05T22:27:42.7311412Z 2025-12-05 22:27:42,717 [INFO] 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-12-05T22:27:42.7312189Z 2025-12-05 22:27:42,717 [INFO] 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-12-05T22:27:42.7312504Z 2025-12-05 22:27:42,717 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord 2025-12-05T22:27:42.7313272Z 2025-12-05 22:27:42,717 [INFO] 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-12-05T22:27:42.7314076Z 2025-12-05 22:27:42,717 [INFO] 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-12-05T22:27:42.7314482Z 2025-12-05 22:27:42,718 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord/tests 2025-12-05T22:27:42.7334781Z 2025-12-05 22:27:42,718 [INFO] 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-12-05T22:27:42.7335217Z 2025-12-05 22:27:42,718 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector 2025-12-05T22:27:42.7336015Z 2025-12-05 22:27:42,718 [INFO] 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-12-05T22:27:42.7336994Z 2025-12-05 22:27:42,718 [INFO] 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-12-05T22:27:42.7337761Z 2025-12-05 22:27:42,718 [INFO] 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-12-05T22:27:42.7338636Z 2025-12-05 22:27:42,719 [INFO] 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-12-05T22:27:42.7339712Z 2025-12-05 22:27:42,719 [INFO] 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-12-05T22:27:42.7340117Z 2025-12-05 22:27:42,719 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector/numerical_comparator 2025-12-05T22:27:42.7341140Z 2025-12-05 22:27:42,719 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/numerical_comparator/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/numerical_comparator 2025-12-05T22:27:42.7342163Z 2025-12-05 22:27:42,719 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/numerical_comparator/l1_numerical_comparator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/numerical_comparator 2025-12-05T22:27:42.7343294Z 2025-12-05 22:27:42,720 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/numerical_comparator/mse_numerical_comparator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/numerical_comparator 2025-12-05T22:27:42.7344346Z 2025-12-05 22:27:42,720 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/numerical_comparator/numerical_comparator_base.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/numerical_comparator 2025-12-05T22:27:42.7345397Z 2025-12-05 22:27:42,720 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/numerical_comparator/snr_numerical_comparator.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/numerical_comparator 2025-12-05T22:27:42.7345720Z 2025-12-05 22:27:42,720 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector/tests 2025-12-05T22:27:42.7346664Z 2025-12-05 22:27:42,720 [INFO] 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-12-05T22:27:42.7347506Z 2025-12-05 22:27:42,720 [INFO] 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-12-05T22:27:42.7348623Z 2025-12-05 22:27:42,721 [INFO] 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-12-05T22:27:42.7349547Z 2025-12-05 22:27:42,721 [INFO] 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-12-05T22:27:42.7350429Z 2025-12-05 22:27:42,721 [INFO] 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-12-05T22:27:42.7351287Z 2025-12-05 22:27:42,721 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/l1_comparator_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-12-05T22:27:42.7352093Z 2025-12-05 22:27:42,721 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/mse_comparator_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-12-05T22:27:42.7352983Z 2025-12-05 22:27:42,721 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests/snr_comparator_test.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/inspector/tests 2025-12-05T22:27:42.7353283Z 2025-12-05 22:27:42,722 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/scripts 2025-12-05T22:27:42.7354023Z 2025-12-05 22:27:42,722 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/scripts/generate_profiling_csv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/devtools/scripts 2025-12-05T22:27:42.7354514Z 2025-12-05 22:27:42,722 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/size_analysis_tool 2025-12-05T22:27:42.7355299Z 2025-12-05 22:27:42,722 [INFO] 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-12-05T22:27:42.7356228Z 2025-12-05 22:27:42,722 [INFO] 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-12-05T22:27:42.7356548Z 2025-12-05 22:27:42,722 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/visualization 2025-12-05T22:27:42.7357294Z 2025-12-05 22:27:42,723 [INFO] 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-12-05T22:27:42.7358144Z 2025-12-05 22:27:42,723 [INFO] 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-12-05T22:27:42.7359059Z 2025-12-05 22:27:42,723 [INFO] 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-12-05T22:27:42.7359305Z 2025-12-05 22:27:42,723 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir 2025-12-05T22:27:42.7359840Z 2025-12-05 22:27:42,723 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7360412Z 2025-12-05 22:27:42,723 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_warnings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7360979Z 2025-12-05 22:27:42,724 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/common.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7361564Z 2025-12-05 22:27:42,724 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/control_flow.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7362284Z 2025-12-05 22:27:42,724 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/debug_handle_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7362832Z 2025-12-05 22:27:42,724 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/delegate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7363466Z 2025-12-05 22:27:42,724 [INFO] 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-12-05T22:27:42.7364018Z 2025-12-05 22:27:42,724 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dynamic_shape.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7364692Z 2025-12-05 22:27:42,724 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/error.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7365248Z 2025-12-05 22:27:42,725 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/graph.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7365846Z 2025-12-05 22:27:42,725 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/graph_module.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7366542Z 2025-12-05 22:27:42,725 [INFO] 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-12-05T22:27:42.7407606Z 2025-12-05 22:27:42,725 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/memory.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7408397Z 2025-12-05 22:27:42,725 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/memory_planning.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7408960Z 2025-12-05 22:27:42,725 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/pass_base.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7409611Z 2025-12-05 22:27:42,726 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/pass_manager.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7410219Z 2025-12-05 22:27:42,726 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/print_program.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7410898Z 2025-12-05 22:27:42,726 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/scalar_type.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7411475Z 2025-12-05 22:27:42,726 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/schema.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7412074Z 2025-12-05 22:27:42,726 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/sym_util.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7412684Z 2025-12-05 22:27:42,726 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tensor.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7413287Z 2025-12-05 22:27:42,726 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tensor_layout.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7413986Z 2025-12-05 22:27:42,727 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tracer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7414504Z 2025-12-05 22:27:42,727 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7415111Z 2025-12-05 22:27:42,727 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7415786Z 2025-12-05 22:27:42,727 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/wrap.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7416129Z 2025-12-05 22:27:42,727 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize 2025-12-05T22:27:42.7416916Z 2025-12-05 22:27:42,727 [INFO] 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-12-05T22:27:42.7417540Z 2025-12-05 22:27:42,728 [INFO] 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-12-05T22:27:42.7418479Z 2025-12-05 22:27:42,728 [INFO] 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-12-05T22:27:42.7419153Z 2025-12-05 22:27:42,728 [INFO] 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-12-05T22:27:42.7419925Z 2025-12-05 22:27:42,728 [INFO] 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-12-05T22:27:42.7420596Z 2025-12-05 22:27:42,728 [INFO] 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-12-05T22:27:42.7421464Z 2025-12-05 22:27:42,728 [INFO] 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-12-05T22:27:42.7422303Z 2025-12-05 22:27:42,728 [INFO] 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-12-05T22:27:42.7423022Z 2025-12-05 22:27:42,729 [INFO] 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-12-05T22:27:42.7423352Z 2025-12-05 22:27:42,729 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize/test 2025-12-05T22:27:42.7424078Z 2025-12-05 22:27:42,729 [INFO] 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-12-05T22:27:42.7424824Z 2025-12-05 22:27:42,729 [INFO] 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-12-05T22:27:42.7425650Z 2025-12-05 22:27:42,729 [INFO] 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-12-05T22:27:42.7426479Z 2025-12-05 22:27:42,729 [INFO] 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-12-05T22:27:42.7427257Z 2025-12-05 22:27:42,730 [INFO] 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-12-05T22:27:42.7427968Z 2025-12-05 22:27:42,730 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test/test_serialize.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/_serialize/test 2025-12-05T22:27:42.7428843Z 2025-12-05 22:27:42,730 [INFO] 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-12-05T22:27:42.7429500Z 2025-12-05 22:27:42,730 [INFO] 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-12-05T22:27:42.7429906Z 2025-12-05 22:27:42,730 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend 2025-12-05T22:27:42.7430643Z 2025-12-05 22:27:42,730 [INFO] 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-12-05T22:27:42.7431322Z 2025-12-05 22:27:42,731 [INFO] 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-12-05T22:27:42.7432121Z 2025-12-05 22:27:42,731 [INFO] 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-12-05T22:27:42.7432836Z 2025-12-05 22:27:42,731 [INFO] 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-12-05T22:27:42.7433592Z 2025-12-05 22:27:42,731 [INFO] 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-12-05T22:27:42.7434231Z 2025-12-05 22:27:42,731 [INFO] 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-12-05T22:27:42.7434725Z 2025-12-05 22:27:42,731 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/canonical_partitioners 2025-12-05T22:27:42.7435780Z 2025-12-05 22:27:42,732 [INFO] 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-12-05T22:27:42.7436835Z 2025-12-05 22:27:42,732 [INFO] 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-12-05T22:27:42.7437947Z 2025-12-05 22:27:42,732 [INFO] 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-12-05T22:27:42.7439078Z 2025-12-05 22:27:42,732 [INFO] 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-12-05T22:27:42.7440166Z 2025-12-05 22:27:42,732 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners/group_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/canonical_partitioners 2025-12-05T22:27:42.7475992Z 2025-12-05 22:27:42,732 [INFO] 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-12-05T22:27:42.7476406Z 2025-12-05 22:27:42,733 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test 2025-12-05T22:27:42.7477455Z 2025-12-05 22:27:42,733 [INFO] 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-12-05T22:27:42.7478340Z 2025-12-05 22:27:42,733 [INFO] 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-12-05T22:27:42.7479184Z 2025-12-05 22:27:42,733 [INFO] 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-12-05T22:27:42.7480104Z 2025-12-05 22:27:42,733 [INFO] 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-12-05T22:27:42.7480988Z 2025-12-05 22:27:42,733 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demo_backend.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-12-05T22:27:42.7481932Z 2025-12-05 22:27:42,733 [INFO] 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-12-05T22:27:42.7482772Z 2025-12-05 22:27:42,734 [INFO] 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-12-05T22:27:42.7483646Z 2025-12-05 22:27:42,734 [INFO] 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-12-05T22:27:42.7484565Z 2025-12-05 22:27:42,734 [INFO] 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-12-05T22:27:42.7485359Z 2025-12-05 22:27:42,734 [INFO] 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-12-05T22:27:42.7486202Z 2025-12-05 22:27:42,734 [INFO] 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-12-05T22:27:42.7487205Z 2025-12-05 22:27:42,734 [INFO] 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-12-05T22:27:42.7487998Z 2025-12-05 22:27:42,734 [INFO] 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-12-05T22:27:42.7488856Z 2025-12-05 22:27:42,735 [INFO] 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-12-05T22:27:42.7489799Z 2025-12-05 22:27:42,735 [INFO] 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-12-05T22:27:42.7490581Z 2025-12-05 22:27:42,735 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/test_group_partitioner.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/backend/test 2025-12-05T22:27:42.7491499Z 2025-12-05 22:27:42,735 [INFO] 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-12-05T22:27:42.7492420Z 2025-12-05 22:27:42,735 [INFO] 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-12-05T22:27:42.7493145Z 2025-12-05 22:27:42,735 [INFO] 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-12-05T22:27:42.7494063Z 2025-12-05 22:27:42,735 [INFO] 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-12-05T22:27:42.7494949Z 2025-12-05 22:27:42,736 [INFO] 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-12-05T22:27:42.7495269Z 2025-12-05 22:27:42,736 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos 2025-12-05T22:27:42.7496338Z 2025-12-05 22:27:42,736 [INFO] 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-12-05T22:27:42.7496679Z 2025-12-05 22:27:42,736 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos/rpc 2025-12-05T22:27:42.7497758Z 2025-12-05 22:27:42,736 [INFO] 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-12-05T22:27:42.7498833Z 2025-12-05 22:27:42,736 [INFO] 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-12-05T22:27:42.7499654Z 2025-12-05 22:27:42,737 [INFO] 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-12-05T22:27:42.7500098Z 2025-12-05 22:27:42,737 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/capture 2025-12-05T22:27:42.7500702Z 2025-12-05 22:27:42,737 [INFO] 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-12-05T22:27:42.7501506Z 2025-12-05 22:27:42,737 [INFO] 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-12-05T22:27:42.7502252Z 2025-12-05 22:27:42,737 [INFO] 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-12-05T22:27:42.7503005Z 2025-12-05 22:27:42,737 [INFO] 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-12-05T22:27:42.7503289Z 2025-12-05 22:27:42,738 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects 2025-12-05T22:27:42.7504109Z 2025-12-05 22:27:42,738 [INFO] 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-12-05T22:27:42.7504741Z 2025-12-05 22:27:42,738 [INFO] 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-12-05T22:27:42.7505165Z 2025-12-05 22:27:42,738 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend 2025-12-05T22:27:42.7505912Z 2025-12-05 22:27:42,738 [INFO] 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-12-05T22:27:42.7506357Z 2025-12-05 22:27:42,738 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend/test 2025-12-05T22:27:42.7507253Z 2025-12-05 22:27:42,739 [INFO] 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-12-05T22:27:42.7507684Z 2025-12-05 22:27:42,739 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge 2025-12-05T22:27:42.7508398Z 2025-12-05 22:27:42,739 [INFO] 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-12-05T22:27:42.7508841Z 2025-12-05 22:27:42,739 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/arg 2025-12-05T22:27:42.7509708Z 2025-12-05 22:27:42,739 [INFO] 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-12-05T22:27:42.7542488Z 2025-12-05 22:27:42,739 [INFO] 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-12-05T22:27:42.7542988Z 2025-12-05 22:27:42,740 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/dtype 2025-12-05T22:27:42.7543947Z 2025-12-05 22:27:42,740 [INFO] 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-12-05T22:27:42.7544789Z 2025-12-05 22:27:42,740 [INFO] 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-12-05T22:27:42.7545750Z 2025-12-05 22:27:42,740 [INFO] 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-12-05T22:27:42.7546136Z 2025-12-05 22:27:42,740 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op 2025-12-05T22:27:42.7546941Z 2025-12-05 22:27:42,740 [INFO] 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-12-05T22:27:42.7547868Z 2025-12-05 22:27:42,740 [INFO] 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-12-05T22:27:42.7548330Z 2025-12-05 22:27:42,741 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op/test 2025-12-05T22:27:42.7549462Z 2025-12-05 22:27:42,741 [INFO] 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-12-05T22:27:42.7549878Z 2025-12-05 22:27:42,741 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/spec 2025-12-05T22:27:42.7550685Z 2025-12-05 22:27:42,741 [INFO] 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-12-05T22:27:42.7551497Z 2025-12-05 22:27:42,742 [INFO] 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-12-05T22:27:42.7552013Z 2025-12-05 22:27:42,742 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/test 2025-12-05T22:27:42.7552832Z 2025-12-05 22:27:42,742 [INFO] 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-12-05T22:27:42.7553636Z 2025-12-05 22:27:42,742 [INFO] 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-12-05T22:27:42.7554425Z 2025-12-05 22:27:42,742 [INFO] 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-12-05T22:27:42.7554804Z 2025-12-05 22:27:42,742 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/test 2025-12-05T22:27:42.7555821Z 2025-12-05 22:27:42,743 [INFO] 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-12-05T22:27:42.7556150Z 2025-12-05 22:27:42,743 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit 2025-12-05T22:27:42.7556917Z 2025-12-05 22:27:42,743 [INFO] 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-12-05T22:27:42.7557697Z 2025-12-05 22:27:42,743 [INFO] 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-12-05T22:27:42.7558380Z 2025-12-05 22:27:42,743 [INFO] 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-12-05T22:27:42.7558668Z 2025-12-05 22:27:42,744 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit/test 2025-12-05T22:27:42.7559488Z 2025-12-05 22:27:42,744 [INFO] 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-12-05T22:27:42.7559878Z 2025-12-05 22:27:42,744 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator 2025-12-05T22:27:42.7560607Z 2025-12-05 22:27:42,744 [INFO] 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-12-05T22:27:42.7561340Z 2025-12-05 22:27:42,744 [INFO] 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-12-05T22:27:42.7562028Z 2025-12-05 22:27:42,744 [INFO] 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-12-05T22:27:42.7562451Z 2025-12-05 22:27:42,745 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator/test 2025-12-05T22:27:42.7563246Z 2025-12-05 22:27:42,745 [INFO] 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-12-05T22:27:42.7563665Z 2025-12-05 22:27:42,745 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/passes 2025-12-05T22:27:42.7564357Z 2025-12-05 22:27:42,745 [INFO] 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-12-05T22:27:42.7565167Z 2025-12-05 22:27:42,745 [INFO] 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-12-05T22:27:42.7566011Z 2025-12-05 22:27:42,745 [INFO] 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-12-05T22:27:42.7566738Z 2025-12-05 22:27:42,746 [INFO] 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-12-05T22:27:42.7567624Z 2025-12-05 22:27:42,746 [INFO] 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-12-05T22:27:42.7568358Z 2025-12-05 22:27:42,746 [INFO] 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-12-05T22:27:42.7569238Z 2025-12-05 22:27:42,746 [INFO] 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-12-05T22:27:42.7570047Z 2025-12-05 22:27:42,746 [INFO] 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-12-05T22:27:42.7570911Z 2025-12-05 22:27:42,746 [INFO] 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-12-05T22:27:42.7571617Z 2025-12-05 22:27:42,746 [INFO] 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-12-05T22:27:42.7572606Z 2025-12-05 22:27:42,747 [INFO] 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-12-05T22:27:42.7573335Z 2025-12-05 22:27:42,747 [INFO] 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-12-05T22:27:42.7574212Z 2025-12-05 22:27:42,747 [INFO] 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-12-05T22:27:42.7574978Z 2025-12-05 22:27:42,747 [INFO] 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-12-05T22:27:42.7575827Z 2025-12-05 22:27:42,747 [INFO] 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-12-05T22:27:42.7576531Z 2025-12-05 22:27:42,747 [INFO] 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-12-05T22:27:42.7611388Z 2025-12-05 22:27:42,747 [INFO] 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-12-05T22:27:42.7612054Z 2025-12-05 22:27:42,748 [INFO] 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-12-05T22:27:42.7612881Z 2025-12-05 22:27:42,748 [INFO] 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-12-05T22:27:42.7613501Z 2025-12-05 22:27:42,748 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes/reinplace.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/passes 2025-12-05T22:27:42.7614343Z 2025-12-05 22:27:42,748 [INFO] 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-12-05T22:27:42.7615025Z 2025-12-05 22:27:42,748 [INFO] 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-12-05T22:27:42.7615803Z 2025-12-05 22:27:42,748 [INFO] 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-12-05T22:27:42.7616505Z 2025-12-05 22:27:42,748 [INFO] 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-12-05T22:27:42.7617334Z 2025-12-05 22:27:42,749 [INFO] 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-12-05T22:27:42.7618088Z 2025-12-05 22:27:42,749 [INFO] 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-12-05T22:27:42.7618928Z 2025-12-05 22:27:42,749 [INFO] 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-12-05T22:27:42.7619756Z 2025-12-05 22:27:42,749 [INFO] 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-12-05T22:27:42.7620516Z 2025-12-05 22:27:42,749 [INFO] 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-12-05T22:27:42.7621282Z 2025-12-05 22:27:42,749 [INFO] 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-12-05T22:27:42.7621927Z 2025-12-05 22:27:42,749 [INFO] 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-12-05T22:27:42.7622605Z 2025-12-05 22:27:42,750 [INFO] 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-12-05T22:27:42.7623237Z 2025-12-05 22:27:42,750 [INFO] 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-12-05T22:27:42.7623971Z 2025-12-05 22:27:42,750 [INFO] 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-12-05T22:27:42.7624249Z 2025-12-05 22:27:42,750 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program 2025-12-05T22:27:42.7624846Z 2025-12-05 22:27:42,750 [INFO] 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-12-05T22:27:42.7625528Z 2025-12-05 22:27:42,750 [INFO] 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-12-05T22:27:42.7626262Z 2025-12-05 22:27:42,751 [INFO] 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-12-05T22:27:42.7626562Z 2025-12-05 22:27:42,751 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program/test 2025-12-05T22:27:42.7627319Z 2025-12-05 22:27:42,751 [INFO] 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-12-05T22:27:42.7628133Z 2025-12-05 22:27:42,751 [INFO] 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-12-05T22:27:42.7629097Z 2025-12-05 22:27:42,751 [INFO] 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-12-05T22:27:42.7629384Z 2025-12-05 22:27:42,752 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/serde 2025-12-05T22:27:42.7630110Z 2025-12-05 22:27:42,752 [INFO] 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-12-05T22:27:42.7630843Z 2025-12-05 22:27:42,752 [INFO] 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-12-05T22:27:42.7631487Z 2025-12-05 22:27:42,752 [INFO] 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-12-05T22:27:42.7632140Z 2025-12-05 22:27:42,752 [INFO] 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-12-05T22:27:42.7632856Z 2025-12-05 22:27:42,752 [INFO] 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-12-05T22:27:42.7633509Z 2025-12-05 22:27:42,753 [INFO] 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-12-05T22:27:42.7633782Z 2025-12-05 22:27:42,753 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/tests 2025-12-05T22:27:42.7634635Z 2025-12-05 22:27:42,753 [INFO] 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-12-05T22:27:42.7635244Z 2025-12-05 22:27:42,753 [INFO] 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-12-05T22:27:42.7636073Z 2025-12-05 22:27:42,753 [INFO] 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-12-05T22:27:42.7636839Z 2025-12-05 22:27:42,753 [INFO] 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-12-05T22:27:42.7637492Z 2025-12-05 22:27:42,753 [INFO] 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-12-05T22:27:42.7638209Z 2025-12-05 22:27:42,753 [INFO] 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-12-05T22:27:42.7638902Z 2025-12-05 22:27:42,754 [INFO] 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-12-05T22:27:42.7639562Z 2025-12-05 22:27:42,754 [INFO] 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-12-05T22:27:42.7640343Z 2025-12-05 22:27:42,754 [INFO] 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-12-05T22:27:42.7641090Z 2025-12-05 22:27:42,754 [INFO] 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-12-05T22:27:42.7641857Z 2025-12-05 22:27:42,754 [INFO] 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-12-05T22:27:42.7642512Z 2025-12-05 22:27:42,754 [INFO] 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-12-05T22:27:42.7682071Z 2025-12-05 22:27:42,755 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_extract_io_quant_params.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-12-05T22:27:42.7682891Z 2025-12-05 22:27:42,755 [INFO] 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-12-05T22:27:42.7683771Z 2025-12-05 22:27:42,755 [INFO] 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-12-05T22:27:42.7684624Z 2025-12-05 22:27:42,755 [INFO] 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-12-05T22:27:42.7685667Z 2025-12-05 22:27:42,755 [INFO] 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-12-05T22:27:42.7686401Z 2025-12-05 22:27:42,755 [INFO] 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-12-05T22:27:42.7687216Z 2025-12-05 22:27:42,756 [INFO] 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-12-05T22:27:42.7688021Z 2025-12-05 22:27:42,756 [INFO] 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-12-05T22:27:42.7688774Z 2025-12-05 22:27:42,756 [INFO] 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-12-05T22:27:42.7689407Z 2025-12-05 22:27:42,756 [INFO] 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-12-05T22:27:42.7690258Z 2025-12-05 22:27:42,756 [INFO] 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-12-05T22:27:42.7690916Z 2025-12-05 22:27:42,756 [INFO] 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-12-05T22:27:42.7691643Z 2025-12-05 22:27:42,757 [INFO] 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-12-05T22:27:42.7692377Z 2025-12-05 22:27:42,757 [INFO] 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-12-05T22:27:42.7693049Z 2025-12-05 22:27:42,757 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests/test_reinplace_pass.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir/tests 2025-12-05T22:27:42.7693904Z 2025-12-05 22:27:42,757 [INFO] 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-12-05T22:27:42.7694682Z 2025-12-05 22:27:42,757 [INFO] 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-12-05T22:27:42.7695389Z 2025-12-05 22:27:42,757 [INFO] 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-12-05T22:27:42.7696035Z 2025-12-05 22:27:42,758 [INFO] 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-12-05T22:27:42.7696768Z 2025-12-05 22:27:42,758 [INFO] 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-12-05T22:27:42.7697436Z 2025-12-05 22:27:42,758 [INFO] 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-12-05T22:27:42.7698202Z 2025-12-05 22:27:42,758 [INFO] 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-12-05T22:27:42.7698850Z 2025-12-05 22:27:42,758 [INFO] 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-12-05T22:27:42.7699197Z 2025-12-05 22:27:42,758 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification 2025-12-05T22:27:42.7700000Z 2025-12-05 22:27:42,759 [INFO] 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-12-05T22:27:42.7700738Z 2025-12-05 22:27:42,759 [INFO] 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-12-05T22:27:42.7701539Z 2025-12-05 22:27:42,759 [INFO] 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-12-05T22:27:42.7702400Z 2025-12-05 22:27:42,759 [INFO] 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-12-05T22:27:42.7702775Z 2025-12-05 22:27:42,759 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification/test 2025-12-05T22:27:42.7703581Z 2025-12-05 22:27:42,759 [INFO] 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-12-05T22:27:42.7704251Z 2025-12-05 22:27:42,760 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/exir/delegate.pyi -> pip-out/bdist.linux-x86_64/wheel/./executorch/exir 2025-12-05T22:27:42.7704507Z 2025-12-05 22:27:42,760 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/export 2025-12-05T22:27:42.7705235Z 2025-12-05 22:27:42,760 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export 2025-12-05T22:27:42.7705848Z 2025-12-05 22:27:42,760 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export 2025-12-05T22:27:42.7706468Z 2025-12-05 22:27:42,760 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/recipe.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export 2025-12-05T22:27:42.7707169Z 2025-12-05 22:27:42,760 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/recipe_provider.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export 2025-12-05T22:27:42.7707904Z 2025-12-05 22:27:42,761 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/recipe_registry.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export 2025-12-05T22:27:42.7708611Z 2025-12-05 22:27:42,761 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/stages.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export 2025-12-05T22:27:42.7709247Z 2025-12-05 22:27:42,761 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/target_recipes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export 2025-12-05T22:27:42.7709928Z 2025-12-05 22:27:42,761 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/types.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export 2025-12-05T22:27:42.7710495Z 2025-12-05 22:27:42,761 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export 2025-12-05T22:27:42.7710893Z 2025-12-05 22:27:42,761 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/export/tests 2025-12-05T22:27:42.7711673Z 2025-12-05 22:27:42,762 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests/test_executorch_export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export/tests 2025-12-05T22:27:42.7712436Z 2025-12-05 22:27:42,762 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests/test_export_recipe.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export/tests 2025-12-05T22:27:42.7713173Z 2025-12-05 22:27:42,762 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests/test_export_session.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export/tests 2025-12-05T22:27:42.7713991Z 2025-12-05 22:27:42,762 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests/test_export_stages.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export/tests 2025-12-05T22:27:42.7714669Z 2025-12-05 22:27:42,762 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests/test_recipe_provider.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export/tests 2025-12-05T22:27:42.7775654Z 2025-12-05 22:27:42,762 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests/test_recipe_registry.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export/tests 2025-12-05T22:27:42.7777134Z 2025-12-05 22:27:42,763 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/export/tests/test_target_recipes.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/export/tests 2025-12-05T22:27:42.7777504Z 2025-12-05 22:27:42,763 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime 2025-12-05T22:27:42.7778114Z 2025-12-05 22:27:42,763 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/runtime 2025-12-05T22:27:42.7778463Z 2025-12-05 22:27:42,763 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/test 2025-12-05T22:27:42.7779225Z 2025-12-05 22:27:42,763 [INFO] 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-12-05T22:27:42.7779981Z 2025-12-05 22:27:42,763 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test/test_runtime_etdump_gen.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/runtime/test 2025-12-05T22:27:42.7780271Z 2025-12-05 22:27:42,764 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel 2025-12-05T22:27:42.7780651Z 2025-12-05 22:27:42,764 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel/test 2025-12-05T22:27:42.7781456Z 2025-12-05 22:27:42,764 [INFO] 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-12-05T22:27:42.7781706Z 2025-12-05 22:27:42,764 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/util 2025-12-05T22:27:42.7782538Z 2025-12-05 22:27:42,764 [INFO] 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-12-05T22:27:42.7783271Z 2025-12-05 22:27:42,764 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/util/collect_env.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/util 2025-12-05T22:27:42.7783925Z 2025-12-05 22:27:42,764 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/util/python_profiler.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/util 2025-12-05T22:27:42.7784205Z 2025-12-05 22:27:42,765 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples 2025-12-05T22:27:42.7784663Z 2025-12-05 22:27:42,765 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/llm_pte_finetuning 2025-12-05T22:27:42.7785471Z 2025-12-05 22:27:42,765 [INFO] 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-12-05T22:27:42.7786393Z 2025-12-05 22:27:42,765 [INFO] 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-12-05T22:27:42.7787170Z 2025-12-05 22:27:42,765 [INFO] 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-12-05T22:27:42.7788003Z 2025-12-05 22:27:42,765 [INFO] 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-12-05T22:27:42.7789014Z 2025-12-05 22:27:42,765 [INFO] 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-12-05T22:27:42.7789874Z 2025-12-05 22:27:42,766 [INFO] 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-12-05T22:27:42.7790892Z 2025-12-05 22:27:42,766 [INFO] 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-12-05T22:27:42.7791746Z 2025-12-05 22:27:42,766 [INFO] 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-12-05T22:27:42.7792679Z 2025-12-05 22:27:42,766 [INFO] 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-12-05T22:27:42.7793024Z 2025-12-05 22:27:42,766 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models 2025-12-05T22:27:42.7793809Z 2025-12-05 22:27:42,766 [INFO] 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-12-05T22:27:42.7794528Z 2025-12-05 22:27:42,767 [INFO] 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-12-05T22:27:42.7795374Z 2025-12-05 22:27:42,767 [INFO] 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-12-05T22:27:42.7796095Z 2025-12-05 22:27:42,767 [INFO] 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-12-05T22:27:42.7796448Z 2025-12-05 22:27:42,767 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/codegen 2025-12-05T22:27:42.7797359Z 2025-12-05 22:27:42,767 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/codegen/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/codegen 2025-12-05T22:27:42.7798317Z 2025-12-05 22:27:42,767 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/codegen/convert_weight.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/codegen 2025-12-05T22:27:42.7798711Z 2025-12-05 22:27:42,767 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/deeplab_v3 2025-12-05T22:27:42.7799540Z 2025-12-05 22:27:42,768 [INFO] 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-12-05T22:27:42.7800379Z 2025-12-05 22:27:42,768 [INFO] 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-12-05T22:27:42.7800782Z 2025-12-05 22:27:42,768 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/deit_tiny 2025-12-05T22:27:42.7801564Z 2025-12-05 22:27:42,768 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deit_tiny/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/deit_tiny 2025-12-05T22:27:42.7802349Z 2025-12-05 22:27:42,768 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deit_tiny/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/deit_tiny 2025-12-05T22:27:42.7802750Z 2025-12-05 22:27:42,768 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/edsr 2025-12-05T22:27:42.7803493Z 2025-12-05 22:27:42,768 [INFO] 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-12-05T22:27:42.7804255Z 2025-12-05 22:27:42,769 [INFO] 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-12-05T22:27:42.7804663Z 2025-12-05 22:27:42,769 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam 2025-12-05T22:27:42.7805602Z 2025-12-05 22:27:42,769 [INFO] 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-12-05T22:27:42.7806499Z 2025-12-05 22:27:42,769 [INFO] 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-12-05T22:27:42.7807006Z 2025-12-05 22:27:42,769 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam/efficient_sam_core 2025-12-05T22:27:42.7808063Z 2025-12-05 22:27:42,769 [INFO] 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-12-05T22:27:42.7825540Z 2025-12-05 22:27:42,769 [INFO] 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-12-05T22:27:42.7826975Z 2025-12-05 22:27:42,770 [INFO] 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-12-05T22:27:42.7827991Z 2025-12-05 22:27:42,770 [INFO] 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-12-05T22:27:42.7829125Z 2025-12-05 22:27:42,770 [INFO] 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-12-05T22:27:42.7830120Z 2025-12-05 22:27:42,770 [INFO] 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-12-05T22:27:42.7830486Z 2025-12-05 22:27:42,770 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/emformer_rnnt 2025-12-05T22:27:42.7831244Z 2025-12-05 22:27:42,770 [INFO] 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-12-05T22:27:42.7832003Z 2025-12-05 22:27:42,771 [INFO] 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-12-05T22:27:42.7832346Z 2025-12-05 22:27:42,771 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/gemma 2025-12-05T22:27:42.7833038Z 2025-12-05 22:27:42,771 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/gemma/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/gemma 2025-12-05T22:27:42.7833858Z 2025-12-05 22:27:42,771 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/gemma/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/gemma 2025-12-05T22:27:42.7834177Z 2025-12-05 22:27:42,771 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/gemma3 2025-12-05T22:27:42.7834892Z 2025-12-05 22:27:42,771 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/gemma3/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/gemma3 2025-12-05T22:27:42.7835660Z 2025-12-05 22:27:42,772 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/gemma3/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/gemma3 2025-12-05T22:27:42.7836046Z 2025-12-05 22:27:42,772 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/glm 2025-12-05T22:27:42.7836718Z 2025-12-05 22:27:42,772 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/glm/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/glm 2025-12-05T22:27:42.7837450Z 2025-12-05 22:27:42,772 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/glm/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/glm 2025-12-05T22:27:42.7837771Z 2025-12-05 22:27:42,772 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/granite 2025-12-05T22:27:42.7838492Z 2025-12-05 22:27:42,772 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/granite/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/granite 2025-12-05T22:27:42.7839253Z 2025-12-05 22:27:42,773 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/granite/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/granite 2025-12-05T22:27:42.7839596Z 2025-12-05 22:27:42,773 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v3 2025-12-05T22:27:42.7840363Z 2025-12-05 22:27:42,773 [INFO] 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-12-05T22:27:42.7841115Z 2025-12-05 22:27:42,773 [INFO] 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-12-05T22:27:42.7841530Z 2025-12-05 22:27:42,773 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v4 2025-12-05T22:27:42.7842297Z 2025-12-05 22:27:42,773 [INFO] 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-12-05T22:27:42.7843049Z 2025-12-05 22:27:42,774 [INFO] 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-12-05T22:27:42.7843355Z 2025-12-05 22:27:42,774 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/lfm2 2025-12-05T22:27:42.7844050Z 2025-12-05 22:27:42,774 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lfm2/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/lfm2 2025-12-05T22:27:42.7844781Z 2025-12-05 22:27:42,774 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lfm2/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/lfm2 2025-12-05T22:27:42.7845492Z 2025-12-05 22:27:42,774 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lfm2/short_conv.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/lfm2 2025-12-05T22:27:42.7845843Z 2025-12-05 22:27:42,774 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/lfm2/config 2025-12-05T22:27:42.7846657Z 2025-12-05 22:27:42,775 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lfm2/config/lfm2_xnnpack_fp32.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/lfm2/config 2025-12-05T22:27:42.7847545Z 2025-12-05 22:27:42,775 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lfm2/config/lfm2_xnnpack_q8da4w.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/lfm2/config 2025-12-05T22:27:42.7847866Z 2025-12-05 22:27:42,775 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama 2025-12-05T22:27:42.7848613Z 2025-12-05 22:27:42,775 [INFO] 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-12-05T22:27:42.7849355Z 2025-12-05 22:27:42,775 [INFO] 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-12-05T22:27:42.7850100Z 2025-12-05 22:27:42,775 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-12-05T22:27:42.7850812Z 2025-12-05 22:27:42,776 [INFO] 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-12-05T22:27:42.7851553Z 2025-12-05 22:27:42,776 [INFO] 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-12-05T22:27:42.7852280Z 2025-12-05 22:27:42,776 [INFO] 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-12-05T22:27:42.7853017Z 2025-12-05 22:27:42,776 [INFO] 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-12-05T22:27:42.7853745Z 2025-12-05 22:27:42,776 [INFO] 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-12-05T22:27:42.7854586Z 2025-12-05 22:27:42,776 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/feed_forward.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-12-05T22:27:42.7885239Z 2025-12-05 22:27:42,777 [INFO] 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-12-05T22:27:42.7886135Z 2025-12-05 22:27:42,777 [INFO] 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-12-05T22:27:42.7886950Z 2025-12-05 22:27:42,777 [INFO] 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-12-05T22:27:42.7887651Z 2025-12-05 22:27:42,777 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/lora.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama 2025-12-05T22:27:42.7888368Z 2025-12-05 22:27:42,777 [INFO] 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-12-05T22:27:42.7889116Z 2025-12-05 22:27:42,777 [INFO] 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-12-05T22:27:42.7889811Z 2025-12-05 22:27:42,777 [INFO] 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-12-05T22:27:42.7890559Z 2025-12-05 22:27:42,778 [INFO] 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-12-05T22:27:42.7891320Z 2025-12-05 22:27:42,778 [INFO] 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-12-05T22:27:42.7891840Z 2025-12-05 22:27:42,778 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/config 2025-12-05T22:27:42.7892651Z 2025-12-05 22:27:42,778 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config/test_llm_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/config 2025-12-05T22:27:42.7893524Z 2025-12-05 22:27:42,778 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config/llama_bf16.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/config 2025-12-05T22:27:42.7894327Z 2025-12-05 22:27:42,778 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config/llama_q8da4w.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/config 2025-12-05T22:27:42.7895240Z 2025-12-05 22:27:42,779 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config/llama_xnnpack.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/config 2025-12-05T22:27:42.7896082Z 2025-12-05 22:27:42,779 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config/llama_xnnpack_qat.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/config 2025-12-05T22:27:42.7897005Z 2025-12-05 22:27:42,779 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/config/llama_xnnpack_spinquant.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/config 2025-12-05T22:27:42.7897382Z 2025-12-05 22:27:42,779 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/evaluate 2025-12-05T22:27:42.7898301Z 2025-12-05 22:27:42,779 [INFO] 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-12-05T22:27:42.7899105Z 2025-12-05 22:27:42,779 [INFO] 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-12-05T22:27:42.7899558Z 2025-12-05 22:27:42,780 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/experimental 2025-12-05T22:27:42.7900413Z 2025-12-05 22:27:42,780 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/llama/experimental 2025-12-05T22:27:42.7901344Z 2025-12-05 22:27:42,780 [INFO] 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-12-05T22:27:42.7902272Z 2025-12-05 22:27:42,780 [INFO] 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-12-05T22:27:42.7903181Z 2025-12-05 22:27:42,780 [INFO] 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-12-05T22:27:42.7904162Z 2025-12-05 22:27:42,780 [INFO] 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-12-05T22:27:42.7904503Z 2025-12-05 22:27:42,781 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/runner 2025-12-05T22:27:42.7905369Z 2025-12-05 22:27:42,781 [INFO] 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-12-05T22:27:42.7906262Z 2025-12-05 22:27:42,781 [INFO] 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-12-05T22:27:42.7907110Z 2025-12-05 22:27:42,781 [INFO] 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-12-05T22:27:42.7907536Z 2025-12-05 22:27:42,781 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/source_transformation 2025-12-05T22:27:42.7908643Z 2025-12-05 22:27:42,781 [INFO] 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-12-05T22:27:42.7909653Z 2025-12-05 22:27:42,782 [INFO] 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-12-05T22:27:42.7910725Z 2025-12-05 22:27:42,782 [INFO] 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-12-05T22:27:42.7911740Z 2025-12-05 22:27:42,782 [INFO] 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-12-05T22:27:42.7912714Z 2025-12-05 22:27:42,782 [INFO] 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-12-05T22:27:42.7913783Z 2025-12-05 22:27:42,782 [INFO] 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-12-05T22:27:42.7914802Z 2025-12-05 22:27:42,782 [INFO] 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-12-05T22:27:42.7915817Z 2025-12-05 22:27:42,783 [INFO] 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-12-05T22:27:42.7916787Z 2025-12-05 22:27:42,783 [INFO] 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-12-05T22:27:42.7945059Z 2025-12-05 22:27:42,783 [INFO] 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-12-05T22:27:42.7946069Z 2025-12-05 22:27:42,783 [INFO] 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-12-05T22:27:42.7947028Z 2025-12-05 22:27:42,783 [INFO] 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-12-05T22:27:42.7947949Z 2025-12-05 22:27:42,783 [INFO] 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-12-05T22:27:42.7949226Z 2025-12-05 22:27:42,783 [INFO] 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-12-05T22:27:42.7950460Z 2025-12-05 22:27:42,784 [INFO] 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-12-05T22:27:42.7951615Z 2025-12-05 22:27:42,784 [INFO] 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-12-05T22:27:42.7952751Z 2025-12-05 22:27:42,784 [INFO] 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-12-05T22:27:42.7953119Z 2025-12-05 22:27:42,784 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tests 2025-12-05T22:27:42.7954027Z 2025-12-05 22:27:42,784 [INFO] 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-12-05T22:27:42.7955084Z 2025-12-05 22:27:42,784 [INFO] 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-12-05T22:27:42.7956242Z 2025-12-05 22:27:42,785 [INFO] 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-12-05T22:27:42.7957245Z 2025-12-05 22:27:42,785 [INFO] 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-12-05T22:27:42.7958050Z 2025-12-05 22:27:42,785 [INFO] 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-12-05T22:27:42.7959042Z 2025-12-05 22:27:42,785 [INFO] 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-12-05T22:27:42.7960047Z 2025-12-05 22:27:42,785 [INFO] 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-12-05T22:27:42.7960408Z 2025-12-05 22:27:42,785 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tokenizer 2025-12-05T22:27:42.7961422Z 2025-12-05 22:27:42,786 [INFO] 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-12-05T22:27:42.7961776Z 2025-12-05 22:27:42,786 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision 2025-12-05T22:27:42.7962733Z 2025-12-05 22:27:42,786 [INFO] 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-12-05T22:27:42.7963155Z 2025-12-05 22:27:42,786 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/preprocess 2025-12-05T22:27:42.7964208Z 2025-12-05 22:27:42,786 [INFO] 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-12-05T22:27:42.7965437Z 2025-12-05 22:27:42,786 [INFO] 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-12-05T22:27:42.7966375Z 2025-12-05 22:27:42,787 [INFO] 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-12-05T22:27:42.7967437Z 2025-12-05 22:27:42,787 [INFO] 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-12-05T22:27:42.7967853Z 2025-12-05 22:27:42,787 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/runner 2025-12-05T22:27:42.7968883Z 2025-12-05 22:27:42,787 [INFO] 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-12-05T22:27:42.7969923Z 2025-12-05 22:27:42,787 [INFO] 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-12-05T22:27:42.7970807Z 2025-12-05 22:27:42,787 [INFO] 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-12-05T22:27:42.7971901Z 2025-12-05 22:27:42,787 [INFO] 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-12-05T22:27:42.7972356Z 2025-12-05 22:27:42,788 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder 2025-12-05T22:27:42.7973410Z 2025-12-05 22:27:42,788 [INFO] 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-12-05T22:27:42.7973985Z 2025-12-05 22:27:42,788 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-12-05T22:27:42.7974983Z 2025-12-05 22:27:42,788 [INFO] 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-12-05T22:27:42.7976160Z 2025-12-05 22:27:42,788 [INFO] 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-12-05T22:27:42.7976701Z 2025-12-05 22:27:42,788 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder 2025-12-05T22:27:42.7977683Z 2025-12-05 22:27:42,788 [INFO] 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-12-05T22:27:42.7978776Z 2025-12-05 22:27:42,789 [INFO] 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-12-05T22:27:42.7979272Z 2025-12-05 22:27:42,789 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-12-05T22:27:42.8012830Z 2025-12-05 22:27:42,789 [INFO] 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-12-05T22:27:42.8014124Z 2025-12-05 22:27:42,789 [INFO] 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-12-05T22:27:42.8014558Z 2025-12-05 22:27:42,789 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava 2025-12-05T22:27:42.8015347Z 2025-12-05 22:27:42,789 [INFO] 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-12-05T22:27:42.8016213Z 2025-12-05 22:27:42,790 [INFO] 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-12-05T22:27:42.8017108Z 2025-12-05 22:27:42,790 [INFO] 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-12-05T22:27:42.8017552Z 2025-12-05 22:27:42,790 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava/test 2025-12-05T22:27:42.8018689Z 2025-12-05 22:27:42,790 [INFO] 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-12-05T22:27:42.8019715Z 2025-12-05 22:27:42,790 [INFO] 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-12-05T22:27:42.8020146Z 2025-12-05 22:27:42,790 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/lstm 2025-12-05T22:27:42.8021095Z 2025-12-05 22:27:42,791 [INFO] 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-12-05T22:27:42.8021909Z 2025-12-05 22:27:42,791 [INFO] 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-12-05T22:27:42.8022366Z 2025-12-05 22:27:42,791 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilebert 2025-12-05T22:27:42.8023249Z 2025-12-05 22:27:42,791 [INFO] 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-12-05T22:27:42.8024099Z 2025-12-05 22:27:42,791 [INFO] 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-12-05T22:27:42.8024490Z 2025-12-05 22:27:42,792 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v2 2025-12-05T22:27:42.8025463Z 2025-12-05 22:27:42,792 [INFO] 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-12-05T22:27:42.8026338Z 2025-12-05 22:27:42,792 [INFO] 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-12-05T22:27:42.8026701Z 2025-12-05 22:27:42,792 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v3 2025-12-05T22:27:42.8027650Z 2025-12-05 22:27:42,792 [INFO] 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-12-05T22:27:42.8028855Z 2025-12-05 22:27:42,792 [INFO] 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-12-05T22:27:42.8029340Z 2025-12-05 22:27:42,793 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini-lora 2025-12-05T22:27:42.8030318Z 2025-12-05 22:27:42,793 [INFO] 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-12-05T22:27:42.8030661Z 2025-12-05 22:27:42,793 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini 2025-12-05T22:27:42.8031659Z 2025-12-05 22:27:42,793 [INFO] 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-12-05T22:27:42.8032036Z 2025-12-05 22:27:42,793 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi_4_mini 2025-12-05T22:27:42.8032909Z 2025-12-05 22:27:42,793 [INFO] 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-12-05T22:27:42.8033797Z 2025-12-05 22:27:42,793 [INFO] 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-12-05T22:27:42.8034418Z 2025-12-05 22:27:42,794 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi_4_mini/config 2025-12-05T22:27:42.8035364Z 2025-12-05 22:27:42,794 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini/config/phi_4_mini_xnnpack.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/phi_4_mini/config 2025-12-05T22:27:42.8035804Z 2025-12-05 22:27:42,794 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen2_5 2025-12-05T22:27:42.8036645Z 2025-12-05 22:27:42,794 [INFO] 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-12-05T22:27:42.8037653Z 2025-12-05 22:27:42,794 [INFO] 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-12-05T22:27:42.8038007Z 2025-12-05 22:27:42,795 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen2_5/config 2025-12-05T22:27:42.8039101Z 2025-12-05 22:27:42,795 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5/config/qwen2_5_xnnpack_q8da4w.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/qwen2_5/config 2025-12-05T22:27:42.8039543Z 2025-12-05 22:27:42,795 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen3 2025-12-05T22:27:42.8040476Z 2025-12-05 22:27:42,795 [INFO] 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-12-05T22:27:42.8041315Z 2025-12-05 22:27:42,795 [INFO] 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-12-05T22:27:42.8041855Z 2025-12-05 22:27:42,795 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen3/config 2025-12-05T22:27:42.8042778Z 2025-12-05 22:27:42,796 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3/config/qwen3_xnnpack_q8da4w.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/qwen3/config 2025-12-05T22:27:42.8043369Z 2025-12-05 22:27:42,796 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/resnet 2025-12-05T22:27:42.8044214Z 2025-12-05 22:27:42,796 [INFO] 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-12-05T22:27:42.8045211Z 2025-12-05 22:27:42,796 [INFO] 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-12-05T22:27:42.8045600Z 2025-12-05 22:27:42,796 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/smollm2 2025-12-05T22:27:42.8046480Z 2025-12-05 22:27:42,796 [INFO] 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-12-05T22:27:42.8047373Z 2025-12-05 22:27:42,797 [INFO] 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-12-05T22:27:42.8047849Z 2025-12-05 22:27:42,797 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/smollm3 2025-12-05T22:27:42.8083840Z 2025-12-05 22:27:42,797 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm3/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/smollm3 2025-12-05T22:27:42.8084618Z 2025-12-05 22:27:42,797 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm3/convert_weights.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/smollm3 2025-12-05T22:27:42.8085113Z 2025-12-05 22:27:42,797 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/stable_diffusion 2025-12-05T22:27:42.8085900Z 2025-12-05 22:27:42,797 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/stable_diffusion/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/stable_diffusion 2025-12-05T22:27:42.8086700Z 2025-12-05 22:27:42,798 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/stable_diffusion/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/stable_diffusion 2025-12-05T22:27:42.8087028Z 2025-12-05 22:27:42,798 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/test 2025-12-05T22:27:42.8087706Z 2025-12-05 22:27:42,798 [INFO] 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-12-05T22:27:42.8088416Z 2025-12-05 22:27:42,798 [INFO] 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-12-05T22:27:42.8088780Z 2025-12-05 22:27:42,798 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/torchvision_vit 2025-12-05T22:27:42.8089564Z 2025-12-05 22:27:42,798 [INFO] 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-12-05T22:27:42.8090368Z 2025-12-05 22:27:42,799 [INFO] 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-12-05T22:27:42.8090694Z 2025-12-05 22:27:42,799 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/toy_model 2025-12-05T22:27:42.8091415Z 2025-12-05 22:27:42,799 [INFO] 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-12-05T22:27:42.8092135Z 2025-12-05 22:27:42,799 [INFO] 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-12-05T22:27:42.8092523Z 2025-12-05 22:27:42,799 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/wav2letter 2025-12-05T22:27:42.8093268Z 2025-12-05 22:27:42,799 [INFO] 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-12-05T22:27:42.8094028Z 2025-12-05 22:27:42,800 [INFO] 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-12-05T22:27:42.8094352Z 2025-12-05 22:27:42,800 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/yolo12 2025-12-05T22:27:42.8095130Z 2025-12-05 22:27:42,800 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/yolo12/export_and_validate.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/yolo12 2025-12-05T22:27:42.8095445Z 2025-12-05 22:27:42,800 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi 2025-12-05T22:27:42.8095771Z 2025-12-05 22:27:42,800 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi/mimi 2025-12-05T22:27:42.8096542Z 2025-12-05 22:27:42,801 [INFO] 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-12-05T22:27:42.8096977Z 2025-12-05 22:27:42,801 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/deepseek-r1-distill-llama-8B 2025-12-05T22:27:42.8097500Z 2025-12-05 22:27:42,801 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/deepseek-r1-distill-llama-8B/config 2025-12-05T22:27:42.8098595Z 2025-12-05 22:27:42,801 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deepseek-r1-distill-llama-8B/config/deepseek_xnnpack_q8da4w.yaml -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/models/deepseek-r1-distill-llama-8B/config 2025-12-05T22:27:42.8098890Z 2025-12-05 22:27:42,801 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/xnnpack 2025-12-05T22:27:42.8099537Z 2025-12-05 22:27:42,802 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/xnnpack/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/xnnpack 2025-12-05T22:27:42.8100396Z 2025-12-05 22:27:42,802 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/xnnpack/aot_compiler.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/xnnpack 2025-12-05T22:27:42.8100756Z 2025-12-05 22:27:42,802 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/xnnpack/quantization 2025-12-05T22:27:42.8101621Z 2025-12-05 22:27:42,802 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/xnnpack/quantization/example.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/xnnpack/quantization 2025-12-05T22:27:42.8102417Z 2025-12-05 22:27:42,802 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/xnnpack/quantization/utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/xnnpack/quantization 2025-12-05T22:27:42.8102705Z 2025-12-05 22:27:42,802 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple 2025-12-05T22:27:42.8103017Z 2025-12-05 22:27:42,803 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml 2025-12-05T22:27:42.8103490Z 2025-12-05 22:27:42,803 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/llama 2025-12-05T22:27:42.8104257Z 2025-12-05 22:27:42,803 [INFO] 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-12-05T22:27:42.8105340Z 2025-12-05 22:27:42,803 [INFO] 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-12-05T22:27:42.8106100Z 2025-12-05 22:27:42,803 [INFO] 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-12-05T22:27:42.8107083Z 2025-12-05 22:27:42,803 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama/run_lookahead.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/apple/coreml/llama 2025-12-05T22:27:42.8107983Z 2025-12-05 22:27:42,804 [INFO] 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-12-05T22:27:42.8108880Z 2025-12-05 22:27:42,804 [INFO] 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-12-05T22:27:42.8109237Z 2025-12-05 22:27:42,804 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/scripts 2025-12-05T22:27:42.8110260Z 2025-12-05 22:27:42,804 [INFO] 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-12-05T22:27:42.8111049Z 2025-12-05 22:27:42,804 [INFO] 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-12-05T22:27:42.8112239Z 2025-12-05 22:27:42,804 [INFO] 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-12-05T22:27:42.8113214Z 2025-12-05 22:27:42,805 [INFO] 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-12-05T22:27:42.8114042Z 2025-12-05 22:27:42,805 [INFO] 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-12-05T22:27:42.8114421Z 2025-12-05 22:27:42,805 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps 2025-12-05T22:27:42.8195754Z 2025-12-05 22:27:42,805 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps/scripts 2025-12-05T22:27:42.8196935Z 2025-12-05 22:27:42,805 [INFO] 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-12-05T22:27:42.8197733Z 2025-12-05 22:27:42,805 [INFO] 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-12-05T22:27:42.8198123Z 2025-12-05 22:27:42,806 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/cuda 2025-12-05T22:27:42.8198437Z 2025-12-05 22:27:42,806 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/cuda/scripts 2025-12-05T22:27:42.8199147Z 2025-12-05 22:27:42,806 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/cuda/scripts/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/cuda/scripts 2025-12-05T22:27:42.8199981Z 2025-12-05 22:27:42,806 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/cuda/scripts/export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/cuda/scripts 2025-12-05T22:27:42.8200263Z 2025-12-05 22:27:42,806 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/nxp 2025-12-05T22:27:42.8200756Z 2025-12-05 22:27:42,806 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/nxp/experimental 2025-12-05T22:27:42.8201143Z 2025-12-05 22:27:42,806 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/nxp/experimental/cifar_net 2025-12-05T22:27:42.8201989Z 2025-12-05 22:27:42,807 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/examples/nxp/experimental/cifar_net/cifar_net.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/examples/nxp/experimental/cifar_net 2025-12-05T22:27:42.8202271Z 2025-12-05 22:27:42,807 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension 2025-12-05T22:27:42.8202564Z 2025-12-05 22:27:42,807 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/audio 2025-12-05T22:27:42.8203246Z 2025-12-05 22:27:42,807 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/audio/mel_spectrogram.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/audio 2025-12-05T22:27:42.8203570Z 2025-12-05 22:27:42,807 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/export_util 2025-12-05T22:27:42.8204256Z 2025-12-05 22:27:42,807 [INFO] 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-12-05T22:27:42.8204934Z 2025-12-05 22:27:42,808 [INFO] 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-12-05T22:27:42.8205261Z 2025-12-05 22:27:42,808 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor 2025-12-05T22:27:42.8206040Z 2025-12-05 22:27:42,808 [INFO] 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-12-05T22:27:42.8206405Z 2025-12-05 22:27:42,808 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/serialize 2025-12-05T22:27:42.8207203Z 2025-12-05 22:27:42,808 [INFO] 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-12-05T22:27:42.8208024Z 2025-12-05 22:27:42,808 [INFO] 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-12-05T22:27:42.8208832Z 2025-12-05 22:27:42,809 [INFO] 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-12-05T22:27:42.8209633Z 2025-12-05 22:27:42,809 [INFO] 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-12-05T22:27:42.8210433Z 2025-12-05 22:27:42,809 [INFO] 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-12-05T22:27:42.8210777Z 2025-12-05 22:27:42,809 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/test 2025-12-05T22:27:42.8211538Z 2025-12-05 22:27:42,809 [INFO] 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-12-05T22:27:42.8211858Z 2025-12-05 22:27:42,809 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util 2025-12-05T22:27:42.8212545Z 2025-12-05 22:27:42,809 [INFO] 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-12-05T22:27:42.8213276Z 2025-12-05 22:27:42,810 [INFO] 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-12-05T22:27:42.8213963Z 2025-12-05 22:27:42,810 [INFO] 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-12-05T22:27:42.8214309Z 2025-12-05 22:27:42,810 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util/converters 2025-12-05T22:27:42.8215120Z 2025-12-05 22:27:42,810 [INFO] 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-12-05T22:27:42.8215447Z 2025-12-05 22:27:42,810 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings 2025-12-05T22:27:42.8216174Z 2025-12-05 22:27:42,810 [INFO] 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-12-05T22:27:42.8216502Z 2025-12-05 22:27:42,811 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings/test 2025-12-05T22:27:42.8217257Z 2025-12-05 22:27:42,811 [INFO] 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-12-05T22:27:42.8218090Z 2025-12-05 22:27:42,811 [INFO] 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-12-05T22:27:42.8219228Z 2025-12-05 22:27:42,811 [INFO] 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-12-05T22:27:42.8220029Z 2025-12-05 22:27:42,811 [INFO] 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-12-05T22:27:42.8220944Z 2025-12-05 22:27:42,811 [INFO] 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-12-05T22:27:42.8221305Z 2025-12-05 22:27:42,817 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree 2025-12-05T22:27:42.8222074Z 2025-12-05 22:27:42,817 [INFO] 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-12-05T22:27:42.8222510Z 2025-12-05 22:27:42,818 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree/test 2025-12-05T22:27:42.8223261Z 2025-12-05 22:27:42,818 [INFO] 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-12-05T22:27:42.8223575Z 2025-12-05 22:27:42,818 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training 2025-12-05T22:27:42.8224353Z 2025-12-05 22:27:42,818 [INFO] 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-12-05T22:27:42.8224702Z 2025-12-05 22:27:42,818 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings 2025-12-05T22:27:42.8225657Z 2025-12-05 22:27:42,818 [INFO] 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-12-05T22:27:42.8295063Z 2025-12-05 22:27:42,819 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings/test 2025-12-05T22:27:42.8296181Z 2025-12-05 22:27:42,819 [INFO] 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-12-05T22:27:42.8297086Z 2025-12-05 22:27:42,819 [INFO] 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-12-05T22:27:42.8298138Z 2025-12-05 22:27:42,819 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/_training_lib.cpython-310-x86_64-linux-gnu.so -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/pybindings 2025-12-05T22:27:42.8298535Z 2025-12-05 22:27:42,821 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples 2025-12-05T22:27:42.8298995Z 2025-12-05 22:27:42,821 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/CIFAR 2025-12-05T22:27:42.8299948Z 2025-12-05 22:27:42,821 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/CIFAR/data_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/examples/CIFAR 2025-12-05T22:27:42.8300895Z 2025-12-05 22:27:42,822 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/CIFAR/export.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/examples/CIFAR 2025-12-05T22:27:42.8301954Z 2025-12-05 22:27:42,822 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/CIFAR/main.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/examples/CIFAR 2025-12-05T22:27:42.8303034Z 2025-12-05 22:27:42,822 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/CIFAR/model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/examples/CIFAR 2025-12-05T22:27:42.8304032Z 2025-12-05 22:27:42,822 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/CIFAR/train_utils.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/training/examples/CIFAR 2025-12-05T22:27:42.8304453Z 2025-12-05 22:27:42,822 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR 2025-12-05T22:27:42.8305409Z 2025-12-05 22:27:42,822 [INFO] 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-12-05T22:27:42.8306306Z 2025-12-05 22:27:42,822 [INFO] 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-12-05T22:27:42.8306802Z 2025-12-05 22:27:42,823 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR/test 2025-12-05T22:27:42.8307827Z 2025-12-05 22:27:42,823 [INFO] 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-12-05T22:27:42.8308152Z 2025-12-05 22:27:42,823 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm 2025-12-05T22:27:42.8308561Z 2025-12-05 22:27:42,823 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops 2025-12-05T22:27:42.8309358Z 2025-12-05 22:27:42,823 [INFO] 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-12-05T22:27:42.8310205Z 2025-12-05 22:27:42,823 [INFO] 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-12-05T22:27:42.8311139Z 2025-12-05 22:27:42,824 [INFO] 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-12-05T22:27:42.8311970Z 2025-12-05 22:27:42,824 [INFO] 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-12-05T22:27:42.8312844Z 2025-12-05 22:27:42,824 [INFO] 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-12-05T22:27:42.8313761Z 2025-12-05 22:27:42,824 [INFO] 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-12-05T22:27:42.8314600Z 2025-12-05 22:27:42,824 [INFO] 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-12-05T22:27:42.8315550Z 2025-12-05 22:27:42,824 [INFO] 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-12-05T22:27:42.8316382Z 2025-12-05 22:27:42,824 [INFO] 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-12-05T22:27:42.8316823Z 2025-12-05 22:27:42,825 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant 2025-12-05T22:27:42.8317923Z 2025-12-05 22:27:42,825 [INFO] 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-12-05T22:27:42.8318676Z 2025-12-05 22:27:42,825 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party 2025-12-05T22:27:42.8319222Z 2025-12-05 22:27:42,825 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-12-05T22:27:42.8320331Z 2025-12-05 22:27:42,825 [INFO] 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-12-05T22:27:42.8321355Z 2025-12-05 22:27:42,825 [INFO] 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-12-05T22:27:42.8322217Z 2025-12-05 22:27:42,825 [INFO] 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-12-05T22:27:42.8322545Z 2025-12-05 22:27:42,827 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export 2025-12-05T22:27:42.8323283Z 2025-12-05 22:27:42,827 [INFO] 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-12-05T22:27:42.8324050Z 2025-12-05 22:27:42,827 [INFO] 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-12-05T22:27:42.8324824Z 2025-12-05 22:27:42,828 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/export_llm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export 2025-12-05T22:27:42.8326008Z 2025-12-05 22:27:42,828 [INFO] 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-12-05T22:27:42.8326769Z 2025-12-05 22:27:42,828 [INFO] 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-12-05T22:27:42.8327642Z 2025-12-05 22:27:42,828 [INFO] 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-12-05T22:27:42.8328379Z 2025-12-05 22:27:42,828 [INFO] 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-12-05T22:27:42.8328721Z 2025-12-05 22:27:42,828 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export/config 2025-12-05T22:27:42.8386573Z 2025-12-05 22:27:42,828 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/config/llm_config.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export/config 2025-12-05T22:27:42.8386905Z 2025-12-05 22:27:42,829 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export/test 2025-12-05T22:27:42.8387650Z 2025-12-05 22:27:42,829 [INFO] 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-12-05T22:27:42.8388483Z 2025-12-05 22:27:42,829 [INFO] 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-12-05T22:27:42.8389448Z 2025-12-05 22:27:42,829 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test/test_export_llm.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/export/test 2025-12-05T22:27:42.8389937Z 2025-12-05 22:27:42,829 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules 2025-12-05T22:27:42.8390633Z 2025-12-05 22:27:42,829 [INFO] 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-12-05T22:27:42.8391566Z 2025-12-05 22:27:42,830 [INFO] 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-12-05T22:27:42.8392291Z 2025-12-05 22:27:42,830 [INFO] 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-12-05T22:27:42.8393174Z 2025-12-05 22:27:42,830 [INFO] 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-12-05T22:27:42.8393510Z 2025-12-05 22:27:42,830 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules/test 2025-12-05T22:27:42.8394371Z 2025-12-05 22:27:42,830 [INFO] 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-12-05T22:27:42.8395214Z 2025-12-05 22:27:42,830 [INFO] 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-12-05T22:27:42.8396148Z 2025-12-05 22:27:42,831 [INFO] 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-12-05T22:27:42.8396998Z 2025-12-05 22:27:42,831 [INFO] 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-12-05T22:27:42.8397441Z 2025-12-05 22:27:42,831 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/runner 2025-12-05T22:27:42.8398234Z 2025-12-05 22:27:42,831 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/runner/__init__.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/runner 2025-12-05T22:27:42.8398561Z 2025-12-05 22:27:42,831 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/runner/test 2025-12-05T22:27:42.8399553Z 2025-12-05 22:27:42,832 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/runner/test/test_runner_pybindings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/runner/test 2025-12-05T22:27:42.8400277Z 2025-12-05 22:27:42,832 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/runner/_llm_runner.pyi -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/runner 2025-12-05T22:27:42.8401279Z 2025-12-05 22:27:42,832 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/runner/_llm_runner.cpython-310-x86_64-linux-gnu.so -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/runner 2025-12-05T22:27:42.8401603Z 2025-12-05 22:27:42,834 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers 2025-12-05T22:27:42.8402490Z 2025-12-05 22:27:42,834 [INFO] 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-12-05T22:27:42.8402995Z 2025-12-05 22:27:42,835 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-12-05T22:27:42.8404085Z 2025-12-05 22:27:42,835 [INFO] 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-12-05T22:27:42.8405031Z 2025-12-05 22:27:42,835 [INFO] 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-12-05T22:27:42.8406151Z 2025-12-05 22:27:42,835 [INFO] 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-12-05T22:27:42.8407283Z 2025-12-05 22:27:42,835 [INFO] 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-12-05T22:27:42.8408206Z 2025-12-05 22:27:42,835 [INFO] 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-12-05T22:27:42.8408833Z 2025-12-05 22:27:42,836 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-12-05T22:27:42.8409815Z 2025-12-05 22:27:42,836 [INFO] 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-12-05T22:27:42.8410487Z 2025-12-05 22:27:42,836 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-12-05T22:27:42.8411543Z 2025-12-05 22:27:42,836 [INFO] 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-12-05T22:27:42.8412861Z 2025-12-05 22:27:42,836 [INFO] 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-12-05T22:27:42.8413213Z 2025-12-05 22:27:42,836 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/test 2025-12-05T22:27:42.8414234Z 2025-12-05 22:27:42,836 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test/test_hf_tokenizer.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/test 2025-12-05T22:27:42.8415139Z 2025-12-05 22:27:42,837 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test/test_python_bindings.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/test 2025-12-05T22:27:42.8416091Z 2025-12-05 22:27:42,837 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test/test_tekken_python.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/llm/tokenizers/test 2025-12-05T22:27:42.8417088Z 2025-12-05 22:27:42,837 [INFO] 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-12-05T22:27:42.8417482Z 2025-12-05 22:27:42,837 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party 2025-12-05T22:27:42.8417942Z 2025-12-05 22:27:42,837 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-12-05T22:27:42.8419351Z 2025-12-05 22:27:42,837 [INFO] 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-12-05T22:27:42.8452324Z 2025-12-05 22:27:42,837 [INFO] 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-12-05T22:27:42.8452964Z 2025-12-05 22:27:42,838 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-12-05T22:27:42.8453469Z 2025-12-05 22:27:42,838 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-12-05T22:27:42.8454742Z 2025-12-05 22:27:42,838 [INFO] 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-12-05T22:27:42.8456080Z 2025-12-05 22:27:42,838 [INFO] 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-12-05T22:27:42.8457196Z 2025-12-05 22:27:42,838 [INFO] 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-12-05T22:27:42.8457755Z 2025-12-05 22:27:42,838 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json 2025-12-05T22:27:42.8458195Z 2025-12-05 22:27:42,839 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs 2025-12-05T22:27:42.8458668Z 2025-12-05 22:27:42,839 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs 2025-12-05T22:27:42.8459402Z 2025-12-05 22:27:42,839 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-12-05T22:27:42.8460826Z 2025-12-05 22:27:42,839 [INFO] 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-12-05T22:27:42.8461314Z 2025-12-05 22:27:42,839 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests 2025-12-05T22:27:42.8461828Z 2025-12-05 22:27:42,839 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty 2025-12-05T22:27:42.8462555Z 2025-12-05 22:27:42,840 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-12-05T22:27:42.8463816Z 2025-12-05 22:27:42,840 [INFO] 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-12-05T22:27:42.8464367Z 2025-12-05 22:27:42,840 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools 2025-12-05T22:27:42.8464862Z 2025-12-05 22:27:42,840 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-12-05T22:27:42.8466171Z 2025-12-05 22:27:42,840 [INFO] 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-12-05T22:27:42.8466827Z 2025-12-05 22:27:42,841 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-12-05T22:27:42.8468189Z 2025-12-05 22:27:42,841 [INFO] 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-12-05T22:27:42.8468870Z 2025-12-05 22:27:42,841 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-12-05T22:27:42.8470151Z 2025-12-05 22:27:42,841 [INFO] 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-12-05T22:27:42.8470823Z 2025-12-05 22:27:42,841 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-12-05T22:27:42.8471956Z 2025-12-05 22:27:42,841 [INFO] 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-12-05T22:27:42.8472568Z 2025-12-05 22:27:42,842 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2 2025-12-05T22:27:42.8473028Z 2025-12-05 22:27:42,842 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-12-05T22:27:42.8474229Z 2025-12-05 22:27:42,842 [INFO] 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-12-05T22:27:42.8475308Z 2025-12-05 22:27:42,842 [INFO] 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-12-05T22:27:42.8476519Z 2025-12-05 22:27:42,842 [INFO] 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-12-05T22:27:42.8477738Z 2025-12-05 22:27:42,843 [INFO] 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-12-05T22:27:42.8478849Z 2025-12-05 22:27:42,843 [INFO] 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-12-05T22:27:42.8479984Z 2025-12-05 22:27:42,843 [INFO] 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-12-05T22:27:42.8481166Z 2025-12-05 22:27:42,843 [INFO] 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-12-05T22:27:42.8482227Z 2025-12-05 22:27:42,843 [INFO] 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-12-05T22:27:42.8482840Z 2025-12-05 22:27:42,843 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2 2025-12-05T22:27:42.8483294Z 2025-12-05 22:27:42,843 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-12-05T22:27:42.8484488Z 2025-12-05 22:27:42,844 [INFO] 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-12-05T22:27:42.8484933Z 2025-12-05 22:27:42,844 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python 2025-12-05T22:27:42.8486073Z 2025-12-05 22:27:42,844 [INFO] 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-12-05T22:27:42.8487085Z 2025-12-05 22:27:42,844 [INFO] 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-12-05T22:27:42.8530879Z 2025-12-05 22:27:42,844 [INFO] 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-12-05T22:27:42.8531417Z 2025-12-05 22:27:42,844 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-12-05T22:27:42.8532561Z 2025-12-05 22:27:42,845 [INFO] 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-12-05T22:27:42.8533071Z 2025-12-05 22:27:42,845 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-12-05T22:27:42.8534244Z 2025-12-05 22:27:42,845 [INFO] 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-12-05T22:27:42.8535334Z 2025-12-05 22:27:42,845 [INFO] 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-12-05T22:27:42.8536485Z 2025-12-05 22:27:42,845 [INFO] 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-12-05T22:27:42.8537024Z 2025-12-05 22:27:42,845 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece 2025-12-05T22:27:42.8537614Z 2025-12-05 22:27:42,846 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-12-05T22:27:42.8538844Z 2025-12-05 22:27:42,846 [INFO] 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-12-05T22:27:42.8539499Z 2025-12-05 22:27:42,846 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-12-05T22:27:42.8540786Z 2025-12-05 22:27:42,846 [INFO] 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-12-05T22:27:42.8542338Z 2025-12-05 22:27:42,846 [INFO] 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-12-05T22:27:42.8542877Z 2025-12-05 22:27:42,846 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src 2025-12-05T22:27:42.8543635Z 2025-12-05 22:27:42,847 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-12-05T22:27:42.8545108Z 2025-12-05 22:27:42,847 [INFO] 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-12-05T22:27:42.8546474Z 2025-12-05 22:27:42,847 [INFO] 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-12-05T22:27:42.8548050Z 2025-12-05 22:27:42,847 [INFO] 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-12-05T22:27:42.8549703Z 2025-12-05 22:27:42,847 [INFO] 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-12-05T22:27:42.8550212Z 2025-12-05 22:27:42,847 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module 2025-12-05T22:27:42.8550535Z 2025-12-05 22:27:42,848 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test 2025-12-05T22:27:42.8550959Z 2025-12-05 22:27:42,848 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test/resources 2025-12-05T22:27:42.8552015Z 2025-12-05 22:27:42,848 [INFO] 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-12-05T22:27:42.8552307Z 2025-12-05 22:27:42,848 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/wasm 2025-12-05T22:27:42.8552609Z 2025-12-05 22:27:42,848 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/wasm/test 2025-12-05T22:27:42.8553503Z 2025-12-05 22:27:42,848 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/extension/wasm/test/test_model.py -> pip-out/bdist.linux-x86_64/wheel/./executorch/extension/wasm/test 2025-12-05T22:27:42.8553821Z 2025-12-05 22:27:42,849 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels 2025-12-05T22:27:42.8554123Z 2025-12-05 22:27:42,849 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized 2025-12-05T22:27:42.8554912Z 2025-12-05 22:27:42,849 [INFO] 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-12-05T22:27:42.8555292Z 2025-12-05 22:27:42,849 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized/test 2025-12-05T22:27:42.8556048Z 2025-12-05 22:27:42,849 [INFO] 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-12-05T22:27:42.8557163Z 2025-12-05 22:27:42,849 [INFO] 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-12-05T22:27:42.8557959Z 2025-12-05 22:27:42,849 [INFO] 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-12-05T22:27:42.8558848Z 2025-12-05 22:27:42,850 [INFO] 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-12-05T22:27:42.8559591Z 2025-12-05 22:27:42,850 [INFO] 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-12-05T22:27:42.8559934Z 2025-12-05 22:27:42,850 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/schema 2025-12-05T22:27:42.8560641Z 2025-12-05 22:27:42,850 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/schema/program.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/schema 2025-12-05T22:27:42.8561213Z 2025-12-05 22:27:42,851 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/schema/scalar_type.fbs -> pip-out/bdist.linux-x86_64/wheel/./executorch/schema 2025-12-05T22:27:42.8561706Z 2025-12-05 22:27:42,851 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch 2025-12-05T22:27:42.8562081Z 2025-12-05 22:27:42,851 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/share 2025-12-05T22:27:42.8562414Z 2025-12-05 22:27:42,851 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/share/cmake 2025-12-05T22:27:42.8563092Z 2025-12-05 22:27:42,851 [INFO] 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-12-05T22:27:42.8563475Z 2025-12-05 22:27:42,851 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include 2025-12-05T22:27:42.8563882Z 2025-12-05 22:27:42,852 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch 2025-12-05T22:27:42.8564287Z 2025-12-05 22:27:42,852 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime 2025-12-05T22:27:42.8564654Z 2025-12-05 22:27:42,852 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core 2025-12-05T22:27:42.8592177Z 2025-12-05 22:27:42,852 [INFO] 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-12-05T22:27:42.8593666Z 2025-12-05 22:27:42,852 [INFO] 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-12-05T22:27:42.8594497Z 2025-12-05 22:27:42,852 [INFO] 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-12-05T22:27:42.8595294Z 2025-12-05 22:27:42,852 [INFO] 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-12-05T22:27:42.8596097Z 2025-12-05 22:27:42,853 [INFO] 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-12-05T22:27:42.8597066Z 2025-12-05 22:27:42,853 [INFO] 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-12-05T22:27:42.8598001Z 2025-12-05 22:27:42,853 [INFO] 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-12-05T22:27:42.8599037Z 2025-12-05 22:27:42,853 [INFO] 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-12-05T22:27:42.8599904Z 2025-12-05 22:27:42,853 [INFO] 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-12-05T22:27:42.8600864Z 2025-12-05 22:27:42,854 [INFO] 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-12-05T22:27:42.8601754Z 2025-12-05 22:27:42,854 [INFO] 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-12-05T22:27:42.8602722Z 2025-12-05 22:27:42,854 [INFO] 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-12-05T22:27:42.8603735Z 2025-12-05 22:27:42,854 [INFO] 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-12-05T22:27:42.8604544Z 2025-12-05 22:27:42,854 [INFO] 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-12-05T22:27:42.8605516Z 2025-12-05 22:27:42,854 [INFO] 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-12-05T22:27:42.8606454Z 2025-12-05 22:27:42,855 [INFO] 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-12-05T22:27:42.8607379Z 2025-12-05 22:27:42,855 [INFO] 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-12-05T22:27:42.8608387Z 2025-12-05 22:27:42,855 [INFO] 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-12-05T22:27:42.8608810Z 2025-12-05 22:27:42,855 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten 2025-12-05T22:27:42.8609776Z 2025-12-05 22:27:42,855 [INFO] 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-12-05T22:27:42.8610326Z 2025-12-05 22:27:42,855 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-12-05T22:27:42.8611582Z 2025-12-05 22:27:42,856 [INFO] 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-12-05T22:27:42.8612613Z 2025-12-05 22:27:42,856 [INFO] 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-12-05T22:27:42.8613310Z 2025-12-05 22:27:42,856 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/util 2025-12-05T22:27:42.8614273Z 2025-12-05 22:27:42,856 [INFO] 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-12-05T22:27:42.8615444Z 2025-12-05 22:27:42,856 [INFO] 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-12-05T22:27:42.8616640Z 2025-12-05 22:27:42,857 [INFO] 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-12-05T22:27:42.8617695Z 2025-12-05 22:27:42,857 [INFO] 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-12-05T22:27:42.8619000Z 2025-12-05 22:27:42,857 [INFO] 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-12-05T22:27:42.8619528Z 2025-12-05 22:27:42,857 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type 2025-12-05T22:27:42.8620523Z 2025-12-05 22:27:42,857 [INFO] 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-12-05T22:27:42.8621619Z 2025-12-05 22:27:42,857 [INFO] 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-12-05T22:27:42.8622917Z 2025-12-05 22:27:42,857 [INFO] 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-12-05T22:27:42.8624047Z 2025-12-05 22:27:42,858 [INFO] 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-12-05T22:27:42.8625186Z 2025-12-05 22:27:42,858 [INFO] 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-12-05T22:27:42.8626238Z 2025-12-05 22:27:42,858 [INFO] 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-12-05T22:27:42.8627290Z 2025-12-05 22:27:42,858 [INFO] 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-12-05T22:27:42.8648167Z 2025-12-05 22:27:42,858 [INFO] 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-12-05T22:27:42.8649252Z 2025-12-05 22:27:42,858 [INFO] 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-12-05T22:27:42.8650470Z 2025-12-05 22:27:42,858 [INFO] 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-12-05T22:27:42.8651424Z 2025-12-05 22:27:42,859 [INFO] 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-12-05T22:27:42.8652460Z 2025-12-05 22:27:42,859 [INFO] 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-12-05T22:27:42.8653535Z 2025-12-05 22:27:42,859 [INFO] 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-12-05T22:27:42.8654611Z 2025-12-05 22:27:42,859 [INFO] 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-12-05T22:27:42.8655179Z 2025-12-05 22:27:42,859 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10 2025-12-05T22:27:42.8655745Z 2025-12-05 22:27:42,859 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10 2025-12-05T22:27:42.8656269Z 2025-12-05 22:27:42,860 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-12-05T22:27:42.8657551Z 2025-12-05 22:27:42,860 [INFO] 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-12-05T22:27:42.8658846Z 2025-12-05 22:27:42,860 [INFO] 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-12-05T22:27:42.8659411Z 2025-12-05 22:27:42,860 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-12-05T22:27:42.8660698Z 2025-12-05 22:27:42,860 [INFO] 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-12-05T22:27:42.8661944Z 2025-12-05 22:27:42,861 [INFO] 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-12-05T22:27:42.8663146Z 2025-12-05 22:27:42,861 [INFO] 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-12-05T22:27:42.8664392Z 2025-12-05 22:27:42,861 [INFO] 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-12-05T22:27:42.8665645Z 2025-12-05 22:27:42,861 [INFO] 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-12-05T22:27:42.8667033Z 2025-12-05 22:27:42,861 [INFO] 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-12-05T22:27:42.8668193Z 2025-12-05 22:27:42,861 [INFO] 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-12-05T22:27:42.8669436Z 2025-12-05 22:27:42,861 [INFO] 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-12-05T22:27:42.8670724Z 2025-12-05 22:27:42,862 [INFO] 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-12-05T22:27:42.8672020Z 2025-12-05 22:27:42,862 [INFO] 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-12-05T22:27:42.8673274Z 2025-12-05 22:27:42,862 [INFO] 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-12-05T22:27:42.8674469Z 2025-12-05 22:27:42,862 [INFO] 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-12-05T22:27:42.8675814Z 2025-12-05 22:27:42,862 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/llvmMathExtras.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-12-05T22:27:42.8677099Z 2025-12-05 22:27:42,862 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/overflows.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-12-05T22:27:42.8678333Z 2025-12-05 22:27:42,863 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util/safe_numerics.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-12-05T22:27:42.8678900Z 2025-12-05 22:27:42,863 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/torch 2025-12-05T22:27:42.8679518Z 2025-12-05 22:27:42,863 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly 2025-12-05T22:27:42.8680272Z 2025-12-05 22:27:42,863 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros 2025-12-05T22:27:42.8681681Z 2025-12-05 22:27:42,863 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros/Export.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros 2025-12-05T22:27:42.8683184Z 2025-12-05 22:27:42,863 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros/Macros.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros 2025-12-05T22:27:42.8683780Z 2025-12-05 22:27:42,864 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.8708893Z 2025-12-05 22:27:42,864 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/BFloat16.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.8710266Z 2025-12-05 22:27:42,864 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/Half.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.8711725Z 2025-12-05 22:27:42,864 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/TypeSafeSignMath.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.8713140Z 2025-12-05 22:27:42,864 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/bit_cast.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.8714557Z 2025-12-05 22:27:42,865 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/complex.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.8716046Z 2025-12-05 22:27:42,865 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/floating_point_utils.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:27:42.8716646Z 2025-12-05 22:27:42,865 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/testing_util 2025-12-05T22:27:42.8717751Z 2025-12-05 22:27:42,865 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/testing_util/error_matchers.h -> pip-out/bdist.linux-x86_64/wheel/./executorch/include/executorch/runtime/core/testing_util 2025-12-05T22:27:42.8718378Z 2025-12-05 22:27:42,865 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel 2025-12-05T22:27:42.8719314Z 2025-12-05 22:27:42,865 [INFO] 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-12-05T22:27:42.8720378Z 2025-12-05 22:27:42,866 [INFO] 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-12-05T22:27:42.8721384Z 2025-12-05 22:27:42,866 [INFO] 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-12-05T22:27:42.8722367Z 2025-12-05 22:27:42,866 [INFO] 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-12-05T22:27:42.8722899Z 2025-12-05 22:27:42,866 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel/test 2025-12-05T22:27:42.8723779Z 2025-12-05 22:27:42,866 [INFO] 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-12-05T22:27:42.8724161Z 2025-12-05 22:27:42,866 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform 2025-12-05T22:27:42.8725019Z 2025-12-05 22:27:42,866 [INFO] 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-12-05T22:27:42.8725864Z 2025-12-05 22:27:42,867 [INFO] 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-12-05T22:27:42.8726703Z 2025-12-05 22:27:42,867 [INFO] 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-12-05T22:27:42.8727589Z 2025-12-05 22:27:42,867 [INFO] 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-12-05T22:27:42.8728439Z 2025-12-05 22:27:42,867 [INFO] 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-12-05T22:27:42.8729272Z 2025-12-05 22:27:42,867 [INFO] 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-12-05T22:27:42.8730122Z 2025-12-05 22:27:42,867 [INFO] 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-12-05T22:27:42.8731058Z 2025-12-05 22:27:42,867 [INFO] 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-12-05T22:27:42.8731915Z 2025-12-05 22:27:42,868 [INFO] 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-12-05T22:27:42.8732758Z 2025-12-05 22:27:42,868 [INFO] 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-12-05T22:27:42.8733612Z 2025-12-05 22:27:42,868 [INFO] 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-12-05T22:27:42.8734015Z 2025-12-05 22:27:42,868 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform/test 2025-12-05T22:27:42.8734919Z 2025-12-05 22:27:42,868 [INFO] 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-12-05T22:27:42.8735858Z 2025-12-05 22:27:42,868 [INFO] 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-12-05T22:27:42.8736202Z 2025-12-05 22:27:42,869 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension 2025-12-05T22:27:42.8736658Z 2025-12-05 22:27:42,869 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/kernel_util 2025-12-05T22:27:42.8737652Z 2025-12-05 22:27:42,869 [INFO] 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-12-05T22:27:42.8738575Z 2025-12-05 22:27:42,869 [INFO] 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-12-05T22:27:42.8739452Z 2025-12-05 22:27:42,869 [INFO] 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-12-05T22:27:42.8739848Z 2025-12-05 22:27:42,869 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/tensor 2025-12-05T22:27:42.8740689Z 2025-12-05 22:27:42,870 [INFO] 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-12-05T22:27:42.9298341Z 2025-12-05 22:27:42,870 [INFO] 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-12-05T22:27:42.9299435Z 2025-12-05 22:27:42,870 [INFO] 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-12-05T22:27:42.9300321Z 2025-12-05 22:27:42,870 [INFO] 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-12-05T22:27:42.9300755Z 2025-12-05 22:27:42,870 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/threadpool 2025-12-05T22:27:42.9301910Z 2025-12-05 22:27:42,870 [INFO] 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-12-05T22:27:42.9302839Z 2025-12-05 22:27:42,871 [INFO] 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-12-05T22:27:42.9303962Z 2025-12-05 22:27:42,871 [INFO] 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-12-05T22:27:42.9304217Z 2025-12-05 22:27:42,871 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/data 2025-12-05T22:27:42.9304491Z 2025-12-05 22:27:42,871 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/data/bin 2025-12-05T22:27:42.9305041Z 2025-12-05 22:27:42,871 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin/flatc -> pip-out/bdist.linux-x86_64/wheel/./executorch/data/bin 2025-12-05T22:27:42.9305716Z 2025-12-05 22:27:42,875 [INFO] 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-12-05T22:27:42.9306047Z 2025-12-05 22:27:42,876 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch/data/lib 2025-12-05T22:27:42.9306648Z 2025-12-05 22:27:42,876 [INFO] copying pip-out/lib.linux-x86_64-cpython-310/executorch/data/lib/aoti_cuda_shims.lib -> pip-out/bdist.linux-x86_64/wheel/./executorch/data/lib 2025-12-05T22:27:42.9307036Z 2025-12-05 22:27:42,876 [INFO] running install_egg_info 2025-12-05T22:27:42.9307502Z 2025-12-05 22:27:42,882 [INFO] Copying executorch.egg-info to pip-out/bdist.linux-x86_64/wheel/./executorch-1.1.0a0+42e3222-py3.10.egg-info 2025-12-05T22:27:42.9307642Z 2025-12-05 22:27:42,882 [INFO] running install_scripts 2025-12-05T22:27:42.9307994Z 2025-12-05 22:27:42,895 [INFO] creating pip-out/bdist.linux-x86_64/wheel/executorch-1.1.0a0+42e3222.dist-info/WHEEL 2025-12-05T22:27:42.9308766Z 2025-12-05 22:27:42,895 [INFO] creating '/tmp/pip-wheel-ipxzdccv/.tmp-s7bq0ali/executorch-1.1.0a0+42e3222-cp310-cp310-linux_x86_64.whl' and adding 'pip-out/bdist.linux-x86_64/wheel' to it 2025-12-05T22:27:42.9308988Z 2025-12-05 22:27:42,896 [INFO] adding 'executorch/version.py' 2025-12-05T22:27:42.9309213Z 2025-12-05 22:27:42,896 [INFO] adding 'executorch/backends/__init__.py' 2025-12-05T22:27:42.9309481Z 2025-12-05 22:27:42,896 [INFO] adding 'executorch/backends/aoti/aoti_backend.py' 2025-12-05T22:27:42.9309779Z 2025-12-05 22:27:42,897 [INFO] adding 'executorch/backends/aoti/aoti_partitioner.py' 2025-12-05T22:27:42.9310106Z 2025-12-05 22:27:42,897 [INFO] adding 'executorch/backends/aoti/passes/replace_view_copy_with_view.py' 2025-12-05T22:27:42.9310533Z 2025-12-05 22:27:42,914 [INFO] adding 'executorch/backends/apple/coreml/executorchcoreml.cpython-310-x86_64-linux-gnu.so' 2025-12-05T22:27:42.9310807Z 2025-12-05 22:27:42,915 [INFO] adding 'executorch/backends/apple/coreml/executorchcoreml.pyi' 2025-12-05T22:27:42.9311026Z 2025-12-05 22:27:42,916 [INFO] adding 'executorch/backends/apple/coreml/logging.py' 2025-12-05T22:27:42.9311301Z 2025-12-05 22:27:42,916 [INFO] adding 'executorch/backends/apple/coreml/compiler/__init__.py' 2025-12-05T22:27:42.9311615Z 2025-12-05 22:27:42,916 [INFO] adding 'executorch/backends/apple/coreml/compiler/coreml_preprocess.py' 2025-12-05T22:27:42.9311951Z 2025-12-05 22:27:42,917 [INFO] adding 'executorch/backends/apple/coreml/compiler/enumerated_shape_utils.py' 2025-12-05T22:27:42.9312238Z 2025-12-05 22:27:42,917 [INFO] adding 'executorch/backends/apple/coreml/compiler/torch_ops.py' 2025-12-05T22:27:42.9312507Z 2025-12-05 22:27:42,917 [INFO] adding 'executorch/backends/apple/coreml/partition/__init__.py' 2025-12-05T22:27:42.9312830Z 2025-12-05 22:27:42,918 [INFO] adding 'executorch/backends/apple/coreml/partition/coreml_partitioner.py' 2025-12-05T22:27:42.9313168Z 2025-12-05 22:27:42,918 [INFO] adding 'executorch/backends/apple/coreml/quantizer/__init__.py' 2025-12-05T22:27:42.9313490Z 2025-12-05 22:27:42,918 [INFO] adding 'executorch/backends/apple/coreml/quantizer/coreml_quantizer.py' 2025-12-05T22:27:42.9313747Z 2025-12-05 22:27:42,919 [INFO] adding 'executorch/backends/apple/coreml/recipes/__init__.py' 2025-12-05T22:27:42.9314076Z 2025-12-05 22:27:42,919 [INFO] adding 'executorch/backends/apple/coreml/recipes/coreml_recipe_provider.py' 2025-12-05T22:27:42.9314407Z 2025-12-05 22:27:42,919 [INFO] adding 'executorch/backends/apple/coreml/recipes/coreml_recipe_types.py' 2025-12-05T22:27:42.9314763Z 2025-12-05 22:27:42,920 [INFO] adding 'executorch/backends/apple/coreml/runtime/test/export_stateful_model.py' 2025-12-05T22:27:42.9315084Z 2025-12-05 22:27:42,920 [INFO] adding 'executorch/backends/apple/coreml/test/test_coreml_partitioner.py' 2025-12-05T22:27:42.9315405Z 2025-12-05 22:27:42,920 [INFO] adding 'executorch/backends/apple/coreml/test/test_coreml_quantizer.py' 2025-12-05T22:27:42.9315705Z 2025-12-05 22:27:42,921 [INFO] adding 'executorch/backends/apple/coreml/test/test_coreml_recipes.py' 2025-12-05T22:27:42.9315994Z 2025-12-05 22:27:42,921 [INFO] adding 'executorch/backends/apple/coreml/test/test_coreml_utils.py' 2025-12-05T22:27:42.9316319Z 2025-12-05 22:27:42,921 [INFO] adding 'executorch/backends/apple/coreml/test/test_enumerated_shapes.py' 2025-12-05T22:27:42.9316594Z 2025-12-05 22:27:42,922 [INFO] adding 'executorch/backends/apple/coreml/test/test_torch_ops.py' 2025-12-05T22:27:42.9316829Z 2025-12-05 22:27:42,922 [INFO] adding 'executorch/backends/apple/coreml/test/tester.py' 2025-12-05T22:27:42.9317135Z 2025-12-05 22:27:42,922 [INFO] adding 'executorch/backends/apple/metal/metal_backend.py' 2025-12-05T22:27:42.9317394Z 2025-12-05 22:27:42,922 [INFO] adding 'executorch/backends/apple/metal/metal_partitioner.py' 2025-12-05T22:27:42.9317635Z 2025-12-05 22:27:42,923 [INFO] adding 'executorch/backends/apple/metal/tests/__init__.py' 2025-12-05T22:27:42.9317942Z 2025-12-05 22:27:42,923 [INFO] adding 'executorch/backends/apple/metal/tests/test_metal_backend.py' 2025-12-05T22:27:42.9318432Z 2025-12-05 22:27:42,923 [INFO] adding 'executorch/backends/apple/metal/tests/test_metal_partitioner.py' 2025-12-05T22:27:42.9318642Z 2025-12-05 22:27:42,923 [INFO] adding 'executorch/backends/apple/mps/__init__.py' 2025-12-05T22:27:42.9318896Z 2025-12-05 22:27:42,924 [INFO] adding 'executorch/backends/apple/mps/mps_preprocess.py' 2025-12-05T22:27:42.9319171Z 2025-12-05 22:27:42,924 [INFO] adding 'executorch/backends/apple/mps/operators/__init__.py' 2025-12-05T22:27:42.9319461Z 2025-12-05 22:27:42,924 [INFO] adding 'executorch/backends/apple/mps/operators/activation_ops.py' 2025-12-05T22:27:42.9319727Z 2025-12-05 22:27:42,924 [INFO] adding 'executorch/backends/apple/mps/operators/binary_ops.py' 2025-12-05T22:27:42.9319999Z 2025-12-05 22:27:42,925 [INFO] adding 'executorch/backends/apple/mps/operators/clamp_ops.py' 2025-12-05T22:27:42.9320283Z 2025-12-05 22:27:42,925 [INFO] adding 'executorch/backends/apple/mps/operators/constant_ops.py' 2025-12-05T22:27:42.9320579Z 2025-12-05 22:27:42,925 [INFO] adding 'executorch/backends/apple/mps/operators/convolution_ops.py' 2025-12-05T22:27:42.9320868Z 2025-12-05 22:27:42,925 [INFO] adding 'executorch/backends/apple/mps/operators/indexing_ops.py' 2025-12-05T22:27:42.9321174Z 2025-12-05 22:27:42,926 [INFO] adding 'executorch/backends/apple/mps/operators/linear_algebra_ops.py' 2025-12-05T22:27:42.9321451Z 2025-12-05 22:27:42,926 [INFO] adding 'executorch/backends/apple/mps/operators/node_visitor.py' 2025-12-05T22:27:42.9321772Z 2025-12-05 22:27:42,926 [INFO] adding 'executorch/backends/apple/mps/operators/normalization_ops.py' 2025-12-05T22:27:42.9322030Z 2025-12-05 22:27:42,927 [INFO] adding 'executorch/backends/apple/mps/operators/op_clone.py' 2025-12-05T22:27:42.9322295Z 2025-12-05 22:27:42,927 [INFO] adding 'executorch/backends/apple/mps/operators/op_getitem.py' 2025-12-05T22:27:42.9322758Z 2025-12-05 22:27:42,927 [INFO] adding 'executorch/backends/apple/mps/operators/op_quant_dequant.py' 2025-12-05T22:27:42.9323147Z 2025-12-05 22:27:42,927 [INFO] adding 'executorch/backends/apple/mps/operators/op_skip_ops.py' 2025-12-05T22:27:42.9323466Z 2025-12-05 22:27:42,927 [INFO] adding 'executorch/backends/apple/mps/operators/pad_ops.py' 2025-12-05T22:27:42.9323757Z 2025-12-05 22:27:42,928 [INFO] adding 'executorch/backends/apple/mps/operators/pooling_ops.py' 2025-12-05T22:27:42.9324016Z 2025-12-05 22:27:42,928 [INFO] adding 'executorch/backends/apple/mps/operators/range_ops.py' 2025-12-05T22:27:42.9324288Z 2025-12-05 22:27:42,928 [INFO] adding 'executorch/backends/apple/mps/operators/reduce_ops.py' 2025-12-05T22:27:42.9324546Z 2025-12-05 22:27:42,928 [INFO] adding 'executorch/backends/apple/mps/operators/shape_ops.py' 2025-12-05T22:27:42.9324818Z 2025-12-05 22:27:42,929 [INFO] adding 'executorch/backends/apple/mps/operators/unary_ops.py' 2025-12-05T22:27:42.9536978Z 2025-12-05 22:27:42,929 [INFO] adding 'executorch/backends/apple/mps/partition/__init__.py' 2025-12-05T22:27:42.9537603Z 2025-12-05 22:27:42,929 [INFO] adding 'executorch/backends/apple/mps/partition/mps_partitioner.py' 2025-12-05T22:27:42.9538062Z 2025-12-05 22:27:42,930 [INFO] adding 'executorch/backends/apple/mps/serialization/mps_graph_schema.py' 2025-12-05T22:27:42.9538551Z 2025-12-05 22:27:42,930 [INFO] adding 'executorch/backends/apple/mps/serialization/mps_graph_serialize.py' 2025-12-05T22:27:42.9538864Z 2025-12-05 22:27:42,930 [INFO] adding 'executorch/backends/apple/mps/serialization/schema.fbs' 2025-12-05T22:27:42.9539345Z 2025-12-05 22:27:42,932 [INFO] adding 'executorch/backends/apple/mps/test/test_mps.py' 2025-12-05T22:27:42.9539629Z 2025-12-05 22:27:42,932 [INFO] adding 'executorch/backends/apple/mps/test/test_mps_binary_ops.py' 2025-12-05T22:27:42.9539922Z 2025-12-05 22:27:42,932 [INFO] adding 'executorch/backends/apple/mps/test/test_mps_indexing_ops.py' 2025-12-05T22:27:42.9540207Z 2025-12-05 22:27:42,933 [INFO] adding 'executorch/backends/apple/mps/test/test_mps_linear.py' 2025-12-05T22:27:42.9540469Z 2025-12-05 22:27:42,933 [INFO] adding 'executorch/backends/apple/mps/test/test_mps_models.py' 2025-12-05T22:27:42.9540833Z 2025-12-05 22:27:42,933 [INFO] adding 'executorch/backends/apple/mps/test/test_mps_unary_ops.py' 2025-12-05T22:27:42.9541173Z 2025-12-05 22:27:42,934 [INFO] adding 'executorch/backends/apple/mps/test/test_mps_utils.py' 2025-12-05T22:27:42.9541491Z 2025-12-05 22:27:42,934 [INFO] adding 'executorch/backends/apple/mps/utils/mps_utils.py' 2025-12-05T22:27:42.9541755Z 2025-12-05 22:27:42,934 [INFO] adding 'executorch/backends/apple/mps/utils/quant_utils.py' 2025-12-05T22:27:42.9541954Z 2025-12-05 22:27:42,935 [INFO] adding 'executorch/backends/arm/arm_vela.py' 2025-12-05T22:27:42.9542150Z 2025-12-05 22:27:42,935 [INFO] adding 'executorch/backends/arm/constants.py' 2025-12-05T22:27:42.9542368Z 2025-12-05 22:27:42,935 [INFO] adding 'executorch/backends/arm/process_node.py' 2025-12-05T22:27:42.9542592Z 2025-12-05 22:27:42,936 [INFO] adding 'executorch/backends/arm/_passes/__init__.py' 2025-12-05T22:27:42.9542830Z 2025-12-05 22:27:42,936 [INFO] adding 'executorch/backends/arm/_passes/_debug_passes.py' 2025-12-05T22:27:42.9543145Z 2025-12-05 22:27:42,936 [INFO] adding 'executorch/backends/arm/_passes/annotate_decomposed_matmul.py' 2025-12-05T22:27:42.9543620Z 2025-12-05 22:27:42,936 [INFO] adding 'executorch/backends/arm/_passes/annotate_output_dim_order_pass.py' 2025-12-05T22:27:42.9543839Z 2025-12-05 22:27:42,937 [INFO] adding 'executorch/backends/arm/_passes/arm_pass.py' 2025-12-05T22:27:42.9544152Z 2025-12-05 22:27:42,937 [INFO] adding 'executorch/backends/arm/_passes/arm_pass_manager.py' 2025-12-05T22:27:42.9544403Z 2025-12-05 22:27:42,937 [INFO] adding 'executorch/backends/arm/_passes/arm_pass_utils.py' 2025-12-05T22:27:42.9544668Z 2025-12-05 22:27:42,938 [INFO] adding 'executorch/backends/arm/_passes/broadcast_args_pass.py' 2025-12-05T22:27:42.9545051Z 2025-12-05 22:27:42,938 [INFO] adding 'executorch/backends/arm/_passes/cast_int64_pass.py' 2025-12-05T22:27:42.9545329Z 2025-12-05 22:27:42,938 [INFO] adding 'executorch/backends/arm/_passes/cast_to_int32_pass.py' 2025-12-05T22:27:42.9545608Z 2025-12-05 22:27:42,938 [INFO] adding 'executorch/backends/arm/_passes/conv1d_unsqueeze_pass.py' 2025-12-05T22:27:42.9546007Z 2025-12-05 22:27:42,939 [INFO] adding 'executorch/backends/arm/_passes/convert_elu_params.py' 2025-12-05T22:27:42.9546338Z 2025-12-05 22:27:42,939 [INFO] adding 'executorch/backends/arm/_passes/convert_expand_copy_to_repeat.py' 2025-12-05T22:27:42.9546713Z 2025-12-05 22:27:42,939 [INFO] adding 'executorch/backends/arm/_passes/convert_full_like_to_full_pass.py' 2025-12-05T22:27:42.9547033Z 2025-12-05 22:27:42,939 [INFO] adding 'executorch/backends/arm/_passes/convert_int64_const_ops_to_int32.py' 2025-12-05T22:27:42.9547367Z 2025-12-05 22:27:42,940 [INFO] adding 'executorch/backends/arm/_passes/convert_int64_output_ops_to_int32.py' 2025-12-05T22:27:42.9547635Z 2025-12-05 22:27:42,940 [INFO] adding 'executorch/backends/arm/_passes/convert_minmax_pass.py' 2025-12-05T22:27:42.9547984Z 2025-12-05 22:27:42,940 [INFO] adding 'executorch/backends/arm/_passes/convert_permute_singleton_to_view_pass.py' 2025-12-05T22:27:42.9548276Z 2025-12-05 22:27:42,940 [INFO] adding 'executorch/backends/arm/_passes/convert_split_to_slice.py' 2025-12-05T22:27:42.9548734Z 2025-12-05 22:27:42,941 [INFO] adding 'executorch/backends/arm/_passes/convert_squeezes_to_view.py' 2025-12-05T22:27:42.9549071Z 2025-12-05 22:27:42,941 [INFO] adding 'executorch/backends/arm/_passes/convert_to_clamp_pass.py' 2025-12-05T22:27:42.9549501Z 2025-12-05 22:27:42,941 [INFO] adding 'executorch/backends/arm/_passes/decompose_acosh_pass.py' 2025-12-05T22:27:42.9549838Z 2025-12-05 22:27:42,941 [INFO] adding 'executorch/backends/arm/_passes/decompose_adaptive_avg_pool2d_pass.py' 2025-12-05T22:27:42.9550145Z 2025-12-05 22:27:42,942 [INFO] adding 'executorch/backends/arm/_passes/decompose_add_sub_alpha_pass.py' 2025-12-05T22:27:42.9550433Z 2025-12-05 22:27:42,942 [INFO] adding 'executorch/backends/arm/_passes/decompose_addmm_pass.py' 2025-12-05T22:27:42.9550695Z 2025-12-05 22:27:42,942 [INFO] adding 'executorch/backends/arm/_passes/decompose_any_pass.py' 2025-12-05T22:27:42.9551001Z 2025-12-05 22:27:42,942 [INFO] adding 'executorch/backends/arm/_passes/decompose_asin_and_acos_pass.py' 2025-12-05T22:27:42.9551328Z 2025-12-05 22:27:42,943 [INFO] adding 'executorch/backends/arm/_passes/decompose_asinh_pass.py' 2025-12-05T22:27:42.9551592Z 2025-12-05 22:27:42,943 [INFO] adding 'executorch/backends/arm/_passes/decompose_atan_pass.py' 2025-12-05T22:27:42.9551866Z 2025-12-05 22:27:42,943 [INFO] adding 'executorch/backends/arm/_passes/decompose_atanh_pass.py' 2025-12-05T22:27:42.9552221Z 2025-12-05 22:27:42,943 [INFO] adding 'executorch/backends/arm/_passes/decompose_avg_pool2d_pass.py' 2025-12-05T22:27:42.9552546Z 2025-12-05 22:27:42,944 [INFO] adding 'executorch/backends/arm/_passes/decompose_batch_norm_no_stats.py' 2025-12-05T22:27:42.9552814Z 2025-12-05 22:27:42,944 [INFO] adding 'executorch/backends/arm/_passes/decompose_cosh_pass.py' 2025-12-05T22:27:42.9553139Z 2025-12-05 22:27:42,944 [INFO] adding 'executorch/backends/arm/_passes/decompose_cosine_similarity_pass.py' 2025-12-05T22:27:42.9553431Z 2025-12-05 22:27:42,945 [INFO] adding 'executorch/backends/arm/_passes/decompose_cumsum_pass.py' 2025-12-05T22:27:42.9553691Z 2025-12-05 22:27:42,945 [INFO] adding 'executorch/backends/arm/_passes/decompose_div_pass.py' 2025-12-05T22:27:42.9553985Z 2025-12-05 22:27:42,945 [INFO] adding 'executorch/backends/arm/_passes/decompose_div_tensor_mode.py' 2025-12-05T22:27:42.9554263Z 2025-12-05 22:27:42,945 [INFO] adding 'executorch/backends/arm/_passes/decompose_elu_pass.py' 2025-12-05T22:27:42.9554553Z 2025-12-05 22:27:42,946 [INFO] adding 'executorch/backends/arm/_passes/decompose_embedding_pass.py' 2025-12-05T22:27:42.9554822Z 2025-12-05 22:27:42,946 [INFO] adding 'executorch/backends/arm/_passes/decompose_expm1_pass.py' 2025-12-05T22:27:42.9555203Z 2025-12-05 22:27:42,946 [INFO] adding 'executorch/backends/arm/_passes/decompose_floor_divide_pass.py' 2025-12-05T22:27:42.9555487Z 2025-12-05 22:27:42,946 [INFO] adding 'executorch/backends/arm/_passes/decompose_gelu_pass.py' 2025-12-05T22:27:42.9555806Z 2025-12-05 22:27:42,947 [INFO] adding 'executorch/backends/arm/_passes/decompose_glu_pass.py' 2025-12-05T22:27:42.9556124Z 2025-12-05 22:27:42,947 [INFO] adding 'executorch/backends/arm/_passes/decompose_grouped_conv_pass.py' 2025-12-05T22:27:42.9556413Z 2025-12-05 22:27:42,947 [INFO] adding 'executorch/backends/arm/_passes/decompose_groupnorm_pass.py' 2025-12-05T22:27:42.9556767Z 2025-12-05 22:27:42,948 [INFO] adding 'executorch/backends/arm/_passes/decompose_int16_activation_conv2d_pass.py' 2025-12-05T22:27:42.9557133Z 2025-12-05 22:27:42,948 [INFO] adding 'executorch/backends/arm/_passes/decompose_int32_clamp_pass.py' 2025-12-05T22:27:42.9557419Z 2025-12-05 22:27:42,948 [INFO] adding 'executorch/backends/arm/_passes/decompose_int_pow_pass.py' 2025-12-05T22:27:42.9557740Z 2025-12-05 22:27:42,948 [INFO] adding 'executorch/backends/arm/_passes/decompose_layernorm_pass.py' 2025-12-05T22:27:42.9558078Z 2025-12-05 22:27:42,949 [INFO] adding 'executorch/backends/arm/_passes/decompose_leaky_relu_pass.py' 2025-12-05T22:27:42.9558404Z 2025-12-05 22:27:42,949 [INFO] adding 'executorch/backends/arm/_passes/decompose_linalg_vector_norm_pass.py' 2025-12-05T22:27:42.9558681Z 2025-12-05 22:27:42,949 [INFO] adding 'executorch/backends/arm/_passes/decompose_linear_pass.py' 2025-12-05T22:27:42.9559040Z 2025-12-05 22:27:42,949 [INFO] adding 'executorch/backends/arm/_passes/decompose_logit_pass.py' 2025-12-05T22:27:42.9559340Z 2025-12-05 22:27:42,950 [INFO] adding 'executorch/backends/arm/_passes/decompose_masked_fill_pass.py' 2025-12-05T22:27:42.9559693Z 2025-12-05 22:27:42,950 [INFO] adding 'executorch/backends/arm/_passes/decompose_maxpool2d_with_dilation_pass.py' 2025-12-05T22:27:42.9559987Z 2025-12-05 22:27:42,950 [INFO] adding 'executorch/backends/arm/_passes/decompose_meandim_pass.py' 2025-12-05T22:27:42.9560246Z 2025-12-05 22:27:42,951 [INFO] adding 'executorch/backends/arm/_passes/decompose_ne_pass.py' 2025-12-05T22:27:42.9560521Z 2025-12-05 22:27:42,951 [INFO] adding 'executorch/backends/arm/_passes/decompose_quant_nodes.py' 2025-12-05T22:27:42.9560814Z 2025-12-05 22:27:42,951 [INFO] adding 'executorch/backends/arm/_passes/decompose_remainder_pass.py' 2025-12-05T22:27:42.9561153Z 2025-12-05 22:27:42,951 [INFO] adding 'executorch/backends/arm/_passes/decompose_round_pass.py' 2025-12-05T22:27:42.9561424Z 2025-12-05 22:27:42,952 [INFO] adding 'executorch/backends/arm/_passes/decompose_sdpa_pass.py' 2025-12-05T22:27:42.9561703Z 2025-12-05 22:27:42,952 [INFO] adding 'executorch/backends/arm/_passes/decompose_select.py' 2025-12-05T22:27:42.9562064Z 2025-12-05 22:27:42,952 [INFO] adding 'executorch/backends/arm/_passes/decompose_select_scatter_pass.py' 2025-12-05T22:27:42.9562333Z 2025-12-05 22:27:42,952 [INFO] adding 'executorch/backends/arm/_passes/decompose_sign_pass.py' 2025-12-05T22:27:42.9562596Z 2025-12-05 22:27:42,953 [INFO] adding 'executorch/backends/arm/_passes/decompose_silu_pass.py' 2025-12-05T22:27:42.9794256Z 2025-12-05 22:27:42,953 [INFO] adding 'executorch/backends/arm/_passes/decompose_sinh_pass.py' 2025-12-05T22:27:42.9794674Z 2025-12-05 22:27:42,953 [INFO] adding 'executorch/backends/arm/_passes/decompose_softmax_pass.py' 2025-12-05T22:27:42.9795016Z 2025-12-05 22:27:42,953 [INFO] adding 'executorch/backends/arm/_passes/decompose_softmax_unstable_pass.py' 2025-12-05T22:27:42.9795309Z 2025-12-05 22:27:42,954 [INFO] adding 'executorch/backends/arm/_passes/decompose_sqrt_pass.py' 2025-12-05T22:27:42.9795570Z 2025-12-05 22:27:42,954 [INFO] adding 'executorch/backends/arm/_passes/decompose_sum_pass.py' 2025-12-05T22:27:42.9795828Z 2025-12-05 22:27:42,954 [INFO] adding 'executorch/backends/arm/_passes/decompose_var_pass.py' 2025-12-05T22:27:42.9796435Z 2025-12-05 22:27:42,954 [INFO] adding 'executorch/backends/arm/_passes/decorate_fp32_to_int32_casting_pass.py' 2025-12-05T22:27:42.9796782Z 2025-12-05 22:27:42,955 [INFO] adding 'executorch/backends/arm/_passes/fold_qdq_with_annotated_qparams_pass.py' 2025-12-05T22:27:42.9797065Z 2025-12-05 22:27:42,955 [INFO] adding 'executorch/backends/arm/_passes/fuse_batch_norm2d_pass.py' 2025-12-05T22:27:42.9797401Z 2025-12-05 22:27:42,956 [INFO] adding 'executorch/backends/arm/_passes/fuse_constant_ops_pass.py' 2025-12-05T22:27:42.9797770Z 2025-12-05 22:27:42,956 [INFO] adding 'executorch/backends/arm/_passes/fuse_duplicate_users_pass.py' 2025-12-05T22:27:42.9798207Z 2025-12-05 22:27:42,956 [INFO] adding 'executorch/backends/arm/_passes/fuse_equal_placeholders_pass.py' 2025-12-05T22:27:42.9798535Z 2025-12-05 22:27:42,957 [INFO] adding 'executorch/backends/arm/_passes/fuse_quantized_activation_pass.py' 2025-12-05T22:27:42.9798888Z 2025-12-05 22:27:42,957 [INFO] adding 'executorch/backends/arm/_passes/fuse_view_copy_transform_pass.py' 2025-12-05T22:27:42.9799303Z 2025-12-05 22:27:42,957 [INFO] adding 'executorch/backends/arm/_passes/insert_int32_casts_after_int64_placeholders.py' 2025-12-05T22:27:42.9799630Z 2025-12-05 22:27:42,958 [INFO] adding 'executorch/backends/arm/_passes/insert_rescales_pass.py' 2025-12-05T22:27:42.9799953Z 2025-12-05 22:27:42,958 [INFO] adding 'executorch/backends/arm/_passes/insert_table_ops.py' 2025-12-05T22:27:42.9800291Z 2025-12-05 22:27:42,959 [INFO] adding 'executorch/backends/arm/_passes/match_arg_dtype_pass.py' 2025-12-05T22:27:42.9800571Z 2025-12-05 22:27:42,959 [INFO] adding 'executorch/backends/arm/_passes/match_arg_ranks_pass.py' 2025-12-05T22:27:42.9801001Z 2025-12-05 22:27:42,959 [INFO] adding 'executorch/backends/arm/_passes/mm_to_bmm_pass.py' 2025-12-05T22:27:42.9801302Z 2025-12-05 22:27:42,960 [INFO] adding 'executorch/backends/arm/_passes/promote_bool_operands_pass.py' 2025-12-05T22:27:42.9801558Z 2025-12-05 22:27:42,960 [INFO] adding 'executorch/backends/arm/_passes/quant_args.py' 2025-12-05T22:27:42.9801839Z 2025-12-05 22:27:42,960 [INFO] adding 'executorch/backends/arm/_passes/remove_getitem_pass.py' 2025-12-05T22:27:42.9802296Z 2025-12-05 22:27:42,960 [INFO] adding 'executorch/backends/arm/_passes/remove_graph_asserts_pass.py' 2025-12-05T22:27:42.9802614Z 2025-12-05 22:27:42,961 [INFO] adding 'executorch/backends/arm/_passes/remove_noop_pass.py' 2025-12-05T22:27:42.9802940Z 2025-12-05 22:27:42,961 [INFO] adding 'executorch/backends/arm/_passes/replace_inf_and_limit_values_pass.py' 2025-12-05T22:27:42.9803310Z 2025-12-05 22:27:42,961 [INFO] adding 'executorch/backends/arm/_passes/replace_scalar_with_tensor_pass.py' 2025-12-05T22:27:42.9803593Z 2025-12-05 22:27:42,962 [INFO] adding 'executorch/backends/arm/_passes/rewrite_conv2d_pass.py' 2025-12-05T22:27:42.9803897Z 2025-12-05 22:27:42,962 [INFO] adding 'executorch/backends/arm/_passes/rewrite_matmul.py' 2025-12-05T22:27:42.9804183Z 2025-12-05 22:27:42,962 [INFO] adding 'executorch/backends/arm/_passes/rewrite_upsample.py' 2025-12-05T22:27:42.9804598Z 2025-12-05 22:27:42,962 [INFO] adding 'executorch/backends/arm/_passes/scalars_to_attribute_pass.py' 2025-12-05T22:27:42.9804924Z 2025-12-05 22:27:42,963 [INFO] adding 'executorch/backends/arm/_passes/size_adjust_input_pass.py' 2025-12-05T22:27:42.9805219Z 2025-12-05 22:27:42,963 [INFO] adding 'executorch/backends/arm/_passes/to_tosa_memory_format_pass.py' 2025-12-05T22:27:42.9805592Z 2025-12-05 22:27:42,964 [INFO] adding 'executorch/backends/arm/_passes/unsqueeze_before_repeat_pass.py' 2025-12-05T22:27:42.9805931Z 2025-12-05 22:27:42,964 [INFO] adding 'executorch/backends/arm/_passes/unsqueeze_scalar_placeholders_pass.py' 2025-12-05T22:27:42.9806142Z 2025-12-05 22:27:42,964 [INFO] adding 'executorch/backends/arm/common/__init__.py' 2025-12-05T22:27:42.9806431Z 2025-12-05 22:27:42,964 [INFO] adding 'executorch/backends/arm/common/annotation_meta.py' 2025-12-05T22:27:42.9806790Z 2025-12-05 22:27:42,965 [INFO] adding 'executorch/backends/arm/common/arm_compile_spec.py' 2025-12-05T22:27:42.9807043Z 2025-12-05 22:27:42,965 [INFO] adding 'executorch/backends/arm/common/debug.py' 2025-12-05T22:27:42.9807339Z 2025-12-05 22:27:42,965 [INFO] adding 'executorch/backends/arm/common/type.py' 2025-12-05T22:27:42.9807547Z 2025-12-05 22:27:42,965 [INFO] adding 'executorch/backends/arm/debug/__init__.py' 2025-12-05T22:27:42.9807750Z 2025-12-05 22:27:42,966 [INFO] adding 'executorch/backends/arm/debug/schema.py' 2025-12-05T22:27:42.9807988Z 2025-12-05 22:27:42,966 [INFO] adding 'executorch/backends/arm/ethosu/__init__.py' 2025-12-05T22:27:42.9808228Z 2025-12-05 22:27:42,966 [INFO] adding 'executorch/backends/arm/ethosu/backend.py' 2025-12-05T22:27:42.9808461Z 2025-12-05 22:27:42,967 [INFO] adding 'executorch/backends/arm/ethosu/compile_spec.py' 2025-12-05T22:27:42.9808691Z 2025-12-05 22:27:42,967 [INFO] adding 'executorch/backends/arm/ethosu/partitioner.py' 2025-12-05T22:27:42.9808962Z 2025-12-05 22:27:42,967 [INFO] adding 'executorch/backends/arm/operator_support/__init__.py' 2025-12-05T22:27:42.9809333Z 2025-12-05 22:27:42,967 [INFO] adding 'executorch/backends/arm/operator_support/clone_dim_order_support.py' 2025-12-05T22:27:42.9809796Z 2025-12-05 22:27:42,968 [INFO] adding 'executorch/backends/arm/operator_support/control_flow_support.py' 2025-12-05T22:27:42.9810191Z 2025-12-05 22:27:42,968 [INFO] adding 'executorch/backends/arm/operator_support/convolution_support.py' 2025-12-05T22:27:42.9810493Z 2025-12-05 22:27:42,968 [INFO] adding 'executorch/backends/arm/operator_support/embedding_support.py' 2025-12-05T22:27:42.9811376Z 2025-12-05 22:27:42,969 [INFO] adding 'executorch/backends/arm/operator_support/ethos_u55_support.py' 2025-12-05T22:27:42.9811742Z 2025-12-05 22:27:42,969 [INFO] adding 'executorch/backends/arm/operator_support/index_select_support.py' 2025-12-05T22:27:42.9812140Z 2025-12-05 22:27:42,969 [INFO] adding 'executorch/backends/arm/operator_support/index_tensor_support.py' 2025-12-05T22:27:42.9812497Z 2025-12-05 22:27:42,970 [INFO] adding 'executorch/backends/arm/operator_support/minmax_support.py' 2025-12-05T22:27:42.9812803Z 2025-12-05 22:27:42,970 [INFO] adding 'executorch/backends/arm/operator_support/pool_2d_support.py' 2025-12-05T22:27:42.9813164Z 2025-12-05 22:27:42,970 [INFO] adding 'executorch/backends/arm/operator_support/reduce_sum_support.py' 2025-12-05T22:27:42.9813477Z 2025-12-05 22:27:42,971 [INFO] adding 'executorch/backends/arm/operator_support/right_shift_support.py' 2025-12-05T22:27:42.9813795Z 2025-12-05 22:27:42,971 [INFO] adding 'executorch/backends/arm/operator_support/slice_copy_support.py' 2025-12-05T22:27:42.9814175Z 2025-12-05 22:27:42,971 [INFO] adding 'executorch/backends/arm/operator_support/to_dim_order_copy_support.py' 2025-12-05T22:27:42.9814629Z 2025-12-05 22:27:42,972 [INFO] adding 'executorch/backends/arm/operator_support/tosa_profile_supported_op_lists.py' 2025-12-05T22:27:42.9815033Z 2025-12-05 22:27:42,972 [INFO] adding 'executorch/backends/arm/operator_support/tosa_supported_operators.py' 2025-12-05T22:27:42.9815324Z 2025-12-05 22:27:42,973 [INFO] adding 'executorch/backends/arm/operator_support/where_support.py' 2025-12-05T22:27:42.9815606Z 2025-12-05 22:27:42,973 [INFO] adding 'executorch/backends/arm/operators/__init__.py' 2025-12-05T22:27:42.9815869Z 2025-12-05 22:27:42,973 [INFO] adding 'executorch/backends/arm/operators/node_visitor.py' 2025-12-05T22:27:42.9816090Z 2025-12-05 22:27:42,974 [INFO] adding 'executorch/backends/arm/operators/op_abs.py' 2025-12-05T22:27:42.9816329Z 2025-12-05 22:27:42,974 [INFO] adding 'executorch/backends/arm/operators/op_add.py' 2025-12-05T22:27:42.9816566Z 2025-12-05 22:27:42,974 [INFO] adding 'executorch/backends/arm/operators/op_amax.py' 2025-12-05T22:27:42.9816843Z 2025-12-05 22:27:42,974 [INFO] adding 'executorch/backends/arm/operators/op_amin.py' 2025-12-05T22:27:42.9817153Z 2025-12-05 22:27:42,975 [INFO] adding 'executorch/backends/arm/operators/op_any.py' 2025-12-05T22:27:42.9817477Z 2025-12-05 22:27:42,975 [INFO] adding 'executorch/backends/arm/operators/op_avg_pool2d.py' 2025-12-05T22:27:42.9817756Z 2025-12-05 22:27:42,975 [INFO] adding 'executorch/backends/arm/operators/op_bitwise_not.py' 2025-12-05T22:27:42.9818015Z 2025-12-05 22:27:42,975 [INFO] adding 'executorch/backends/arm/operators/op_cat.py' 2025-12-05T22:27:42.9818440Z 2025-12-05 22:27:42,976 [INFO] adding 'executorch/backends/arm/operators/op_ceil.py' 2025-12-05T22:27:42.9818681Z 2025-12-05 22:27:42,976 [INFO] adding 'executorch/backends/arm/operators/op_clamp.py' 2025-12-05T22:27:42.9818919Z 2025-12-05 22:27:42,976 [INFO] adding 'executorch/backends/arm/operators/op_cond_if.py' 2025-12-05T22:27:42.9819205Z 2025-12-05 22:27:42,977 [INFO] adding 'executorch/backends/arm/operators/op_constant_pad_nd.py' 2025-12-05T22:27:42.9819474Z 2025-12-05 22:27:42,977 [INFO] adding 'executorch/backends/arm/operators/op_cos.py' 2025-12-05T22:27:42.9819729Z 2025-12-05 22:27:42,977 [INFO] adding 'executorch/backends/arm/operators/op_eq.py' 2025-12-05T22:27:42.9820014Z 2025-12-05 22:27:42,977 [INFO] adding 'executorch/backends/arm/operators/op_erf.py' 2025-12-05T22:27:42.9820275Z 2025-12-05 22:27:42,978 [INFO] adding 'executorch/backends/arm/operators/op_exp.py' 2025-12-05T22:27:42.9820502Z 2025-12-05 22:27:42,978 [INFO] adding 'executorch/backends/arm/operators/op_floor.py' 2025-12-05T22:27:42.9820711Z 2025-12-05 22:27:42,978 [INFO] adding 'executorch/backends/arm/operators/op_ge.py' 2025-12-05T22:27:42.9820987Z 2025-12-05 22:27:42,978 [INFO] adding 'executorch/backends/arm/operators/op_gt.py' 2025-12-05T22:27:43.0051105Z 2025-12-05 22:27:42,979 [INFO] adding 'executorch/backends/arm/operators/op_index_select.py' 2025-12-05T22:27:43.0051395Z 2025-12-05 22:27:42,979 [INFO] adding 'executorch/backends/arm/operators/op_index_tensor.py' 2025-12-05T22:27:43.0051709Z 2025-12-05 22:27:42,979 [INFO] adding 'executorch/backends/arm/operators/op_le.py' 2025-12-05T22:27:43.0052035Z 2025-12-05 22:27:42,979 [INFO] adding 'executorch/backends/arm/operators/op_log.py' 2025-12-05T22:27:43.0052316Z 2025-12-05 22:27:42,980 [INFO] adding 'executorch/backends/arm/operators/op_logical_not.py' 2025-12-05T22:27:43.0052544Z 2025-12-05 22:27:42,980 [INFO] adding 'executorch/backends/arm/operators/op_lt.py' 2025-12-05T22:27:43.0052803Z 2025-12-05 22:27:42,980 [INFO] adding 'executorch/backends/arm/operators/op_max_pool2d.py' 2025-12-05T22:27:43.0053039Z 2025-12-05 22:27:42,980 [INFO] adding 'executorch/backends/arm/operators/op_maximum.py' 2025-12-05T22:27:43.0053276Z 2025-12-05 22:27:42,981 [INFO] adding 'executorch/backends/arm/operators/op_minimum.py' 2025-12-05T22:27:43.0053519Z 2025-12-05 22:27:42,981 [INFO] adding 'executorch/backends/arm/operators/op_mul.py' 2025-12-05T22:27:43.0053736Z 2025-12-05 22:27:42,981 [INFO] adding 'executorch/backends/arm/operators/op_neg.py' 2025-12-05T22:27:43.0053971Z 2025-12-05 22:27:42,982 [INFO] adding 'executorch/backends/arm/operators/op_permute.py' 2025-12-05T22:27:43.0054208Z 2025-12-05 22:27:42,982 [INFO] adding 'executorch/backends/arm/operators/op_pow.py' 2025-12-05T22:27:43.0054460Z 2025-12-05 22:27:42,982 [INFO] adding 'executorch/backends/arm/operators/op_reciprocal.py' 2025-12-05T22:27:43.0054693Z 2025-12-05 22:27:42,982 [INFO] adding 'executorch/backends/arm/operators/op_repeat.py' 2025-12-05T22:27:43.0054972Z 2025-12-05 22:27:42,983 [INFO] adding 'executorch/backends/arm/operators/op_rshift_tensor.py' 2025-12-05T22:27:43.0055234Z 2025-12-05 22:27:42,983 [INFO] adding 'executorch/backends/arm/operators/op_rsqrt.py' 2025-12-05T22:27:43.0055565Z 2025-12-05 22:27:42,983 [INFO] adding 'executorch/backends/arm/operators/op_sigmoid.py' 2025-12-05T22:27:43.0055810Z 2025-12-05 22:27:42,983 [INFO] adding 'executorch/backends/arm/operators/op_sin.py' 2025-12-05T22:27:43.0056037Z 2025-12-05 22:27:42,984 [INFO] adding 'executorch/backends/arm/operators/op_slice.py' 2025-12-05T22:27:43.0056258Z 2025-12-05 22:27:42,984 [INFO] adding 'executorch/backends/arm/operators/op_sub.py' 2025-12-05T22:27:43.0056684Z 2025-12-05 22:27:42,984 [INFO] adding 'executorch/backends/arm/operators/op_sum.py' 2025-12-05T22:27:43.0056908Z 2025-12-05 22:27:42,984 [INFO] adding 'executorch/backends/arm/operators/op_tanh.py' 2025-12-05T22:27:43.0057194Z 2025-12-05 22:27:42,985 [INFO] adding 'executorch/backends/arm/operators/op_to_dim_order_copy.py' 2025-12-05T22:27:43.0057448Z 2025-12-05 22:27:42,985 [INFO] adding 'executorch/backends/arm/operators/op_tosa_conv2d.py' 2025-12-05T22:27:43.0057768Z 2025-12-05 22:27:42,985 [INFO] adding 'executorch/backends/arm/operators/op_tosa_depthwise_conv2d.py' 2025-12-05T22:27:43.0058076Z 2025-12-05 22:27:42,985 [INFO] adding 'executorch/backends/arm/operators/op_tosa_matmul.py' 2025-12-05T22:27:43.0058409Z 2025-12-05 22:27:42,986 [INFO] adding 'executorch/backends/arm/operators/op_tosa_rescale.py' 2025-12-05T22:27:43.0058731Z 2025-12-05 22:27:42,986 [INFO] adding 'executorch/backends/arm/operators/op_tosa_resize.py' 2025-12-05T22:27:43.0059129Z 2025-12-05 22:27:42,986 [INFO] adding 'executorch/backends/arm/operators/op_tosa_table.py' 2025-12-05T22:27:43.0059526Z 2025-12-05 22:27:42,987 [INFO] adding 'executorch/backends/arm/operators/op_tosa_transpose.py' 2025-12-05T22:27:43.0059796Z 2025-12-05 22:27:42,987 [INFO] adding 'executorch/backends/arm/operators/op_view.py' 2025-12-05T22:27:43.0060020Z 2025-12-05 22:27:42,987 [INFO] adding 'executorch/backends/arm/operators/op_where.py' 2025-12-05T22:27:43.0060257Z 2025-12-05 22:27:42,987 [INFO] adding 'executorch/backends/arm/operators/op_while.py' 2025-12-05T22:27:43.0060570Z 2025-12-05 22:27:42,988 [INFO] adding 'executorch/backends/arm/operators/operator_validation_utils.py' 2025-12-05T22:27:43.0060922Z 2025-12-05 22:27:42,988 [INFO] adding 'executorch/backends/arm/operators/ops_binary.py' 2025-12-05T22:27:43.0061167Z 2025-12-05 22:27:42,988 [INFO] adding 'executorch/backends/arm/operators/ops_identity.py' 2025-12-05T22:27:43.0061405Z 2025-12-05 22:27:42,989 [INFO] adding 'executorch/backends/arm/quantizer/__init__.py' 2025-12-05T22:27:43.0061656Z 2025-12-05 22:27:42,989 [INFO] adding 'executorch/backends/arm/quantizer/arm_quantizer.py' 2025-12-05T22:27:43.0062064Z 2025-12-05 22:27:42,990 [INFO] adding 'executorch/backends/arm/quantizer/arm_quantizer_utils.py' 2025-12-05T22:27:43.0062375Z 2025-12-05 22:27:42,990 [INFO] adding 'executorch/backends/arm/quantizer/quantization_annotator.py' 2025-12-05T22:27:43.0062659Z 2025-12-05 22:27:42,991 [INFO] adding 'executorch/backends/arm/quantizer/quantization_config.py' 2025-12-05T22:27:43.0062916Z 2025-12-05 22:27:42,991 [INFO] adding 'executorch/backends/arm/scripts/parse_test_names.py' 2025-12-05T22:27:43.0063140Z 2025-12-05 22:27:42,992 [INFO] adding 'executorch/backends/arm/test/common.py' 2025-12-05T22:27:43.0063346Z 2025-12-05 22:27:42,992 [INFO] adding 'executorch/backends/arm/test/conftest.py' 2025-12-05T22:27:43.0063566Z 2025-12-05 22:27:42,993 [INFO] adding 'executorch/backends/arm/test/runner_utils.py' 2025-12-05T22:27:43.0063861Z 2025-12-05 22:27:42,993 [INFO] adding 'executorch/backends/arm/test/test_memory_allocator_log.py' 2025-12-05T22:27:43.0064090Z 2025-12-05 22:27:42,994 [INFO] adding 'executorch/backends/arm/test/test_model.py' 2025-12-05T22:27:43.0064445Z 2025-12-05 22:27:42,994 [INFO] adding 'executorch/backends/arm/test/misc/test_bn_relu_folding_qat.py' 2025-12-05T22:27:43.0064776Z 2025-12-05 22:27:42,994 [INFO] adding 'executorch/backends/arm/test/misc/test_call_operator_submodule.py' 2025-12-05T22:27:43.0065045Z 2025-12-05 22:27:42,995 [INFO] adding 'executorch/backends/arm/test/misc/test_compile_spec.py' 2025-12-05T22:27:43.0065359Z 2025-12-05 22:27:42,995 [INFO] adding 'executorch/backends/arm/test/misc/test_conv_relu_residual_add.py' 2025-12-05T22:27:43.0065654Z 2025-12-05 22:27:42,995 [INFO] adding 'executorch/backends/arm/test/misc/test_custom_partition.py' 2025-12-05T22:27:43.0065913Z 2025-12-05 22:27:42,996 [INFO] adding 'executorch/backends/arm/test/misc/test_debug_feats.py' 2025-12-05T22:27:43.0066310Z 2025-12-05 22:27:42,996 [INFO] adding 'executorch/backends/arm/test/misc/test_debug_hook.py' 2025-12-05T22:27:43.0066579Z 2025-12-05 22:27:42,996 [INFO] adding 'executorch/backends/arm/test/misc/test_dim_order.py' 2025-12-05T22:27:43.0066984Z 2025-12-05 22:27:42,996 [INFO] adding 'executorch/backends/arm/test/misc/test_dw_convs_with_shared_weights.py' 2025-12-05T22:27:43.0067301Z 2025-12-05 22:27:42,997 [INFO] adding 'executorch/backends/arm/test/misc/test_extract_io_params_tosa.py' 2025-12-05T22:27:43.0067538Z 2025-12-05 22:27:42,997 [INFO] adding 'executorch/backends/arm/test/misc/test_int64.py' 2025-12-05T22:27:43.0067904Z 2025-12-05 22:27:42,997 [INFO] adding 'executorch/backends/arm/test/misc/test_lifted_tensor.py' 2025-12-05T22:27:43.0068185Z 2025-12-05 22:27:42,998 [INFO] adding 'executorch/backends/arm/test/misc/test_model_evaluator.py' 2025-12-05T22:27:43.0068542Z 2025-12-05 22:27:42,998 [INFO] adding 'executorch/backends/arm/test/misc/test_multiple_delegates.py' 2025-12-05T22:27:43.0068847Z 2025-12-05 22:27:42,998 [INFO] adding 'executorch/backends/arm/test/misc/test_multiple_outputs.py' 2025-12-05T22:27:43.0069163Z 2025-12-05 22:27:42,998 [INFO] adding 'executorch/backends/arm/test/misc/test_non_persistent_buffers.py' 2025-12-05T22:27:43.0069438Z 2025-12-05 22:27:42,999 [INFO] adding 'executorch/backends/arm/test/misc/test_outputs_order.py' 2025-12-05T22:27:43.0069866Z 2025-12-05 22:27:42,999 [INFO] adding 'executorch/backends/arm/test/misc/test_partition_decomposed_quantized_ops.py' 2025-12-05T22:27:43.0070194Z 2025-12-05 22:27:42,999 [INFO] adding 'executorch/backends/arm/test/misc/test_pass_required_order.py' 2025-12-05T22:27:43.0070600Z 2025-12-05 22:27:42,999 [INFO] adding 'executorch/backends/arm/test/misc/test_qat_training_loop.py' 2025-12-05T22:27:43.0070901Z 2025-12-05 22:27:43,000 [INFO] adding 'executorch/backends/arm/test/misc/test_quant_custom_meta.py' 2025-12-05T22:27:43.0071197Z 2025-12-05 22:27:43,000 [INFO] adding 'executorch/backends/arm/test/misc/test_save_exported_model.py' 2025-12-05T22:27:43.0071570Z 2025-12-05 22:27:43,000 [INFO] adding 'executorch/backends/arm/test/misc/test_tosa_dialect_conv2d.py' 2025-12-05T22:27:43.0071898Z 2025-12-05 22:27:43,000 [INFO] adding 'executorch/backends/arm/test/misc/test_tosa_dialect_dw_conv2d.py' 2025-12-05T22:27:43.0072151Z 2025-12-05 22:27:43,001 [INFO] adding 'executorch/backends/arm/test/misc/test_tosa_spec.py' 2025-12-05T22:27:43.0072442Z 2025-12-05 22:27:43,001 [INFO] adding 'executorch/backends/arm/test/models/test_conformer.py' 2025-12-05T22:27:43.0072773Z 2025-12-05 22:27:43,001 [INFO] adding 'executorch/backends/arm/test/models/test_deit_tiny_arm.py' 2025-12-05T22:27:43.0073028Z 2025-12-05 22:27:43,002 [INFO] adding 'executorch/backends/arm/test/models/test_dl3_arm.py' 2025-12-05T22:27:43.0073377Z 2025-12-05 22:27:43,002 [INFO] adding 'executorch/backends/arm/test/models/test_inception_v3_arm.py' 2025-12-05T22:27:43.0073632Z 2025-12-05 22:27:43,002 [INFO] adding 'executorch/backends/arm/test/models/test_llama.py' 2025-12-05T22:27:43.0073892Z 2025-12-05 22:27:43,002 [INFO] adding 'executorch/backends/arm/test/models/test_lstm_arm.py' 2025-12-05T22:27:43.0074247Z 2025-12-05 22:27:43,003 [INFO] adding 'executorch/backends/arm/test/models/test_mobilenet_v2_arm.py' 2025-12-05T22:27:43.0074553Z 2025-12-05 22:27:43,003 [INFO] adding 'executorch/backends/arm/test/models/test_mobilenet_v3_arm.py' 2025-12-05T22:27:43.0074834Z 2025-12-05 22:27:43,003 [INFO] adding 'executorch/backends/arm/test/models/test_nn_functional.py' 2025-12-05T22:27:43.0075098Z 2025-12-05 22:27:43,003 [INFO] adding 'executorch/backends/arm/test/models/test_nn_modules.py' 2025-12-05T22:27:43.0075333Z 2025-12-05 22:27:43,004 [INFO] adding 'executorch/backends/arm/test/models/test_nss.py' 2025-12-05T22:27:43.0075651Z 2025-12-05 22:27:43,004 [INFO] adding 'executorch/backends/arm/test/models/test_resnet18.py' 2025-12-05T22:27:43.0305731Z 2025-12-05 22:27:43,004 [INFO] adding 'executorch/backends/arm/test/models/test_torch_functions.py' 2025-12-05T22:27:43.0306256Z 2025-12-05 22:27:43,004 [INFO] adding 'executorch/backends/arm/test/models/test_w2l_arm.py' 2025-12-05T22:27:43.0306778Z 2025-12-05 22:27:43,005 [INFO] adding 'executorch/backends/arm/test/models/stable_diffusion/stable_diffusion_module_test_configs.py' 2025-12-05T22:27:43.0307227Z 2025-12-05 22:27:43,005 [INFO] adding 'executorch/backends/arm/test/models/stable_diffusion/test_CLIPTextModelWithProjection.py' 2025-12-05T22:27:43.0307650Z 2025-12-05 22:27:43,005 [INFO] adding 'executorch/backends/arm/test/models/stable_diffusion/test_SD3Transformer2DModel.py' 2025-12-05T22:27:43.0308035Z 2025-12-05 22:27:43,006 [INFO] adding 'executorch/backends/arm/test/models/stable_diffusion/test_T5EncoderModel.py' 2025-12-05T22:27:43.0308510Z 2025-12-05 22:27:43,006 [INFO] adding 'executorch/backends/arm/test/models/stable_diffusion/test_vae_AutoencoderKL.py' 2025-12-05T22:27:43.0308787Z 2025-12-05 22:27:43,006 [INFO] adding 'executorch/backends/arm/test/ops/test_abs.py' 2025-12-05T22:27:43.0309022Z 2025-12-05 22:27:43,007 [INFO] adding 'executorch/backends/arm/test/ops/test_acos.py' 2025-12-05T22:27:43.0309253Z 2025-12-05 22:27:43,007 [INFO] adding 'executorch/backends/arm/test/ops/test_acosh.py' 2025-12-05T22:27:43.0309553Z 2025-12-05 22:27:43,007 [INFO] adding 'executorch/backends/arm/test/ops/test_adaptive_avg_pool2d.py' 2025-12-05T22:27:43.0309789Z 2025-12-05 22:27:43,007 [INFO] adding 'executorch/backends/arm/test/ops/test_add.py' 2025-12-05T22:27:43.0310017Z 2025-12-05 22:27:43,008 [INFO] adding 'executorch/backends/arm/test/ops/test_addmm.py' 2025-12-05T22:27:43.0310377Z 2025-12-05 22:27:43,008 [INFO] adding 'executorch/backends/arm/test/ops/test_alias_copy.py' 2025-12-05T22:27:43.0310615Z 2025-12-05 22:27:43,008 [INFO] adding 'executorch/backends/arm/test/ops/test_amax.py' 2025-12-05T22:27:43.0310839Z 2025-12-05 22:27:43,009 [INFO] adding 'executorch/backends/arm/test/ops/test_amin.py' 2025-12-05T22:27:43.0311143Z 2025-12-05 22:27:43,009 [INFO] adding 'executorch/backends/arm/test/ops/test_any.py' 2025-12-05T22:27:43.0311392Z 2025-12-05 22:27:43,009 [INFO] adding 'executorch/backends/arm/test/ops/test_arange.py' 2025-12-05T22:27:43.0311615Z 2025-12-05 22:27:43,009 [INFO] adding 'executorch/backends/arm/test/ops/test_asin.py' 2025-12-05T22:27:43.0311926Z 2025-12-05 22:27:43,010 [INFO] adding 'executorch/backends/arm/test/ops/test_asinh.py' 2025-12-05T22:27:43.0312180Z 2025-12-05 22:27:43,010 [INFO] adding 'executorch/backends/arm/test/ops/test_at.py' 2025-12-05T22:27:43.0312405Z 2025-12-05 22:27:43,010 [INFO] adding 'executorch/backends/arm/test/ops/test_atan.py' 2025-12-05T22:27:43.0312654Z 2025-12-05 22:27:43,010 [INFO] adding 'executorch/backends/arm/test/ops/test_atanh.py' 2025-12-05T22:27:43.0312906Z 2025-12-05 22:27:43,011 [INFO] adding 'executorch/backends/arm/test/ops/test_avg_pool2d.py' 2025-12-05T22:27:43.0313155Z 2025-12-05 22:27:43,011 [INFO] adding 'executorch/backends/arm/test/ops/test_batch_norm.py' 2025-12-05T22:27:43.0313411Z 2025-12-05 22:27:43,012 [INFO] adding 'executorch/backends/arm/test/ops/test_bitwise.py' 2025-12-05T22:27:43.0313666Z 2025-12-05 22:27:43,012 [INFO] adding 'executorch/backends/arm/test/ops/test_bitwise_not.py' 2025-12-05T22:27:43.0313885Z 2025-12-05 22:27:43,012 [INFO] adding 'executorch/backends/arm/test/ops/test_bmm.py' 2025-12-05T22:27:43.0314106Z 2025-12-05 22:27:43,012 [INFO] adding 'executorch/backends/arm/test/ops/test_cat.py' 2025-12-05T22:27:43.0314346Z 2025-12-05 22:27:43,013 [INFO] adding 'executorch/backends/arm/test/ops/test_ceil.py' 2025-12-05T22:27:43.0314578Z 2025-12-05 22:27:43,013 [INFO] adding 'executorch/backends/arm/test/ops/test_clamp.py' 2025-12-05T22:27:43.0314834Z 2025-12-05 22:27:43,013 [INFO] adding 'executorch/backends/arm/test/ops/test_clone.py' 2025-12-05T22:27:43.0315066Z 2025-12-05 22:27:43,014 [INFO] adding 'executorch/backends/arm/test/ops/test_cond.py' 2025-12-05T22:27:43.0315381Z 2025-12-05 22:27:43,014 [INFO] adding 'executorch/backends/arm/test/ops/test_constant_pad_nd.py' 2025-12-05T22:27:43.0315686Z 2025-12-05 22:27:43,014 [INFO] adding 'executorch/backends/arm/test/ops/test_conv1d.py' 2025-12-05T22:27:43.0315933Z 2025-12-05 22:27:43,015 [INFO] adding 'executorch/backends/arm/test/ops/test_conv2d.py' 2025-12-05T22:27:43.0316163Z 2025-12-05 22:27:43,015 [INFO] adding 'executorch/backends/arm/test/ops/test_conv3d.py' 2025-12-05T22:27:43.0316417Z 2025-12-05 22:27:43,016 [INFO] adding 'executorch/backends/arm/test/ops/test_conv_combos.py' 2025-12-05T22:27:43.0316729Z 2025-12-05 22:27:43,016 [INFO] adding 'executorch/backends/arm/test/ops/test_conv_constant_pad_nd.py' 2025-12-05T22:27:43.0316953Z 2025-12-05 22:27:43,016 [INFO] adding 'executorch/backends/arm/test/ops/test_copy.py' 2025-12-05T22:27:43.0317171Z 2025-12-05 22:27:43,016 [INFO] adding 'executorch/backends/arm/test/ops/test_cos.py' 2025-12-05T22:27:43.0317402Z 2025-12-05 22:27:43,017 [INFO] adding 'executorch/backends/arm/test/ops/test_cosh.py' 2025-12-05T22:27:43.0317636Z 2025-12-05 22:27:43,017 [INFO] adding 'executorch/backends/arm/test/ops/test_cumsum.py' 2025-12-05T22:27:43.0317943Z 2025-12-05 22:27:43,017 [INFO] adding 'executorch/backends/arm/test/ops/test_depthwise_conv.py' 2025-12-05T22:27:43.0318342Z 2025-12-05 22:27:43,017 [INFO] adding 'executorch/backends/arm/test/ops/test_div.py' 2025-12-05T22:27:43.0318659Z 2025-12-05 22:27:43,018 [INFO] adding 'executorch/backends/arm/test/ops/test_div_tensor_mode.py' 2025-12-05T22:27:43.0318881Z 2025-12-05 22:27:43,018 [INFO] adding 'executorch/backends/arm/test/ops/test_elu.py' 2025-12-05T22:27:43.0319220Z 2025-12-05 22:27:43,018 [INFO] adding 'executorch/backends/arm/test/ops/test_embedding.py' 2025-12-05T22:27:43.0319447Z 2025-12-05 22:27:43,018 [INFO] adding 'executorch/backends/arm/test/ops/test_eq.py' 2025-12-05T22:27:43.0319664Z 2025-12-05 22:27:43,019 [INFO] adding 'executorch/backends/arm/test/ops/test_erf.py' 2025-12-05T22:27:43.0319879Z 2025-12-05 22:27:43,019 [INFO] adding 'executorch/backends/arm/test/ops/test_exp.py' 2025-12-05T22:27:43.0320126Z 2025-12-05 22:27:43,019 [INFO] adding 'executorch/backends/arm/test/ops/test_expand.py' 2025-12-05T22:27:43.0320356Z 2025-12-05 22:27:43,019 [INFO] adding 'executorch/backends/arm/test/ops/test_expm1.py' 2025-12-05T22:27:43.0320573Z 2025-12-05 22:27:43,020 [INFO] adding 'executorch/backends/arm/test/ops/test_eye.py' 2025-12-05T22:27:43.0320896Z 2025-12-05 22:27:43,020 [INFO] adding 'executorch/backends/arm/test/ops/test_fill_scalar.py' 2025-12-05T22:27:43.0321180Z 2025-12-05 22:27:43,020 [INFO] adding 'executorch/backends/arm/test/ops/test_floor.py' 2025-12-05T22:27:43.0321431Z 2025-12-05 22:27:43,020 [INFO] adding 'executorch/backends/arm/test/ops/test_floor_div.py' 2025-12-05T22:27:43.0321664Z 2025-12-05 22:27:43,021 [INFO] adding 'executorch/backends/arm/test/ops/test_full.py' 2025-12-05T22:27:43.0321880Z 2025-12-05 22:27:43,021 [INFO] adding 'executorch/backends/arm/test/ops/test_ge.py' 2025-12-05T22:27:43.0322104Z 2025-12-05 22:27:43,021 [INFO] adding 'executorch/backends/arm/test/ops/test_gelu.py' 2025-12-05T22:27:43.0322333Z 2025-12-05 22:27:43,022 [INFO] adding 'executorch/backends/arm/test/ops/test_glu.py' 2025-12-05T22:27:43.0322583Z 2025-12-05 22:27:43,022 [INFO] adding 'executorch/backends/arm/test/ops/test_group_norm.py' 2025-12-05T22:27:43.0322796Z 2025-12-05 22:27:43,022 [INFO] adding 'executorch/backends/arm/test/ops/test_gt.py' 2025-12-05T22:27:43.0323051Z 2025-12-05 22:27:43,022 [INFO] adding 'executorch/backends/arm/test/ops/test_hardsigmoid.py' 2025-12-05T22:27:43.0323307Z 2025-12-05 22:27:43,023 [INFO] adding 'executorch/backends/arm/test/ops/test_hardswish.py' 2025-12-05T22:27:43.0323551Z 2025-12-05 22:27:43,023 [INFO] adding 'executorch/backends/arm/test/ops/test_hardtanh.py' 2025-12-05T22:27:43.0323857Z 2025-12-05 22:27:43,023 [INFO] adding 'executorch/backends/arm/test/ops/test_index_select.py' 2025-12-05T22:27:43.0324140Z 2025-12-05 22:27:43,024 [INFO] adding 'executorch/backends/arm/test/ops/test_index_tensor.py' 2025-12-05T22:27:43.0324559Z 2025-12-05 22:27:43,024 [INFO] adding 'executorch/backends/arm/test/ops/test_layer_norm.py' 2025-12-05T22:27:43.0324779Z 2025-12-05 22:27:43,024 [INFO] adding 'executorch/backends/arm/test/ops/test_le.py' 2025-12-05T22:27:43.0325041Z 2025-12-05 22:27:43,024 [INFO] adding 'executorch/backends/arm/test/ops/test_leaky_relu.py' 2025-12-05T22:27:43.0325331Z 2025-12-05 22:27:43,025 [INFO] adding 'executorch/backends/arm/test/ops/test_linalg_vector_norm.py' 2025-12-05T22:27:43.0325562Z 2025-12-05 22:27:43,025 [INFO] adding 'executorch/backends/arm/test/ops/test_linear.py' 2025-12-05T22:27:43.0325797Z 2025-12-05 22:27:43,025 [INFO] adding 'executorch/backends/arm/test/ops/test_log.py' 2025-12-05T22:27:43.0326033Z 2025-12-05 22:27:43,026 [INFO] adding 'executorch/backends/arm/test/ops/test_logical.py' 2025-12-05T22:27:43.0326261Z 2025-12-05 22:27:43,026 [INFO] adding 'executorch/backends/arm/test/ops/test_logit.py' 2025-12-05T22:27:43.0326528Z 2025-12-05 22:27:43,026 [INFO] adding 'executorch/backends/arm/test/ops/test_logsoftmax.py' 2025-12-05T22:27:43.0326815Z 2025-12-05 22:27:43,026 [INFO] adding 'executorch/backends/arm/test/ops/test_lshift.py' 2025-12-05T22:27:43.0327082Z 2025-12-05 22:27:43,027 [INFO] adding 'executorch/backends/arm/test/ops/test_lt.py' 2025-12-05T22:27:43.0327350Z 2025-12-05 22:27:43,027 [INFO] adding 'executorch/backends/arm/test/ops/test_masked_fill.py' 2025-12-05T22:27:43.0327580Z 2025-12-05 22:27:43,027 [INFO] adding 'executorch/backends/arm/test/ops/test_matmul.py' 2025-12-05T22:27:43.0327824Z 2025-12-05 22:27:43,028 [INFO] adding 'executorch/backends/arm/test/ops/test_max_pool.py' 2025-12-05T22:27:43.0328154Z 2025-12-05 22:27:43,028 [INFO] adding 'executorch/backends/arm/test/ops/test_maximum.py' 2025-12-05T22:27:43.0328395Z 2025-12-05 22:27:43,028 [INFO] adding 'executorch/backends/arm/test/ops/test_mean_dim.py' 2025-12-05T22:27:43.0328631Z 2025-12-05 22:27:43,028 [INFO] adding 'executorch/backends/arm/test/ops/test_minimum.py' 2025-12-05T22:27:43.0328853Z 2025-12-05 22:27:43,029 [INFO] adding 'executorch/backends/arm/test/ops/test_mm.py' 2025-12-05T22:27:43.0329084Z 2025-12-05 22:27:43,029 [INFO] adding 'executorch/backends/arm/test/ops/test_mul.py' 2025-12-05T22:27:43.0329405Z 2025-12-05 22:27:43,029 [INFO] adding 'executorch/backends/arm/test/ops/test_multihead_attention.py' 2025-12-05T22:27:43.0536424Z 2025-12-05 22:27:43,030 [INFO] adding 'executorch/backends/arm/test/ops/test_ne.py' 2025-12-05T22:27:43.0536752Z 2025-12-05 22:27:43,030 [INFO] adding 'executorch/backends/arm/test/ops/test_neg.py' 2025-12-05T22:27:43.0537111Z 2025-12-05 22:27:43,030 [INFO] adding 'executorch/backends/arm/test/ops/test_ones.py' 2025-12-05T22:27:43.0537464Z 2025-12-05 22:27:43,030 [INFO] adding 'executorch/backends/arm/test/ops/test_permute.py' 2025-12-05T22:27:43.0537879Z 2025-12-05 22:27:43,031 [INFO] adding 'executorch/backends/arm/test/ops/test_pixel_shuffling.py' 2025-12-05T22:27:43.0538220Z 2025-12-05 22:27:43,031 [INFO] adding 'executorch/backends/arm/test/ops/test_pow.py' 2025-12-05T22:27:43.0538622Z 2025-12-05 22:27:43,031 [INFO] adding 'executorch/backends/arm/test/ops/test_reciprocal.py' 2025-12-05T22:27:43.0538989Z 2025-12-05 22:27:43,032 [INFO] adding 'executorch/backends/arm/test/ops/test_relu.py' 2025-12-05T22:27:43.0539364Z 2025-12-05 22:27:43,032 [INFO] adding 'executorch/backends/arm/test/ops/test_remainder.py' 2025-12-05T22:27:43.0539736Z 2025-12-05 22:27:43,032 [INFO] adding 'executorch/backends/arm/test/ops/test_repeat.py' 2025-12-05T22:27:43.0540115Z 2025-12-05 22:27:43,033 [INFO] adding 'executorch/backends/arm/test/ops/test_round.py' 2025-12-05T22:27:43.0540500Z 2025-12-05 22:27:43,033 [INFO] adding 'executorch/backends/arm/test/ops/test_rshift.py' 2025-12-05T22:27:43.0540873Z 2025-12-05 22:27:43,033 [INFO] adding 'executorch/backends/arm/test/ops/test_rsqrt.py' 2025-12-05T22:27:43.0541258Z 2025-12-05 22:27:43,033 [INFO] adding 'executorch/backends/arm/test/ops/test_rsub.py' 2025-12-05T22:27:43.0541956Z 2025-12-05 22:27:43,034 [INFO] adding 'executorch/backends/arm/test/ops/test_scalar_tensor.py' 2025-12-05T22:27:43.0542373Z 2025-12-05 22:27:43,034 [INFO] adding 'executorch/backends/arm/test/ops/test_scalars.py' 2025-12-05T22:27:43.0542754Z 2025-12-05 22:27:43,034 [INFO] adding 'executorch/backends/arm/test/ops/test_sdpa.py' 2025-12-05T22:27:43.0543153Z 2025-12-05 22:27:43,035 [INFO] adding 'executorch/backends/arm/test/ops/test_select.py' 2025-12-05T22:27:43.0543595Z 2025-12-05 22:27:43,035 [INFO] adding 'executorch/backends/arm/test/ops/test_select_scatter.py' 2025-12-05T22:27:43.0558042Z 2025-12-05 22:27:43,035 [INFO] adding 'executorch/backends/arm/test/ops/test_sigmoid.py' 2025-12-05T22:27:43.0558429Z 2025-12-05 22:27:43,035 [INFO] adding 'executorch/backends/arm/test/ops/test_sigmoid_32bit.py' 2025-12-05T22:27:43.0558696Z 2025-12-05 22:27:43,036 [INFO] adding 'executorch/backends/arm/test/ops/test_sign.py' 2025-12-05T22:27:43.0558984Z 2025-12-05 22:27:43,036 [INFO] adding 'executorch/backends/arm/test/ops/test_silu.py' 2025-12-05T22:27:43.0559243Z 2025-12-05 22:27:43,036 [INFO] adding 'executorch/backends/arm/test/ops/test_sin.py' 2025-12-05T22:27:43.0559502Z 2025-12-05 22:27:43,036 [INFO] adding 'executorch/backends/arm/test/ops/test_sinh.py' 2025-12-05T22:27:43.0559782Z 2025-12-05 22:27:43,037 [INFO] adding 'executorch/backends/arm/test/ops/test_slice.py' 2025-12-05T22:27:43.0560058Z 2025-12-05 22:27:43,037 [INFO] adding 'executorch/backends/arm/test/ops/test_softmax.py' 2025-12-05T22:27:43.0560322Z 2025-12-05 22:27:43,037 [INFO] adding 'executorch/backends/arm/test/ops/test_split.py' 2025-12-05T22:27:43.0560761Z 2025-12-05 22:27:43,038 [INFO] adding 'executorch/backends/arm/test/ops/test_sqrt.py' 2025-12-05T22:27:43.0561050Z 2025-12-05 22:27:43,038 [INFO] adding 'executorch/backends/arm/test/ops/test_squeeze.py' 2025-12-05T22:27:43.0561313Z 2025-12-05 22:27:43,038 [INFO] adding 'executorch/backends/arm/test/ops/test_stack.py' 2025-12-05T22:27:43.0561571Z 2025-12-05 22:27:43,039 [INFO] adding 'executorch/backends/arm/test/ops/test_sub.py' 2025-12-05T22:27:43.0561838Z 2025-12-05 22:27:43,039 [INFO] adding 'executorch/backends/arm/test/ops/test_sum.py' 2025-12-05T22:27:43.0562109Z 2025-12-05 22:27:43,039 [INFO] adding 'executorch/backends/arm/test/ops/test_t_copy.py' 2025-12-05T22:27:43.0562366Z 2025-12-05 22:27:43,039 [INFO] adding 'executorch/backends/arm/test/ops/test_tanh.py' 2025-12-05T22:27:43.0562654Z 2025-12-05 22:27:43,040 [INFO] adding 'executorch/backends/arm/test/ops/test_to_copy.py' 2025-12-05T22:27:43.0562973Z 2025-12-05 22:27:43,040 [INFO] adding 'executorch/backends/arm/test/ops/test_transpose_copy.py' 2025-12-05T22:27:43.0563282Z 2025-12-05 22:27:43,040 [INFO] adding 'executorch/backends/arm/test/ops/test_unary_combos.py' 2025-12-05T22:27:43.0563567Z 2025-12-05 22:27:43,040 [INFO] adding 'executorch/backends/arm/test/ops/test_unbind.py' 2025-12-05T22:27:43.0563927Z 2025-12-05 22:27:43,041 [INFO] adding 'executorch/backends/arm/test/ops/test_unflatten.py' 2025-12-05T22:27:43.0564181Z 2025-12-05 22:27:43,041 [INFO] adding 'executorch/backends/arm/test/ops/test_unsqueeze.py' 2025-12-05T22:27:43.0564496Z 2025-12-05 22:27:43,041 [INFO] adding 'executorch/backends/arm/test/ops/test_upsample_bilinear2d.py' 2025-12-05T22:27:43.0564792Z 2025-12-05 22:27:43,042 [INFO] adding 'executorch/backends/arm/test/ops/test_upsample_nearest2d.py' 2025-12-05T22:27:43.0565030Z 2025-12-05 22:27:43,042 [INFO] adding 'executorch/backends/arm/test/ops/test_var.py' 2025-12-05T22:27:43.0565270Z 2025-12-05 22:27:43,043 [INFO] adding 'executorch/backends/arm/test/ops/test_view.py' 2025-12-05T22:27:43.0565504Z 2025-12-05 22:27:43,043 [INFO] adding 'executorch/backends/arm/test/ops/test_where.py' 2025-12-05T22:27:43.0565827Z 2025-12-05 22:27:43,043 [INFO] adding 'executorch/backends/arm/test/ops/test_while.py' 2025-12-05T22:27:43.0566067Z 2025-12-05 22:27:43,043 [INFO] adding 'executorch/backends/arm/test/ops/test_zeros.py' 2025-12-05T22:27:43.0566467Z 2025-12-05 22:27:43,044 [INFO] adding 'executorch/backends/arm/test/passes/test_broadcast_args_pass.py' 2025-12-05T22:27:43.0566761Z 2025-12-05 22:27:43,044 [INFO] adding 'executorch/backends/arm/test/passes/test_cast_int64_pass.py' 2025-12-05T22:27:43.0567138Z 2025-12-05 22:27:43,044 [INFO] adding 'executorch/backends/arm/test/passes/test_convert_expand_copy_to_repeat.py' 2025-12-05T22:27:43.0567525Z 2025-12-05 22:27:43,044 [INFO] adding 'executorch/backends/arm/test/passes/test_convert_int32_clamp_to_minmax_pass.py' 2025-12-05T22:27:43.0567898Z 2025-12-05 22:27:43,045 [INFO] adding 'executorch/backends/arm/test/passes/test_convert_int64_const_ops_to_int32.py' 2025-12-05T22:27:43.0568294Z 2025-12-05 22:27:43,045 [INFO] adding 'executorch/backends/arm/test/passes/test_convert_int64_output_ops_to_int32.py' 2025-12-05T22:27:43.0568694Z 2025-12-05 22:27:43,045 [INFO] adding 'executorch/backends/arm/test/passes/test_convert_permute_singleton_to_view_pass.py' 2025-12-05T22:27:43.0569022Z 2025-12-05 22:27:43,046 [INFO] adding 'executorch/backends/arm/test/passes/test_convert_split_to_slice.py' 2025-12-05T22:27:43.0569328Z 2025-12-05 22:27:43,046 [INFO] adding 'executorch/backends/arm/test/passes/test_convert_to_clamp.py' 2025-12-05T22:27:43.0569666Z 2025-12-05 22:27:43,046 [INFO] adding 'executorch/backends/arm/test/passes/test_decompose_avg_pool2d_pass.py' 2025-12-05T22:27:43.0570038Z 2025-12-05 22:27:43,046 [INFO] adding 'executorch/backends/arm/test/passes/test_decompose_cosine_similarity_pass.py' 2025-12-05T22:27:43.0570354Z 2025-12-05 22:27:43,047 [INFO] adding 'executorch/backends/arm/test/passes/test_decompose_div_pass.py' 2025-12-05T22:27:43.0570732Z 2025-12-05 22:27:43,047 [INFO] adding 'executorch/backends/arm/test/passes/test_decompose_int_pow_pass.py' 2025-12-05T22:27:43.0571067Z 2025-12-05 22:27:43,047 [INFO] adding 'executorch/backends/arm/test/passes/test_decompose_layernorm_pass.py' 2025-12-05T22:27:43.0571456Z 2025-12-05 22:27:43,047 [INFO] adding 'executorch/backends/arm/test/passes/test_decompose_linalg_vector_norm_pass.py' 2025-12-05T22:27:43.0571856Z 2025-12-05 22:27:43,048 [INFO] adding 'executorch/backends/arm/test/passes/test_decompose_meandim_pass.py' 2025-12-05T22:27:43.0572174Z 2025-12-05 22:27:43,048 [INFO] adding 'executorch/backends/arm/test/passes/test_decompose_quant_nodes.py' 2025-12-05T22:27:43.0572498Z 2025-12-05 22:27:43,048 [INFO] adding 'executorch/backends/arm/test/passes/test_decompose_softmax_pass.py' 2025-12-05T22:27:43.0572815Z 2025-12-05 22:27:43,048 [INFO] adding 'executorch/backends/arm/test/passes/test_decompose_var_pass.py' 2025-12-05T22:27:43.0573203Z 2025-12-05 22:27:43,049 [INFO] adding 'executorch/backends/arm/test/passes/test_decorate_fp32_to_int32_casting_pass.py' 2025-12-05T22:27:43.0573486Z 2025-12-05 22:27:43,049 [INFO] adding 'executorch/backends/arm/test/passes/test_fold_qdq_pass.py' 2025-12-05T22:27:43.0573809Z 2025-12-05 22:27:43,049 [INFO] adding 'executorch/backends/arm/test/passes/test_fuse_batchnorm_pass.py' 2025-12-05T22:27:43.0574133Z 2025-12-05 22:27:43,050 [INFO] adding 'executorch/backends/arm/test/passes/test_fuse_constant_ops_pass.py' 2025-12-05T22:27:43.0574468Z 2025-12-05 22:27:43,050 [INFO] adding 'executorch/backends/arm/test/passes/test_fuse_duplicate_users_pass.py' 2025-12-05T22:27:43.0574852Z 2025-12-05 22:27:43,050 [INFO] adding 'executorch/backends/arm/test/passes/test_fuse_equal_placeholders_ops_pass.py' 2025-12-05T22:27:43.0575140Z 2025-12-05 22:27:43,050 [INFO] adding 'executorch/backends/arm/test/passes/test_fuse_view_copy.py' 2025-12-05T22:27:43.0575586Z 2025-12-05 22:27:43,051 [INFO] adding 'executorch/backends/arm/test/passes/test_insert_int32_casts_after_int64_placeholders_pass.py' 2025-12-05T22:27:43.0575931Z 2025-12-05 22:27:43,051 [INFO] adding 'executorch/backends/arm/test/passes/test_insert_rescale_i32_pass.py' 2025-12-05T22:27:43.0576250Z 2025-12-05 22:27:43,051 [INFO] adding 'executorch/backends/arm/test/passes/test_insert_table_ops_pass.py' 2025-12-05T22:27:43.0576637Z 2025-12-05 22:27:43,051 [INFO] adding 'executorch/backends/arm/test/passes/test_int32_cast_embedding_pass.py' 2025-12-05T22:27:43.0576965Z 2025-12-05 22:27:43,052 [INFO] adding 'executorch/backends/arm/test/passes/test_ioquantization_pass.py' 2025-12-05T22:27:43.0577308Z 2025-12-05 22:27:43,052 [INFO] adding 'executorch/backends/arm/test/passes/test_promote_bool_operands_pass.py' 2025-12-05T22:27:43.0577608Z 2025-12-05 22:27:43,052 [INFO] adding 'executorch/backends/arm/test/passes/test_remove_clone_pass.py' 2025-12-05T22:27:43.0577896Z 2025-12-05 22:27:43,052 [INFO] adding 'executorch/backends/arm/test/passes/test_rescale_pass.py' 2025-12-05T22:27:43.0984018Z 2025-12-05 22:27:43,053 [INFO] adding 'executorch/backends/arm/test/passes/test_to_tosa_memory_format.py' 2025-12-05T22:27:43.0984885Z 2025-12-05 22:27:43,053 [INFO] adding 'executorch/backends/arm/test/passes/test_unsqueeze_before_repeat_pass.py' 2025-12-05T22:27:43.0985733Z 2025-12-05 22:27:43,053 [INFO] adding 'executorch/backends/arm/test/quantizer/test_generic_annotater.py' 2025-12-05T22:27:43.0986634Z 2025-12-05 22:27:43,054 [INFO] adding 'executorch/backends/arm/test/quantizer/test_set_module_name.py' 2025-12-05T22:27:43.0987486Z 2025-12-05 22:27:43,054 [INFO] adding 'executorch/backends/arm/test/tester/__init__.py' 2025-12-05T22:27:43.0988153Z 2025-12-05 22:27:43,054 [INFO] adding 'executorch/backends/arm/test/tester/analyze_output_utils.py' 2025-12-05T22:27:43.0989060Z 2025-12-05 22:27:43,055 [INFO] adding 'executorch/backends/arm/test/tester/arm_tester.py' 2025-12-05T22:27:43.0989686Z 2025-12-05 22:27:43,056 [INFO] adding 'executorch/backends/arm/test/tester/quantize.py' 2025-12-05T22:27:43.0990512Z 2025-12-05 22:27:43,056 [INFO] adding 'executorch/backends/arm/test/tester/serialize.py' 2025-12-05T22:27:43.0991136Z 2025-12-05 22:27:43,057 [INFO] adding 'executorch/backends/arm/test/tester/test_pipeline.py' 2025-12-05T22:27:43.0991970Z 2025-12-05 22:27:43,057 [INFO] adding 'executorch/backends/arm/test/tosautil/__init__.py' 2025-12-05T22:27:43.0992547Z 2025-12-05 22:27:43,057 [INFO] adding 'executorch/backends/arm/tosa/__init__.py' 2025-12-05T22:27:43.0993086Z 2025-12-05 22:27:43,058 [INFO] adding 'executorch/backends/arm/tosa/backend.py' 2025-12-05T22:27:43.0993630Z 2025-12-05 22:27:43,058 [INFO] adding 'executorch/backends/arm/tosa/compile_spec.py' 2025-12-05T22:27:43.0994281Z 2025-12-05 22:27:43,059 [INFO] adding 'executorch/backends/arm/tosa/mapping.py' 2025-12-05T22:27:43.0994939Z 2025-12-05 22:27:43,059 [INFO] adding 'executorch/backends/arm/tosa/partitioner.py' 2025-12-05T22:27:43.0995516Z 2025-12-05 22:27:43,060 [INFO] adding 'executorch/backends/arm/tosa/specification.py' 2025-12-05T22:27:43.0996077Z 2025-12-05 22:27:43,060 [INFO] adding 'executorch/backends/arm/tosa/utils.py' 2025-12-05T22:27:43.0996629Z 2025-12-05 22:27:43,060 [INFO] adding 'executorch/backends/arm/tosa/dialect/__init__.py' 2025-12-05T22:27:43.0997400Z 2025-12-05 22:27:43,061 [INFO] adding 'executorch/backends/arm/tosa/dialect/lib.py' 2025-12-05T22:27:43.0998070Z 2025-12-05 22:27:43,061 [INFO] adding 'executorch/backends/arm/tosa/dialect/ops_registration.py' 2025-12-05T22:27:43.0998721Z 2025-12-05 22:27:43,061 [INFO] adding 'executorch/backends/arm/tosa/dialect/ops/conv2d.py' 2025-12-05T22:27:43.0999427Z 2025-12-05 22:27:43,062 [INFO] adding 'executorch/backends/arm/tosa/dialect/ops/depthwise_conv2d.py' 2025-12-05T22:27:43.1000260Z 2025-12-05 22:27:43,062 [INFO] adding 'executorch/backends/arm/tosa/dialect/ops/matmul.py' 2025-12-05T22:27:43.1000882Z 2025-12-05 22:27:43,062 [INFO] adding 'executorch/backends/arm/tosa/dialect/ops/rescale.py' 2025-12-05T22:27:43.1001753Z 2025-12-05 22:27:43,062 [INFO] adding 'executorch/backends/arm/tosa/dialect/ops/resize.py' 2025-12-05T22:27:43.1002364Z 2025-12-05 22:27:43,063 [INFO] adding 'executorch/backends/arm/tosa/dialect/ops/table.py' 2025-12-05T22:27:43.1003093Z 2025-12-05 22:27:43,063 [INFO] adding 'executorch/backends/arm/tosa/dialect/ops/transpose.py' 2025-12-05T22:27:43.1003967Z 2025-12-05 22:27:43,063 [INFO] adding 'executorch/backends/arm/tosa/schemas/tosa_1.0.fbs' 2025-12-05T22:27:43.1004537Z 2025-12-05 22:27:43,063 [INFO] adding 'executorch/backends/arm/util/_factory.py' 2025-12-05T22:27:43.1005306Z 2025-12-05 22:27:43,064 [INFO] adding 'executorch/backends/arm/util/arm_model_evaluator.py' 2025-12-05T22:27:43.1005937Z 2025-12-05 22:27:43,064 [INFO] adding 'executorch/backends/arm/vgf/__init__.py' 2025-12-05T22:27:43.1006472Z 2025-12-05 22:27:43,065 [INFO] adding 'executorch/backends/arm/vgf/backend.py' 2025-12-05T22:27:43.1007129Z 2025-12-05 22:27:43,065 [INFO] adding 'executorch/backends/arm/vgf/compile_spec.py' 2025-12-05T22:27:43.1007785Z 2025-12-05 22:27:43,065 [INFO] adding 'executorch/backends/arm/vgf/model_converter.py' 2025-12-05T22:27:43.1008365Z 2025-12-05 22:27:43,065 [INFO] adding 'executorch/backends/arm/vgf/partitioner.py' 2025-12-05T22:27:43.1008917Z 2025-12-05 22:27:43,065 [INFO] adding 'executorch/backends/cadence/aot/__init__.py' 2025-12-05T22:27:43.1009488Z 2025-12-05 22:27:43,066 [INFO] adding 'executorch/backends/cadence/aot/compiler.py' 2025-12-05T22:27:43.1010297Z 2025-12-05 22:27:43,066 [INFO] adding 'executorch/backends/cadence/aot/compiler_funcs.py' 2025-12-05T22:27:43.1010928Z 2025-12-05 22:27:43,067 [INFO] adding 'executorch/backends/cadence/aot/compiler_utils.py' 2025-12-05T22:27:43.1011543Z 2025-12-05 22:27:43,067 [INFO] adding 'executorch/backends/cadence/aot/decompose_ops.py' 2025-12-05T22:27:43.1012201Z 2025-12-05 22:27:43,067 [INFO] adding 'executorch/backends/cadence/aot/export_example.py' 2025-12-05T22:27:43.1013023Z 2025-12-05 22:27:43,068 [INFO] adding 'executorch/backends/cadence/aot/functions.yaml' 2025-12-05T22:27:43.1013657Z 2025-12-05 22:27:43,068 [INFO] adding 'executorch/backends/cadence/aot/functions_fusion_g3.yaml' 2025-12-05T22:27:43.1014501Z 2025-12-05 22:27:43,068 [INFO] adding 'executorch/backends/cadence/aot/functions_hifi.yaml' 2025-12-05T22:27:43.1015214Z 2025-12-05 22:27:43,069 [INFO] adding 'executorch/backends/cadence/aot/functions_vision.yaml' 2025-12-05T22:27:43.1015818Z 2025-12-05 22:27:43,070 [INFO] adding 'executorch/backends/cadence/aot/fuse_ops.py' 2025-12-05T22:27:43.1016413Z 2025-12-05 22:27:43,070 [INFO] adding 'executorch/backends/cadence/aot/graph_builder.py' 2025-12-05T22:27:43.1017038Z 2025-12-05 22:27:43,071 [INFO] adding 'executorch/backends/cadence/aot/memory_constraints.py' 2025-12-05T22:27:43.1017682Z 2025-12-05 22:27:43,072 [INFO] adding 'executorch/backends/cadence/aot/memory_planning.py' 2025-12-05T22:27:43.1018629Z 2025-12-05 22:27:43,073 [INFO] adding 'executorch/backends/cadence/aot/memory_planning_algo.py' 2025-12-05T22:27:43.1019302Z 2025-12-05 22:27:43,074 [INFO] adding 'executorch/backends/cadence/aot/ops_registrations.py' 2025-12-05T22:27:43.1019930Z 2025-12-05 22:27:43,075 [INFO] adding 'executorch/backends/cadence/aot/pass_utils.py' 2025-12-05T22:27:43.1020493Z 2025-12-05 22:27:43,075 [INFO] adding 'executorch/backends/cadence/aot/passes.py' 2025-12-05T22:27:43.1021093Z 2025-12-05 22:27:43,075 [INFO] adding 'executorch/backends/cadence/aot/program_builder.py' 2025-12-05T22:27:43.1021787Z 2025-12-05 22:27:43,077 [INFO] adding 'executorch/backends/cadence/aot/ref_implementations.py' 2025-12-05T22:27:43.1022466Z 2025-12-05 22:27:43,078 [INFO] adding 'executorch/backends/cadence/aot/remove_ops.py' 2025-12-05T22:27:43.1023055Z 2025-12-05 22:27:43,079 [INFO] adding 'executorch/backends/cadence/aot/reorder_ops.py' 2025-12-05T22:27:43.1023637Z 2025-12-05 22:27:43,082 [INFO] adding 'executorch/backends/cadence/aot/replace_ops.py' 2025-12-05T22:27:43.1024349Z 2025-12-05 22:27:43,082 [INFO] adding 'executorch/backends/cadence/aot/simplify_ops.py' 2025-12-05T22:27:43.1024948Z 2025-12-05 22:27:43,083 [INFO] adding 'executorch/backends/cadence/aot/type_dispatch.py' 2025-12-05T22:27:43.1025553Z 2025-12-05 22:27:43,083 [INFO] adding 'executorch/backends/cadence/aot/typing_stubs.py' 2025-12-05T22:27:43.1026279Z 2025-12-05 22:27:43,083 [INFO] adding 'executorch/backends/cadence/aot/utils.py' 2025-12-05T22:27:43.1026944Z 2025-12-05 22:27:43,084 [INFO] adding 'executorch/backends/cadence/aot/quantizer/fusion_pass.py' 2025-12-05T22:27:43.1027622Z 2025-12-05 22:27:43,084 [INFO] adding 'executorch/backends/cadence/aot/quantizer/patterns.py' 2025-12-05T22:27:43.1028278Z 2025-12-05 22:27:43,085 [INFO] adding 'executorch/backends/cadence/aot/quantizer/quantizer.py' 2025-12-05T22:27:43.1029119Z 2025-12-05 22:27:43,085 [INFO] adding 'executorch/backends/cadence/aot/quantizer/utils.py' 2025-12-05T22:27:43.1029832Z 2025-12-05 22:27:43,086 [INFO] adding 'executorch/backends/cadence/aot/tests/test_decompose_ops_passes.py' 2025-12-05T22:27:43.1030601Z 2025-12-05 22:27:43,087 [INFO] adding 'executorch/backends/cadence/aot/tests/test_fusion_ops_passes.py' 2025-12-05T22:27:43.1031343Z 2025-12-05 22:27:43,087 [INFO] adding 'executorch/backends/cadence/aot/tests/test_graph_builder.py' 2025-12-05T22:27:43.1032117Z 2025-12-05 22:27:43,087 [INFO] adding 'executorch/backends/cadence/aot/tests/test_idma_ops.py' 2025-12-05T22:27:43.1032803Z 2025-12-05 22:27:43,088 [INFO] adding 'executorch/backends/cadence/aot/tests/test_memory_passes.py' 2025-12-05T22:27:43.1033506Z 2025-12-05 22:27:43,088 [INFO] adding 'executorch/backends/cadence/aot/tests/test_pass_filter.py' 2025-12-05T22:27:43.1034280Z 2025-12-05 22:27:43,089 [INFO] adding 'executorch/backends/cadence/aot/tests/test_program_builder.py' 2025-12-05T22:27:43.1035057Z 2025-12-05 22:27:43,089 [INFO] adding 'executorch/backends/cadence/aot/tests/test_quantizer_ops.py' 2025-12-05T22:27:43.1035897Z 2025-12-05 22:27:43,091 [INFO] adding 'executorch/backends/cadence/aot/tests/test_ref_implementations.py' 2025-12-05T22:27:43.1036756Z 2025-12-05 22:27:43,092 [INFO] adding 'executorch/backends/cadence/aot/tests/test_remove_ops_passes.py' 2025-12-05T22:27:43.1037515Z 2025-12-05 22:27:43,093 [INFO] adding 'executorch/backends/cadence/aot/tests/test_reorder_ops_passes.py' 2025-12-05T22:27:43.1038272Z 2025-12-05 22:27:43,094 [INFO] adding 'executorch/backends/cadence/aot/tests/test_replace_ops_passes.py' 2025-12-05T22:27:43.1039046Z 2025-12-05 22:27:43,095 [INFO] adding 'executorch/backends/cadence/aot/tests/test_simplify_ops_passes.py' 2025-12-05T22:27:43.1039931Z 2025-12-05 22:27:43,095 [INFO] adding 'executorch/backends/cadence/aot/tests/test_type_dispatch_passes.py' 2025-12-05T22:27:43.1040627Z 2025-12-05 22:27:43,095 [INFO] adding 'executorch/backends/cadence/runtime/__init__.py' 2025-12-05T22:27:43.1041208Z 2025-12-05 22:27:43,096 [INFO] adding 'executorch/backends/cadence/runtime/etdump.py' 2025-12-05T22:27:43.1041900Z 2025-12-05 22:27:43,096 [INFO] adding 'executorch/backends/cadence/runtime/executor.py' 2025-12-05T22:27:43.1042501Z 2025-12-05 22:27:43,096 [INFO] adding 'executorch/backends/cadence/runtime/runtime.py' 2025-12-05T22:27:43.1043077Z 2025-12-05 22:27:43,097 [INFO] adding 'executorch/backends/cadence/runtime/utils.py' 2025-12-05T22:27:43.1043669Z 2025-12-05 22:27:43,097 [INFO] adding 'executorch/backends/cadence/utils/facto_util.py' 2025-12-05T22:27:43.1206097Z 2025-12-05 22:27:43,097 [INFO] adding 'executorch/backends/cadence/utils/gen_header.py' 2025-12-05T22:27:43.1206860Z 2025-12-05 22:27:43,098 [INFO] adding 'executorch/backends/cadence/utils/post_compilation.py' 2025-12-05T22:27:43.1207656Z 2025-12-05 22:27:43,098 [INFO] adding 'executorch/backends/cadence/utils/FACTO/setup.py' 2025-12-05T22:27:43.1208347Z 2025-12-05 22:27:43,098 [INFO] adding 'executorch/backends/cadence/utils/FACTO/calibrator/__init__.py' 2025-12-05T22:27:43.1209093Z 2025-12-05 22:27:43,099 [INFO] adding 'executorch/backends/cadence/utils/FACTO/calibrator/runner.py' 2025-12-05T22:27:43.1210033Z 2025-12-05 22:27:43,099 [INFO] adding 'executorch/backends/cadence/utils/FACTO/examples/example.py' 2025-12-05T22:27:43.1210858Z 2025-12-05 22:27:43,099 [INFO] adding 'executorch/backends/cadence/utils/FACTO/examples/minimal_example.py' 2025-12-05T22:27:43.1211822Z 2025-12-05 22:27:43,099 [INFO] adding 'executorch/backends/cadence/utils/FACTO/examples/random_seed.py' 2025-12-05T22:27:43.1212736Z 2025-12-05 22:27:43,100 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/__init__.py' 2025-12-05T22:27:43.1213555Z 2025-12-05 22:27:43,100 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/__init__.py' 2025-12-05T22:27:43.1214393Z 2025-12-05 22:27:43,100 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/__init__.py' 2025-12-05T22:27:43.1215359Z 2025-12-05 22:27:43,100 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/engine.py' 2025-12-05T22:27:43.1216290Z 2025-12-05 22:27:43,101 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/gen.py' 2025-12-05T22:27:43.1217316Z 2025-12-05 22:27:43,101 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/__init__.py' 2025-12-05T22:27:43.1218462Z 2025-12-05 22:27:43,101 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/engine.py' 2025-12-05T22:27:43.1219320Z 2025-12-05 22:27:43,101 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/gen.py' 2025-12-05T22:27:43.1220273Z 2025-12-05 22:27:43,102 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/type.py' 2025-12-05T22:27:43.1221218Z 2025-12-05 22:27:43,102 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/__init__.py' 2025-12-05T22:27:43.1222091Z 2025-12-05 22:27:43,102 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/engine.py' 2025-12-05T22:27:43.1223084Z 2025-12-05 22:27:43,102 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/model.py' 2025-12-05T22:27:43.1224175Z 2025-12-05 22:27:43,103 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/solve.py' 2025-12-05T22:27:43.1225023Z 2025-12-05 22:27:43,103 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/__init__.py' 2025-12-05T22:27:43.1225966Z 2025-12-05 22:27:43,103 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/model.py' 2025-12-05T22:27:43.1226879Z 2025-12-05 22:27:43,103 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/__init__.py' 2025-12-05T22:27:43.1227765Z 2025-12-05 22:27:43,104 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/random_manager.py' 2025-12-05T22:27:43.1228949Z 2025-12-05 22:27:43,104 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/__init__.py' 2025-12-05T22:27:43.1229826Z 2025-12-05 22:27:43,104 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/constants.py' 2025-12-05T22:27:43.1230687Z 2025-12-05 22:27:43,104 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/gen.py' 2025-12-05T22:27:43.1231552Z 2025-12-05 22:27:43,105 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/solve.py' 2025-12-05T22:27:43.1232588Z 2025-12-05 22:27:43,105 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/space.py' 2025-12-05T22:27:43.1233434Z 2025-12-05 22:27:43,105 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/type.py' 2025-12-05T22:27:43.1234267Z 2025-12-05 22:27:43,106 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/utils.py' 2025-12-05T22:27:43.1235053Z 2025-12-05 22:27:43,107 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/db.py' 2025-12-05T22:27:43.1235986Z 2025-12-05 22:27:43,108 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/default.py' 2025-12-05T22:27:43.1236735Z 2025-12-05 22:27:43,108 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/dtypes.py' 2025-12-05T22:27:43.1237497Z 2025-12-05 22:27:43,109 [INFO] adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/function.py' 2025-12-05T22:27:43.1238647Z 2025-12-05 22:27:43,109 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_engine.py' 2025-12-05T22:27:43.1239575Z 2025-12-05 22:27:43,109 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_generator.py' 2025-12-05T22:27:43.1240717Z 2025-12-05 22:27:43,109 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_attributes.py' 2025-12-05T22:27:43.1241646Z 2025-12-05 22:27:43,110 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_generator.py' 2025-12-05T22:27:43.1242751Z 2025-12-05 22:27:43,110 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_types.py' 2025-12-05T22:27:43.1243637Z 2025-12-05 22:27:43,110 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_engine.py' 2025-12-05T22:27:43.1244543Z 2025-12-05 22:27:43,110 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_solver.py' 2025-12-05T22:27:43.1245444Z 2025-12-05 22:27:43,110 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_constraints.py' 2025-12-05T22:27:43.1246332Z 2025-12-05 22:27:43,111 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_meta_arg_engine.py' 2025-12-05T22:27:43.1247196Z 2025-12-05 22:27:43,111 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_specs.py' 2025-12-05T22:27:43.1248223Z 2025-12-05 22:27:43,111 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_structural_engine.py' 2025-12-05T22:27:43.1249225Z 2025-12-05 22:27:43,111 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_generation.py' 2025-12-05T22:27:43.1250285Z 2025-12-05 22:27:43,112 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_solving.py' 2025-12-05T22:27:43.1251251Z 2025-12-05 22:27:43,112 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_space.py' 2025-12-05T22:27:43.1252131Z 2025-12-05 22:27:43,112 [INFO] adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_types.py' 2025-12-05T22:27:43.1253060Z 2025-12-05 22:27:43,113 [INFO] adding 'executorch/backends/cortex_m/ops/operators.py' 2025-12-05T22:27:43.1253664Z 2025-12-05 22:27:43,113 [INFO] adding 'executorch/backends/cortex_m/ops/operators.yaml' 2025-12-05T22:27:43.1254264Z 2025-12-05 22:27:43,113 [INFO] adding 'executorch/backends/cortex_m/passes/__init__.py' 2025-12-05T22:27:43.1254944Z 2025-12-05 22:27:43,114 [INFO] adding 'executorch/backends/cortex_m/passes/activation_fusion_pass.py' 2025-12-05T22:27:43.1255860Z 2025-12-05 22:27:43,114 [INFO] adding 'executorch/backends/cortex_m/passes/clamp_hardswish_pass.py' 2025-12-05T22:27:43.1256601Z 2025-12-05 22:27:43,114 [INFO] adding 'executorch/backends/cortex_m/passes/convert_to_cortex_m_pass.py' 2025-12-05T22:27:43.1257328Z 2025-12-05 22:27:43,114 [INFO] adding 'executorch/backends/cortex_m/passes/cortex_m_pass_manager.py' 2025-12-05T22:27:43.1258249Z 2025-12-05 22:27:43,115 [INFO] adding 'executorch/backends/cortex_m/passes/decompose_hardswish_pass.py' 2025-12-05T22:27:43.1258957Z 2025-12-05 22:27:43,115 [INFO] adding 'executorch/backends/cortex_m/passes/passes_utils.py' 2025-12-05T22:27:43.1259649Z 2025-12-05 22:27:43,115 [INFO] adding 'executorch/backends/cortex_m/passes/quantized_op_fusion_pass.py' 2025-12-05T22:27:43.1260409Z 2025-12-05 22:27:43,115 [INFO] adding 'executorch/backends/cortex_m/passes/replace_quant_nodes_pass.py' 2025-12-05T22:27:43.1261313Z 2025-12-05 22:27:43,116 [INFO] adding 'executorch/backends/cortex_m/quantizer/operator_configs.py' 2025-12-05T22:27:43.1262045Z 2025-12-05 22:27:43,116 [INFO] adding 'executorch/backends/cortex_m/quantizer/quantization_configs.py' 2025-12-05T22:27:43.1262739Z 2025-12-05 22:27:43,116 [INFO] adding 'executorch/backends/cortex_m/quantizer/quantizer.py' 2025-12-05T22:27:43.1263514Z 2025-12-05 22:27:43,117 [INFO] adding 'executorch/backends/cortex_m/test/test_helpers_passes_utils.py' 2025-12-05T22:27:43.1264435Z 2025-12-05 22:27:43,117 [INFO] adding 'executorch/backends/cortex_m/test/test_replace_quant_nodes.py' 2025-12-05T22:27:43.1265069Z 2025-12-05 22:27:43,117 [INFO] adding 'executorch/backends/cortex_m/test/tester.py' 2025-12-05T22:27:43.1265710Z 2025-12-05 22:27:43,118 [INFO] adding 'executorch/backends/cortex_m/test/misc/test_quantization.py' 2025-12-05T22:27:43.1266427Z 2025-12-05 22:27:43,118 [INFO] adding 'executorch/backends/cortex_m/test/models/__init__.py' 2025-12-05T22:27:43.1267256Z 2025-12-05 22:27:43,118 [INFO] adding 'executorch/backends/cortex_m/test/models/test_mobilenet_v3.py' 2025-12-05T22:27:43.1267933Z 2025-12-05 22:27:43,118 [INFO] adding 'executorch/backends/cortex_m/test/ops/__init__.py' 2025-12-05T22:27:43.1268638Z 2025-12-05 22:27:43,119 [INFO] adding 'executorch/backends/cortex_m/test/ops/test_activation.py' 2025-12-05T22:27:43.1269366Z 2025-12-05 22:27:43,119 [INFO] adding 'executorch/backends/cortex_m/test/ops/test_add.py' 2025-12-05T22:27:43.1270116Z 2025-12-05 22:27:43,119 [INFO] adding 'executorch/backends/cortex_m/test/ops/test_conv.py' 2025-12-05T22:27:43.1461752Z 2025-12-05 22:27:43,120 [INFO] adding 'executorch/backends/cortex_m/test/ops/test_linear.py' 2025-12-05T22:27:43.1462572Z 2025-12-05 22:27:43,120 [INFO] adding 'executorch/backends/cortex_m/test/ops/test_lstm.py' 2025-12-05T22:27:43.1463285Z 2025-12-05 22:27:43,120 [INFO] adding 'executorch/backends/cortex_m/test/ops/test_maximum.py' 2025-12-05T22:27:43.1463944Z 2025-12-05 22:27:43,120 [INFO] adding 'executorch/backends/cortex_m/test/ops/test_minimum.py' 2025-12-05T22:27:43.1464966Z 2025-12-05 22:27:43,121 [INFO] adding 'executorch/backends/cortex_m/test/ops/test_mul.py' 2025-12-05T22:27:43.1465607Z 2025-12-05 22:27:43,121 [INFO] adding 'executorch/backends/cortex_m/test/ops/test_transpose.py' 2025-12-05T22:27:43.1466208Z 2025-12-05 22:27:43,121 [INFO] adding 'executorch/backends/cuda/__init__.py' 2025-12-05T22:27:43.1466748Z 2025-12-05 22:27:43,122 [INFO] adding 'executorch/backends/cuda/cuda_backend.py' 2025-12-05T22:27:43.1467293Z 2025-12-05 22:27:43,122 [INFO] adding 'executorch/backends/cuda/cuda_partitioner.py' 2025-12-05T22:27:43.1467975Z 2025-12-05 22:27:43,122 [INFO] adding 'executorch/backends/cuda/tests/__init__.py' 2025-12-05T22:27:43.1468624Z 2025-12-05 22:27:43,122 [INFO] adding 'executorch/backends/cuda/tests/test_cuda_export.py' 2025-12-05T22:27:43.1469282Z 2025-12-05 22:27:43,123 [INFO] adding 'executorch/backends/cuda/tests/test_cuda_partitioner.py' 2025-12-05T22:27:43.1469915Z 2025-12-05 22:27:43,123 [INFO] adding 'executorch/backends/cuda/triton/__init__.py' 2025-12-05T22:27:43.1470509Z 2025-12-05 22:27:43,123 [INFO] adding 'executorch/backends/cuda/triton/replacement_pass.py' 2025-12-05T22:27:43.1471150Z 2025-12-05 22:27:43,124 [INFO] adding 'executorch/backends/cuda/triton/kernels/__init__.py' 2025-12-05T22:27:43.1471884Z 2025-12-05 22:27:43,124 [INFO] adding 'executorch/backends/cuda/triton/kernels/sdpa.py' 2025-12-05T22:27:43.1472632Z 2025-12-05 22:27:43,124 [INFO] adding 'executorch/backends/example/example_backend.py' 2025-12-05T22:27:43.1473258Z 2025-12-05 22:27:43,125 [INFO] adding 'executorch/backends/example/example_partitioner.py' 2025-12-05T22:27:43.1473873Z 2025-12-05 22:27:43,125 [INFO] adding 'executorch/backends/example/example_quantizer.py' 2025-12-05T22:27:43.1474515Z 2025-12-05 22:27:43,125 [INFO] adding 'executorch/backends/example/test_example_delegate.py' 2025-12-05T22:27:43.1475531Z 2025-12-05 22:27:43,125 [INFO] adding 'executorch/backends/example/example_backend_delegate_passes/merge_to_dim_pass.py' 2025-12-05T22:27:43.1477188Z 2025-12-05 22:27:43,126 [INFO] adding 'executorch/backends/example/example_backend_delegate_passes/permute_memory_formats_pass.py' 2025-12-05T22:27:43.1478581Z 2025-12-05 22:27:43,126 [INFO] adding 'executorch/backends/example/example_operators/adaptive_avg_pool2d.py' 2025-12-05T22:27:43.1479707Z 2025-12-05 22:27:43,126 [INFO] adding 'executorch/backends/example/example_operators/add.py' 2025-12-05T22:27:43.1480399Z 2025-12-05 22:27:43,126 [INFO] adding 'executorch/backends/example/example_operators/conv2d.py' 2025-12-05T22:27:43.1481097Z 2025-12-05 22:27:43,127 [INFO] adding 'executorch/backends/example/example_operators/conv_relu.py' 2025-12-05T22:27:43.1481878Z 2025-12-05 22:27:43,127 [INFO] adding 'executorch/backends/example/example_operators/dropout.py' 2025-12-05T22:27:43.1483068Z 2025-12-05 22:27:43,127 [INFO] adding 'executorch/backends/example/example_operators/flatten.py' 2025-12-05T22:27:43.1484267Z 2025-12-05 22:27:43,127 [INFO] adding 'executorch/backends/example/example_operators/linear.py' 2025-12-05T22:27:43.1485302Z 2025-12-05 22:27:43,127 [INFO] adding 'executorch/backends/example/example_operators/op_base.py' 2025-12-05T22:27:43.1485972Z 2025-12-05 22:27:43,128 [INFO] adding 'executorch/backends/example/example_operators/ops.py' 2025-12-05T22:27:43.1486646Z 2025-12-05 22:27:43,128 [INFO] adding 'executorch/backends/example/example_operators/utils.py' 2025-12-05T22:27:43.1487414Z 2025-12-05 22:27:43,128 [INFO] adding 'executorch/backends/mediatek/__init__.py' 2025-12-05T22:27:43.1487996Z 2025-12-05 22:27:43,128 [INFO] adding 'executorch/backends/mediatek/partitioner.py' 2025-12-05T22:27:43.1488573Z 2025-12-05 22:27:43,129 [INFO] adding 'executorch/backends/mediatek/preprocess.py' 2025-12-05T22:27:43.1489153Z 2025-12-05 22:27:43,129 [INFO] adding 'executorch/backends/mediatek/_passes/__init__.py' 2025-12-05T22:27:43.1490107Z 2025-12-05 22:27:43,129 [INFO] adding 'executorch/backends/mediatek/_passes/decompose_scaled_dot_product_attention.py' 2025-12-05T22:27:43.1490983Z 2025-12-05 22:27:43,129 [INFO] adding 'executorch/backends/mediatek/quantizer/__init__.py' 2025-12-05T22:27:43.1491626Z 2025-12-05 22:27:43,130 [INFO] adding 'executorch/backends/mediatek/quantizer/annotator.py' 2025-12-05T22:27:43.1492279Z 2025-12-05 22:27:43,130 [INFO] adding 'executorch/backends/mediatek/quantizer/qconfig.py' 2025-12-05T22:27:43.1493062Z 2025-12-05 22:27:43,130 [INFO] adding 'executorch/backends/mediatek/quantizer/quantizer.py' 2025-12-05T22:27:43.1493764Z 2025-12-05 22:27:43,130 [INFO] adding 'executorch/backends/nxp/neutron_node_extraction.py' 2025-12-05T22:27:43.1494367Z 2025-12-05 22:27:43,131 [INFO] adding 'executorch/backends/nxp/neutron_partitioner.py' 2025-12-05T22:27:43.1495018Z 2025-12-05 22:27:43,131 [INFO] adding 'executorch/backends/nxp/neutron_pass_manager.py' 2025-12-05T22:27:43.1495707Z 2025-12-05 22:27:43,132 [INFO] adding 'executorch/backends/nxp/nxp_backend.py' 2025-12-05T22:27:43.1496306Z 2025-12-05 22:27:43,132 [INFO] adding 'executorch/backends/nxp/_passes/remove_getitem_pass.py' 2025-12-05T22:27:43.1497043Z 2025-12-05 22:27:43,133 [INFO] adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_conv_pass.py' 2025-12-05T22:27:43.1497839Z 2025-12-05 22:27:43,133 [INFO] adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_linear_pass.py' 2025-12-05T22:27:43.1498624Z 2025-12-05 22:27:43,133 [INFO] adding 'executorch/backends/nxp/aten_passes/fuse_linear_and_add_pass.py' 2025-12-05T22:27:43.1499398Z 2025-12-05 22:27:43,134 [INFO] adding 'executorch/backends/nxp/aten_passes/move_activation_before_concat.py' 2025-12-05T22:27:43.1500257Z 2025-12-05 22:27:43,134 [INFO] adding 'executorch/backends/nxp/aten_passes/neutron_aten_pass_manager.py' 2025-12-05T22:27:43.1501166Z 2025-12-05 22:27:43,134 [INFO] adding 'executorch/backends/nxp/aten_passes/remove_nodes_with_known_outputs.py' 2025-12-05T22:27:43.1501929Z 2025-12-05 22:27:43,135 [INFO] adding 'executorch/backends/nxp/aten_passes/split_group_convolution.py' 2025-12-05T22:27:43.1502704Z 2025-12-05 22:27:43,135 [INFO] adding 'executorch/backends/nxp/aten_passes/split_gru_based_on_num_layers.py' 2025-12-05T22:27:43.1503577Z 2025-12-05 22:27:43,135 [INFO] adding 'executorch/backends/nxp/backend/custom_delegation_options.py' 2025-12-05T22:27:43.1504431Z 2025-12-05 22:27:43,136 [INFO] adding 'executorch/backends/nxp/backend/edge_helper.py' 2025-12-05T22:27:43.1505099Z 2025-12-05 22:27:43,136 [INFO] adding 'executorch/backends/nxp/backend/edge_program_converter.py' 2025-12-05T22:27:43.1505806Z 2025-12-05 22:27:43,136 [INFO] adding 'executorch/backends/nxp/backend/neutron_converter_manager.py' 2025-12-05T22:27:43.1506744Z 2025-12-05 22:27:43,137 [INFO] adding 'executorch/backends/nxp/backend/neutron_operator_support.py' 2025-12-05T22:27:43.1507443Z 2025-12-05 22:27:43,137 [INFO] adding 'executorch/backends/nxp/backend/neutron_target_spec.py' 2025-12-05T22:27:43.1508099Z 2025-12-05 22:27:43,137 [INFO] adding 'executorch/backends/nxp/backend/node_format.py' 2025-12-05T22:27:43.1509034Z 2025-12-05 22:27:43,138 [INFO] adding 'executorch/backends/nxp/backend/node_format_inference.py' 2025-12-05T22:27:43.1509718Z 2025-12-05 22:27:43,138 [INFO] adding 'executorch/backends/nxp/backend/ir/conversion_config.py' 2025-12-05T22:27:43.1510407Z 2025-12-05 22:27:43,138 [INFO] adding 'executorch/backends/nxp/backend/ir/conversion_context.py' 2025-12-05T22:27:43.1511273Z 2025-12-05 22:27:43,138 [INFO] adding 'executorch/backends/nxp/backend/ir/logger.py' 2025-12-05T22:27:43.1511910Z 2025-12-05 22:27:43,139 [INFO] adding 'executorch/backends/nxp/backend/ir/tensor_formatting.py' 2025-12-05T22:27:43.1512600Z 2025-12-05 22:27:43,139 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/__init__.py' 2025-12-05T22:27:43.1513480Z 2025-12-05 22:27:43,139 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converter.py' 2025-12-05T22:27:43.1514333Z 2025-12-05 22:27:43,140 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/quantization_utils.py' 2025-12-05T22:27:43.1515175Z 2025-12-05 22:27:43,140 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/tensor_utils.py' 2025-12-05T22:27:43.1516172Z 2025-12-05 22:27:43,140 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/builder/__init__.py' 2025-12-05T22:27:43.1517055Z 2025-12-05 22:27:43,140 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/builder/aten_model_builder_director.py' 2025-12-05T22:27:43.1518099Z 2025-12-05 22:27:43,142 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/builder/model_builder.py' 2025-12-05T22:27:43.1519265Z 2025-12-05 22:27:43,143 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/builder/quantization_verification.py' 2025-12-05T22:27:43.1520143Z 2025-12-05 22:27:43,143 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/conversion/__init__.py' 2025-12-05T22:27:43.1520990Z 2025-12-05 22:27:43,143 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/conversion/aten_translator.py' 2025-12-05T22:27:43.1522040Z 2025-12-05 22:27:43,144 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/conversion/common.py' 2025-12-05T22:27:43.1522840Z 2025-12-05 22:27:43,144 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/conversion/translator.py' 2025-12-05T22:27:43.1523893Z 2025-12-05 22:27:43,145 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/__init__.py' 2025-12-05T22:27:43.1524825Z 2025-12-05 22:27:43,145 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/__init__.py' 2025-12-05T22:27:43.1525839Z 2025-12-05 22:27:43,145 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/abs_converter.py' 2025-12-05T22:27:43.1636831Z 2025-12-05 22:27:43,145 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/adaptive_avg_pool_2d_converter.py' 2025-12-05T22:27:43.1638666Z 2025-12-05 22:27:43,145 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/add_tensor_converter.py' 2025-12-05T22:27:43.1640638Z 2025-12-05 22:27:43,146 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/addmm_converter.py' 2025-12-05T22:27:43.1642935Z 2025-12-05 22:27:43,146 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/avg_pool_2d_converter.py' 2025-12-05T22:27:43.1644896Z 2025-12-05 22:27:43,146 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/cat_converter.py' 2025-12-05T22:27:43.1646648Z 2025-12-05 22:27:43,147 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/clone_converter.py' 2025-12-05T22:27:43.1648550Z 2025-12-05 22:27:43,147 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/constant_pad_nd_converter.py' 2025-12-05T22:27:43.1650373Z 2025-12-05 22:27:43,148 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/convolution_converter.py' 2025-12-05T22:27:43.1652661Z 2025-12-05 22:27:43,148 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/hardtanh_converter.py' 2025-12-05T22:27:43.1654708Z 2025-12-05 22:27:43,148 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/max_pool_2d_converter.py' 2025-12-05T22:27:43.1656740Z 2025-12-05 22:27:43,149 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mean_dim_converter.py' 2025-12-05T22:27:43.1658878Z 2025-12-05 22:27:43,149 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mm_converter.py' 2025-12-05T22:27:43.1660865Z 2025-12-05 22:27:43,149 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/permute_copy_converter.py' 2025-12-05T22:27:43.1662938Z 2025-12-05 22:27:43,150 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_dequantize_converter.py' 2025-12-05T22:27:43.1665368Z 2025-12-05 22:27:43,150 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_quantize_converter.py' 2025-12-05T22:27:43.1667494Z 2025-12-05 22:27:43,150 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/relu_converter.py' 2025-12-05T22:27:43.1669589Z 2025-12-05 22:27:43,150 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/sigmoid_converter.py' 2025-12-05T22:27:43.1687872Z 2025-12-05 22:27:43,151 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/softmax_converter.py' 2025-12-05T22:27:43.1690018Z 2025-12-05 22:27:43,151 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/sub_tensor_converter.py' 2025-12-05T22:27:43.1691940Z 2025-12-05 22:27:43,151 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/tanh_converter.py' 2025-12-05T22:27:43.1693850Z 2025-12-05 22:27:43,151 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/view_copy_converter.py' 2025-12-05T22:27:43.1695667Z 2025-12-05 22:27:43,152 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/__init__.py' 2025-12-05T22:27:43.1696887Z 2025-12-05 22:27:43,152 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/conv_utils.py' 2025-12-05T22:27:43.1697852Z 2025-12-05 22:27:43,152 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/recurrent_utils.py' 2025-12-05T22:27:43.1698810Z 2025-12-05 22:27:43,152 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reduce_utils.py' 2025-12-05T22:27:43.1699916Z 2025-12-05 22:27:43,153 [INFO] adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reshape_transposition.py' 2025-12-05T22:27:43.1700877Z 2025-12-05 22:27:43,153 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/__init__.py' 2025-12-05T22:27:43.1701801Z 2025-12-05 22:27:43,153 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ATan2Options.py' 2025-12-05T22:27:43.1703046Z 2025-12-05 22:27:43,154 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/AbsOptions.py' 2025-12-05T22:27:43.1704606Z 2025-12-05 22:27:43,154 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ActivationFunctionType.py' 2025-12-05T22:27:43.1706076Z 2025-12-05 22:27:43,154 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddNOptions.py' 2025-12-05T22:27:43.1707404Z 2025-12-05 22:27:43,154 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddOptions.py' 2025-12-05T22:27:43.1708486Z 2025-12-05 22:27:43,155 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMaxOptions.py' 2025-12-05T22:27:43.1709837Z 2025-12-05 22:27:43,155 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMinOptions.py' 2025-12-05T22:27:43.1710974Z 2025-12-05 22:27:43,155 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/AssignVariableOptions.py' 2025-12-05T22:27:43.1712330Z 2025-12-05 22:27:43,155 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchMatMulOptions.py' 2025-12-05T22:27:43.1713746Z 2025-12-05 22:27:43,155 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchToSpaceNDOptions.py' 2025-12-05T22:27:43.1715066Z 2025-12-05 22:27:43,156 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceLSTMOptions.py' 2025-12-05T22:27:43.1716823Z 2025-12-05 22:27:43,156 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceRNNOptions.py' 2025-12-05T22:27:43.1718363Z 2025-12-05 22:27:43,156 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitcastOptions.py' 2025-12-05T22:27:43.1719775Z 2025-12-05 22:27:43,156 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitwiseXorOptions.py' 2025-12-05T22:27:43.1721359Z 2025-12-05 22:27:43,157 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/BroadcastToOptions.py' 2025-12-05T22:27:43.1722779Z 2025-12-05 22:27:43,157 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/BucketizeOptions.py' 2025-12-05T22:27:43.1723818Z 2025-12-05 22:27:43,157 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Buffer.py' 2025-12-05T22:27:43.1724571Z 2025-12-05 22:27:43,157 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOperator.py' 2025-12-05T22:27:43.1725792Z 2025-12-05 22:27:43,158 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions.py' 2025-12-05T22:27:43.1727007Z 2025-12-05 22:27:43,158 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions2.py' 2025-12-05T22:27:43.1728013Z 2025-12-05 22:27:43,158 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOnceOptions.py' 2025-12-05T22:27:43.1729376Z 2025-12-05 22:27:43,158 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOptions.py' 2025-12-05T22:27:43.1730592Z 2025-12-05 22:27:43,158 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/CastOptions.py' 2025-12-05T22:27:43.1731755Z 2025-12-05 22:27:43,159 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/CombinerType.py' 2025-12-05T22:27:43.1733008Z 2025-12-05 22:27:43,159 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatEmbeddingsOptions.py' 2025-12-05T22:27:43.1734360Z 2025-12-05 22:27:43,159 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatenationOptions.py' 2025-12-05T22:27:43.1735815Z 2025-12-05 22:27:43,159 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv2DOptions.py' 2025-12-05T22:27:43.1736959Z 2025-12-05 22:27:43,160 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv3DOptions.py' 2025-12-05T22:27:43.1738294Z 2025-12-05 22:27:43,160 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/CosOptions.py' 2025-12-05T22:27:43.1739353Z 2025-12-05 22:27:43,160 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/CumsumOptions.py' 2025-12-05T22:27:43.1740801Z 2025-12-05 22:27:43,160 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomOptionsFormat.py' 2025-12-05T22:27:43.1741634Z 2025-12-05 22:27:43,161 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomQuantization.py' 2025-12-05T22:27:43.1742768Z 2025-12-05 22:27:43,161 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/DensifyOptions.py' 2025-12-05T22:27:43.1744221Z 2025-12-05 22:27:43,161 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthToSpaceOptions.py' 2025-12-05T22:27:43.1745189Z 2025-12-05 22:27:43,161 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthwiseConv2DOptions.py' 2025-12-05T22:27:43.1746719Z 2025-12-05 22:27:43,161 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/DequantizeOptions.py' 2025-12-05T22:27:43.1747924Z 2025-12-05 22:27:43,162 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/DilateOptions.py' 2025-12-05T22:27:43.1749419Z 2025-12-05 22:27:43,162 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionMetadata.py' 2025-12-05T22:27:43.1750596Z 2025-12-05 22:27:43,162 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionType.py' 2025-12-05T22:27:43.1751869Z 2025-12-05 22:27:43,162 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/DivOptions.py' 2025-12-05T22:27:43.1753245Z 2025-12-05 22:27:43,163 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/DynamicUpdateSliceOptions.py' 2025-12-05T22:27:43.1811388Z 2025-12-05 22:27:43,163 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/EmbeddingLookupSparseOptions.py' 2025-12-05T22:27:43.1812422Z 2025-12-05 22:27:43,163 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/EqualOptions.py' 2025-12-05T22:27:43.1813763Z 2025-12-05 22:27:43,163 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpOptions.py' 2025-12-05T22:27:43.1815204Z 2025-12-05 22:27:43,163 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpandDimsOptions.py' 2025-12-05T22:27:43.1816592Z 2025-12-05 22:27:43,164 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/FakeQuantOptions.py' 2025-12-05T22:27:43.1817622Z 2025-12-05 22:27:43,164 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/FillOptions.py' 2025-12-05T22:27:43.1819180Z 2025-12-05 22:27:43,164 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorDivOptions.py' 2025-12-05T22:27:43.1820013Z 2025-12-05 22:27:43,164 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorModOptions.py' 2025-12-05T22:27:43.1821475Z 2025-12-05 22:27:43,165 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptions.py' 2025-12-05T22:27:43.1823064Z 2025-12-05 22:27:43,165 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptionsWeightsFormat.py' 2025-12-05T22:27:43.1824490Z 2025-12-05 22:27:43,165 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherNdOptions.py' 2025-12-05T22:27:43.1825360Z 2025-12-05 22:27:43,165 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherOptions.py' 2025-12-05T22:27:43.1826722Z 2025-12-05 22:27:43,165 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/GeluOptions.py' 2025-12-05T22:27:43.1827790Z 2025-12-05 22:27:43,166 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterEqualOptions.py' 2025-12-05T22:27:43.1829369Z 2025-12-05 22:27:43,166 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterOptions.py' 2025-12-05T22:27:43.1830460Z 2025-12-05 22:27:43,166 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/HardSwishOptions.py' 2025-12-05T22:27:43.1831945Z 2025-12-05 22:27:43,166 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableFindOptions.py' 2025-12-05T22:27:43.1833183Z 2025-12-05 22:27:43,166 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableImportOptions.py' 2025-12-05T22:27:43.1834628Z 2025-12-05 22:27:43,167 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableOptions.py' 2025-12-05T22:27:43.1835981Z 2025-12-05 22:27:43,167 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableSizeOptions.py' 2025-12-05T22:27:43.1837418Z 2025-12-05 22:27:43,167 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/IfOptions.py' 2025-12-05T22:27:43.1838704Z 2025-12-05 22:27:43,167 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Int32Vector.py' 2025-12-05T22:27:43.1840028Z 2025-12-05 22:27:43,168 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/L2NormOptions.py' 2025-12-05T22:27:43.1841477Z 2025-12-05 22:27:43,168 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionOptions.py' 2025-12-05T22:27:43.1842603Z 2025-12-05 22:27:43,168 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionType.py' 2025-12-05T22:27:43.1844046Z 2025-12-05 22:27:43,168 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMKernelType.py' 2025-12-05T22:27:43.1844805Z 2025-12-05 22:27:43,168 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMOptions.py' 2025-12-05T22:27:43.1846043Z 2025-12-05 22:27:43,169 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/LeakyReluOptions.py' 2025-12-05T22:27:43.1847275Z 2025-12-05 22:27:43,169 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessEqualOptions.py' 2025-12-05T22:27:43.1848632Z 2025-12-05 22:27:43,169 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessOptions.py' 2025-12-05T22:27:43.1849878Z 2025-12-05 22:27:43,169 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/LocalResponseNormalizationOptions.py' 2025-12-05T22:27:43.1851525Z 2025-12-05 22:27:43,170 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogSoftmaxOptions.py' 2025-12-05T22:27:43.1852714Z 2025-12-05 22:27:43,170 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalAndOptions.py' 2025-12-05T22:27:43.1854276Z 2025-12-05 22:27:43,170 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalNotOptions.py' 2025-12-05T22:27:43.1855538Z 2025-12-05 22:27:43,170 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalOrOptions.py' 2025-12-05T22:27:43.1856819Z 2025-12-05 22:27:43,170 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixDiagOptions.py' 2025-12-05T22:27:43.1858065Z 2025-12-05 22:27:43,171 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixSetDiagOptions.py' 2025-12-05T22:27:43.1859396Z 2025-12-05 22:27:43,171 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/MaximumMinimumOptions.py' 2025-12-05T22:27:43.1860463Z 2025-12-05 22:27:43,171 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Metadata.py' 2025-12-05T22:27:43.1861809Z 2025-12-05 22:27:43,171 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadMode.py' 2025-12-05T22:27:43.1862858Z 2025-12-05 22:27:43,172 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadOptions.py' 2025-12-05T22:27:43.1864190Z 2025-12-05 22:27:43,172 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Model.py' 2025-12-05T22:27:43.1865389Z 2025-12-05 22:27:43,172 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/MulOptions.py' 2025-12-05T22:27:43.1866629Z 2025-12-05 22:27:43,172 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/NegOptions.py' 2025-12-05T22:27:43.1868152Z 2025-12-05 22:27:43,173 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV4Options.py' 2025-12-05T22:27:43.1869494Z 2025-12-05 22:27:43,173 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV5Options.py' 2025-12-05T22:27:43.1871042Z 2025-12-05 22:27:43,173 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/NotEqualOptions.py' 2025-12-05T22:27:43.1871871Z 2025-12-05 22:27:43,173 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/OneHotOptions.py' 2025-12-05T22:27:43.1872607Z 2025-12-05 22:27:43,174 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Operator.py' 2025-12-05T22:27:43.1873337Z 2025-12-05 22:27:43,174 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/OperatorCode.py' 2025-12-05T22:27:43.1874722Z 2025-12-05 22:27:43,174 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/PackOptions.py' 2025-12-05T22:27:43.1875818Z 2025-12-05 22:27:43,174 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadOptions.py' 2025-12-05T22:27:43.1876563Z 2025-12-05 22:27:43,175 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadV2Options.py' 2025-12-05T22:27:43.1877587Z 2025-12-05 22:27:43,175 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Padding.py' 2025-12-05T22:27:43.1878911Z 2025-12-05 22:27:43,175 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Pool2DOptions.py' 2025-12-05T22:27:43.1879691Z 2025-12-05 22:27:43,175 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/PowOptions.py' 2025-12-05T22:27:43.1880739Z 2025-12-05 22:27:43,176 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationDetails.py' 2025-12-05T22:27:43.1882225Z 2025-12-05 22:27:43,176 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationParameters.py' 2025-12-05T22:27:43.1883238Z 2025-12-05 22:27:43,176 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizeOptions.py' 2025-12-05T22:27:43.1884624Z 2025-12-05 22:27:43,176 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/RNNOptions.py' 2025-12-05T22:27:43.1890720Z 2025-12-05 22:27:43,177 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/RandomOptions.py' 2025-12-05T22:27:43.1891572Z 2025-12-05 22:27:43,177 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/RangeOptions.py' 2025-12-05T22:27:43.1892688Z 2025-12-05 22:27:43,177 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/RankOptions.py' 2025-12-05T22:27:43.1894184Z 2025-12-05 22:27:43,177 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReadVariableOptions.py' 2025-12-05T22:27:43.1895714Z 2025-12-05 22:27:43,177 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowFunction.py' 2025-12-05T22:27:43.1896631Z 2025-12-05 22:27:43,178 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowOptions.py' 2025-12-05T22:27:43.1898000Z 2025-12-05 22:27:43,178 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReducerOptions.py' 2025-12-05T22:27:43.1899151Z 2025-12-05 22:27:43,178 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReshapeOptions.py' 2025-12-05T22:27:43.1899989Z 2025-12-05 22:27:43,178 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeBilinearOptions.py' 2025-12-05T22:27:43.1901531Z 2025-12-05 22:27:43,179 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeNearestNeighborOptions.py' 2025-12-05T22:27:43.1902780Z 2025-12-05 22:27:43,179 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseSequenceOptions.py' 2025-12-05T22:27:43.1904299Z 2025-12-05 22:27:43,179 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseV2Options.py' 2025-12-05T22:27:43.1905256Z 2025-12-05 22:27:43,179 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Rfft2dOptions.py' 2025-12-05T22:27:43.1906091Z 2025-12-05 22:27:43,180 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/RightShiftOptions.py' 2025-12-05T22:27:43.1907504Z 2025-12-05 22:27:43,180 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/RngAlgorithm.py' 2025-12-05T22:27:43.1908536Z 2025-12-05 22:27:43,180 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SVDFOptions.py' 2025-12-05T22:27:43.2006071Z 2025-12-05 22:27:43,180 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ScatterNdOptions.py' 2025-12-05T22:27:43.2007096Z 2025-12-05 22:27:43,180 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SegmentSumOptions.py' 2025-12-05T22:27:43.2008352Z 2025-12-05 22:27:43,181 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectOptions.py' 2025-12-05T22:27:43.2009750Z 2025-12-05 22:27:43,181 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectV2Options.py' 2025-12-05T22:27:43.2011237Z 2025-12-05 22:27:43,181 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SequenceRNNOptions.py' 2025-12-05T22:27:43.2012455Z 2025-12-05 22:27:43,181 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ShapeOptions.py' 2025-12-05T22:27:43.2013824Z 2025-12-05 22:27:43,182 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignOptions.py' 2025-12-05T22:27:43.2015022Z 2025-12-05 22:27:43,182 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignatureDef.py' 2025-12-05T22:27:43.2016404Z 2025-12-05 22:27:43,182 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SkipGramOptions.py' 2025-12-05T22:27:43.2017831Z 2025-12-05 22:27:43,182 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SliceOptions.py' 2025-12-05T22:27:43.2019204Z 2025-12-05 22:27:43,183 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SoftmaxOptions.py' 2025-12-05T22:27:43.2020670Z 2025-12-05 22:27:43,183 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToBatchNDOptions.py' 2025-12-05T22:27:43.2022177Z 2025-12-05 22:27:43,183 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToDepthOptions.py' 2025-12-05T22:27:43.2023468Z 2025-12-05 22:27:43,183 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseIndexVector.py' 2025-12-05T22:27:43.2025123Z 2025-12-05 22:27:43,184 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseToDenseOptions.py' 2025-12-05T22:27:43.2026509Z 2025-12-05 22:27:43,184 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparsityParameters.py' 2025-12-05T22:27:43.2027795Z 2025-12-05 22:27:43,184 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitOptions.py' 2025-12-05T22:27:43.2028775Z 2025-12-05 22:27:43,184 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitVOptions.py' 2025-12-05T22:27:43.2029546Z 2025-12-05 22:27:43,185 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquareOptions.py' 2025-12-05T22:27:43.2030376Z 2025-12-05 22:27:43,185 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquaredDifferenceOptions.py' 2025-12-05T22:27:43.2031343Z 2025-12-05 22:27:43,185 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SqueezeOptions.py' 2025-12-05T22:27:43.2032225Z 2025-12-05 22:27:43,185 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloBroadcastInDimOptions.py' 2025-12-05T22:27:43.2033333Z 2025-12-05 22:27:43,186 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCompareOptions.py' 2025-12-05T22:27:43.2034344Z 2025-12-05 22:27:43,186 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonDirection.py' 2025-12-05T22:27:43.2035337Z 2025-12-05 22:27:43,186 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonType.py' 2025-12-05T22:27:43.2036223Z 2025-12-05 22:27:43,186 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConcatenateOptions.py' 2025-12-05T22:27:43.2037331Z 2025-12-05 22:27:43,187 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConvolutionOptions.py' 2025-12-05T22:27:43.2038237Z 2025-12-05 22:27:43,187 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCustomCallOptions.py' 2025-12-05T22:27:43.2039349Z 2025-12-05 22:27:43,187 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDotGeneralOptions.py' 2025-12-05T22:27:43.2040270Z 2025-12-05 22:27:43,188 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDynamicSliceOptions.py' 2025-12-05T22:27:43.2041157Z 2025-12-05 22:27:43,188 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloGatherOptions.py' 2025-12-05T22:27:43.2042008Z 2025-12-05 22:27:43,188 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloIotaOptions.py' 2025-12-05T22:27:43.2043031Z 2025-12-05 22:27:43,189 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPadOptions.py' 2025-12-05T22:27:43.2043870Z 2025-12-05 22:27:43,189 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPrecisionConfig.py' 2025-12-05T22:27:43.2045061Z 2025-12-05 22:27:43,189 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceOptions.py' 2025-12-05T22:27:43.2045950Z 2025-12-05 22:27:43,189 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceWindowOptions.py' 2025-12-05T22:27:43.2047101Z 2025-12-05 22:27:43,190 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloRngBitGeneratorOptions.py' 2025-12-05T22:27:43.2048026Z 2025-12-05 22:27:43,190 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloScatterOptions.py' 2025-12-05T22:27:43.2049079Z 2025-12-05 22:27:43,190 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSliceOptions.py' 2025-12-05T22:27:43.2049925Z 2025-12-05 22:27:43,191 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSortOptions.py' 2025-12-05T22:27:43.2050812Z 2025-12-05 22:27:43,191 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloTransposeOptions.py' 2025-12-05T22:27:43.2051854Z 2025-12-05 22:27:43,191 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloWhileOptions.py' 2025-12-05T22:27:43.2052694Z 2025-12-05 22:27:43,191 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/StridedSliceOptions.py' 2025-12-05T22:27:43.2053689Z 2025-12-05 22:27:43,192 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubGraph.py' 2025-12-05T22:27:43.2054408Z 2025-12-05 22:27:43,192 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubOptions.py' 2025-12-05T22:27:43.2055131Z 2025-12-05 22:27:43,192 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Tensor.py' 2025-12-05T22:27:43.2056276Z 2025-12-05 22:27:43,193 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorMap.py' 2025-12-05T22:27:43.2057495Z 2025-12-05 22:27:43,193 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorType.py' 2025-12-05T22:27:43.2058784Z 2025-12-05 22:27:43,193 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/TileOptions.py' 2025-12-05T22:27:43.2060162Z 2025-12-05 22:27:43,193 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/TopKV2Options.py' 2025-12-05T22:27:43.2061632Z 2025-12-05 22:27:43,194 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeConvOptions.py' 2025-12-05T22:27:43.2063154Z 2025-12-05 22:27:43,194 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeOptions.py' 2025-12-05T22:27:43.2064455Z 2025-12-05 22:27:43,194 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint16Vector.py' 2025-12-05T22:27:43.2065779Z 2025-12-05 22:27:43,194 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint8Vector.py' 2025-12-05T22:27:43.2067189Z 2025-12-05 22:27:43,195 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnidirectionalSequenceLSTMOptions.py' 2025-12-05T22:27:43.2068713Z 2025-12-05 22:27:43,195 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/UniqueOptions.py' 2025-12-05T22:27:43.2070124Z 2025-12-05 22:27:43,195 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnpackOptions.py' 2025-12-05T22:27:43.2071341Z 2025-12-05 22:27:43,195 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMaxOptions.py' 2025-12-05T22:27:43.2072241Z 2025-12-05 22:27:43,196 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMinOptions.py' 2025-12-05T22:27:43.2073284Z 2025-12-05 22:27:43,196 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentProdOptions.py' 2025-12-05T22:27:43.2074284Z 2025-12-05 22:27:43,196 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentSumOptions.py' 2025-12-05T22:27:43.2075331Z 2025-12-05 22:27:43,196 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/VarHandleOptions.py' 2025-12-05T22:27:43.2076118Z 2025-12-05 22:27:43,197 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/VariantSubType.py' 2025-12-05T22:27:43.2077103Z 2025-12-05 22:27:43,197 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhereOptions.py' 2025-12-05T22:27:43.2078280Z 2025-12-05 22:27:43,197 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhileOptions.py' 2025-12-05T22:27:43.2079567Z 2025-12-05 22:27:43,197 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/ZerosLikeOptions.py' 2025-12-05T22:27:43.2080902Z 2025-12-05 22:27:43,197 [INFO] adding 'executorch/backends/nxp/backend/ir/lib/tflite/__init__.py' 2025-12-05T22:27:43.2082241Z 2025-12-05 22:27:43,198 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/__init__.py' 2025-12-05T22:27:43.2083688Z 2025-12-05 22:27:43,198 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/tflite_model.py' 2025-12-05T22:27:43.2084788Z 2025-12-05 22:27:43,199 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/__init__.py' 2025-12-05T22:27:43.2085713Z 2025-12-05 22:27:43,199 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/abs_options.py' 2025-12-05T22:27:43.2086811Z 2025-12-05 22:27:43,199 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_n_options.py' 2025-12-05T22:27:43.2087752Z 2025-12-05 22:27:43,199 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_options.py' 2025-12-05T22:27:43.2141602Z 2025-12-05 22:27:43,200 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_max_options.py' 2025-12-05T22:27:43.2143059Z 2025-12-05 22:27:43,200 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_min_options.py' 2025-12-05T22:27:43.2144244Z 2025-12-05 22:27:43,200 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/average_pool_2d_options.py' 2025-12-05T22:27:43.2145427Z 2025-12-05 22:27:43,200 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/batch_mat_mul_options.py' 2025-12-05T22:27:43.2146536Z 2025-12-05 22:27:43,201 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_lstm_options.py' 2025-12-05T22:27:43.2147882Z 2025-12-05 22:27:43,201 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_rnn_options.py' 2025-12-05T22:27:43.2149327Z 2025-12-05 22:27:43,201 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bitwise_xor_options.py' 2025-12-05T22:27:43.2150413Z 2025-12-05 22:27:43,201 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/broadcast_to_options.py' 2025-12-05T22:27:43.2151590Z 2025-12-05 22:27:43,202 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cast_options.py' 2025-12-05T22:27:43.2152650Z 2025-12-05 22:27:43,202 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/concatenation_options.py' 2025-12-05T22:27:43.2153841Z 2025-12-05 22:27:43,202 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_2d_options.py' 2025-12-05T22:27:43.2154887Z 2025-12-05 22:27:43,202 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_3d_options.py' 2025-12-05T22:27:43.2156032Z 2025-12-05 22:27:43,202 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cum_sum_options.py' 2025-12-05T22:27:43.2157094Z 2025-12-05 22:27:43,203 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depth_to_space_options.py' 2025-12-05T22:27:43.2158346Z 2025-12-05 22:27:43,203 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depthwise_conv_2d_options.py' 2025-12-05T22:27:43.2159450Z 2025-12-05 22:27:43,203 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/dequantize_options.py' 2025-12-05T22:27:43.2160752Z 2025-12-05 22:27:43,204 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/div_options.py' 2025-12-05T22:27:43.2161779Z 2025-12-05 22:27:43,204 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/equal_options.py' 2025-12-05T22:27:43.2162919Z 2025-12-05 22:27:43,204 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/exp_options.py' 2025-12-05T22:27:43.2163963Z 2025-12-05 22:27:43,204 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/floor_mod_options.py' 2025-12-05T22:27:43.2165173Z 2025-12-05 22:27:43,204 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/fully_connected_options.py' 2025-12-05T22:27:43.2166256Z 2025-12-05 22:27:43,205 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_nd_options.py' 2025-12-05T22:27:43.2167439Z 2025-12-05 22:27:43,205 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_options.py' 2025-12-05T22:27:43.2168460Z 2025-12-05 22:27:43,205 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gelu_options.py' 2025-12-05T22:27:43.2169632Z 2025-12-05 22:27:43,205 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_equal_options.py' 2025-12-05T22:27:43.2170776Z 2025-12-05 22:27:43,205 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_options.py' 2025-12-05T22:27:43.2171951Z 2025-12-05 22:27:43,206 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/hard_swish_options.py' 2025-12-05T22:27:43.2173074Z 2025-12-05 22:27:43,206 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/leaky_relu_options.py' 2025-12-05T22:27:43.2174249Z 2025-12-05 22:27:43,206 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_equal_options.py' 2025-12-05T22:27:43.2175308Z 2025-12-05 22:27:43,206 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_options.py' 2025-12-05T22:27:43.2176391Z 2025-12-05 22:27:43,207 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/log_softmax_options.py' 2025-12-05T22:27:43.2177562Z 2025-12-05 22:27:43,207 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_and_options.py' 2025-12-05T22:27:43.2178758Z 2025-12-05 22:27:43,207 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_not_options.py' 2025-12-05T22:27:43.2179836Z 2025-12-05 22:27:43,207 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_or_options.py' 2025-12-05T22:27:43.2180786Z 2025-12-05 22:27:43,207 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lrn_options.py' 2025-12-05T22:27:43.2181774Z 2025-12-05 22:27:43,208 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lstm_options.py' 2025-12-05T22:27:43.2182948Z 2025-12-05 22:27:43,208 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/max_pool_2d_options.py' 2025-12-05T22:27:43.2183953Z 2025-12-05 22:27:43,208 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/maximum_options.py' 2025-12-05T22:27:43.2184907Z 2025-12-05 22:27:43,208 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mean_options.py' 2025-12-05T22:27:43.2186036Z 2025-12-05 22:27:43,208 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/minimum_options.py' 2025-12-05T22:27:43.2187101Z 2025-12-05 22:27:43,209 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mirror_pad_options.py' 2025-12-05T22:27:43.2188252Z 2025-12-05 22:27:43,209 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mul_options.py' 2025-12-05T22:27:43.2188922Z 2025-12-05 22:27:43,209 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/multinomial_options.py' 2025-12-05T22:27:43.2189333Z 2025-12-05 22:27:43,209 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/neg_options.py' 2025-12-05T22:27:43.2189763Z 2025-12-05 22:27:43,210 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/not_equal_options.py' 2025-12-05T22:27:43.2190191Z 2025-12-05 22:27:43,210 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/one_hot_options.py' 2025-12-05T22:27:43.2190618Z 2025-12-05 22:27:43,210 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_options.py' 2025-12-05T22:27:43.2191205Z 2025-12-05 22:27:43,210 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_v2_options.py' 2025-12-05T22:27:43.2191618Z 2025-12-05 22:27:43,210 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pow_options.py' 2025-12-05T22:27:43.2192126Z 2025-12-05 22:27:43,211 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/quantize_options.py' 2025-12-05T22:27:43.2192536Z 2025-12-05 22:27:43,211 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/range_options.py' 2025-12-05T22:27:43.2193022Z 2025-12-05 22:27:43,211 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_max_options.py' 2025-12-05T22:27:43.2193656Z 2025-12-05 22:27:43,211 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_min_options.py' 2025-12-05T22:27:43.2194166Z 2025-12-05 22:27:43,211 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_prod_options.py' 2025-12-05T22:27:43.2194676Z 2025-12-05 22:27:43,212 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reshape_options.py' 2025-12-05T22:27:43.2195137Z 2025-12-05 22:27:43,212 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_bilinear_options.py' 2025-12-05T22:27:43.2195638Z 2025-12-05 22:27:43,212 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_nearest_neighbor_options.py' 2025-12-05T22:27:43.2196180Z 2025-12-05 22:27:43,212 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reverse_sequence_options.py' 2025-12-05T22:27:43.2196740Z 2025-12-05 22:27:43,212 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/scatter_nd_options.py' 2025-12-05T22:27:43.2197173Z 2025-12-05 22:27:43,213 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/select_v2_options.py' 2025-12-05T22:27:43.2197670Z 2025-12-05 22:27:43,213 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/shape_options.py' 2025-12-05T22:27:43.2198081Z 2025-12-05 22:27:43,213 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sign_options.py' 2025-12-05T22:27:43.2362933Z 2025-12-05 22:27:43,213 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/slice_options.py' 2025-12-05T22:27:43.2363366Z 2025-12-05 22:27:43,213 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/softmax_options.py' 2025-12-05T22:27:43.2363830Z 2025-12-05 22:27:43,214 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/space_to_depth_options.py' 2025-12-05T22:27:43.2364319Z 2025-12-05 22:27:43,214 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_options.py' 2025-12-05T22:27:43.2364742Z 2025-12-05 22:27:43,214 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_v_options.py' 2025-12-05T22:27:43.2365156Z 2025-12-05 22:27:43,214 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/square_options.py' 2025-12-05T22:27:43.2365881Z 2025-12-05 22:27:43,215 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squared_difference_options.py' 2025-12-05T22:27:43.2366302Z 2025-12-05 22:27:43,215 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squeeze_options.py' 2025-12-05T22:27:43.2366750Z 2025-12-05 22:27:43,215 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/strided_slice_options.py' 2025-12-05T22:27:43.2367162Z 2025-12-05 22:27:43,215 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sub_options.py' 2025-12-05T22:27:43.2367654Z 2025-12-05 22:27:43,216 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sum_options.py' 2025-12-05T22:27:43.2368097Z 2025-12-05 22:27:43,216 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/tile_options.py' 2025-12-05T22:27:43.2368662Z 2025-12-05 22:27:43,216 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_conv_options.py' 2025-12-05T22:27:43.2369094Z 2025-12-05 22:27:43,216 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_options.py' 2025-12-05T22:27:43.2369692Z 2025-12-05 22:27:43,216 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_lstm_options.py' 2025-12-05T22:27:43.2370356Z 2025-12-05 22:27:43,217 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_rnn_options.py' 2025-12-05T22:27:43.2370867Z 2025-12-05 22:27:43,217 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/custom_options/flex_transpose_options.py' 2025-12-05T22:27:43.2371284Z 2025-12-05 22:27:43,217 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/__init__.py' 2025-12-05T22:27:43.2371615Z 2025-12-05 22:27:43,217 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/meta.py' 2025-12-05T22:27:43.2371939Z 2025-12-05 22:27:43,218 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/types.py' 2025-12-05T22:27:43.2372252Z 2025-12-05 22:27:43,218 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/__init__.py' 2025-12-05T22:27:43.2372589Z 2025-12-05 22:27:43,218 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/graph_utils.py' 2025-12-05T22:27:43.2372931Z 2025-12-05 22:27:43,219 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/operator_rules.py' 2025-12-05T22:27:43.2373314Z 2025-12-05 22:27:43,219 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizer.py' 2025-12-05T22:27:43.2373738Z 2025-12-05 22:27:43,220 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/pattern_matcher.py' 2025-12-05T22:27:43.2374072Z 2025-12-05 22:27:43,220 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/tensor_rules.py' 2025-12-05T22:27:43.2374535Z 2025-12-05 22:27:43,221 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/__init__.py' 2025-12-05T22:27:43.2374978Z 2025-12-05 22:27:43,221 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/base_optimization.py' 2025-12-05T22:27:43.2375556Z 2025-12-05 22:27:43,221 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/permute_fully_connected_weights_after_reshape.py' 2025-12-05T22:27:43.2376085Z 2025-12-05 22:27:43,221 [INFO] adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_transpose_operators.py' 2025-12-05T22:27:43.2376602Z 2025-12-05 22:27:43,222 [INFO] adding 'executorch/backends/nxp/edge_passes/move_auxiliary_operator_into_separate_qdq_cluster_pass.py' 2025-12-05T22:27:43.2376907Z 2025-12-05 22:27:43,222 [INFO] adding 'executorch/backends/nxp/edge_passes/neutron_edge_pass.py' 2025-12-05T22:27:43.2377275Z 2025-12-05 22:27:43,222 [INFO] adding 'executorch/backends/nxp/edge_passes/neutron_edge_pass_manager.py' 2025-12-05T22:27:43.2377767Z 2025-12-05 22:27:43,223 [INFO] adding 'executorch/backends/nxp/edge_passes/remove_additional_quantize_dequantize_nodes_pass.py' 2025-12-05T22:27:43.2378081Z 2025-12-05 22:27:43,223 [INFO] adding 'executorch/backends/nxp/edge_passes/remove_io_quant_ops_pass.py' 2025-12-05T22:27:43.2378423Z 2025-12-05 22:27:43,223 [INFO] adding 'executorch/backends/nxp/quantizer/neutron_quantizer.py' 2025-12-05T22:27:43.2378729Z 2025-12-05 22:27:43,224 [INFO] adding 'executorch/backends/nxp/quantizer/patterns.py' 2025-12-05T22:27:43.2378948Z 2025-12-05 22:27:43,224 [INFO] adding 'executorch/backends/nxp/quantizer/utils.py' 2025-12-05T22:27:43.2379210Z 2025-12-05 22:27:43,225 [INFO] adding 'executorch/backends/nxp/tests/executorch_pipeline.py' 2025-12-05T22:27:43.2379510Z 2025-12-05 22:27:43,225 [INFO] adding 'executorch/backends/nxp/tests/executors.py' 2025-12-05T22:27:43.2379719Z 2025-12-05 22:27:43,226 [INFO] adding 'executorch/backends/nxp/tests/models.py' 2025-12-05T22:27:43.2379997Z 2025-12-05 22:27:43,226 [INFO] adding 'executorch/backends/nxp/tests/test_batch_norm_fusion.py' 2025-12-05T22:27:43.2380339Z 2025-12-05 22:27:43,226 [INFO] adding 'executorch/backends/nxp/tests/test_context_sensitive_delegation.py' 2025-12-05T22:27:43.2380623Z 2025-12-05 22:27:43,227 [INFO] adding 'executorch/backends/nxp/tests/test_edge_passes.py' 2025-12-05T22:27:43.2380953Z 2025-12-05 22:27:43,227 [INFO] adding 'executorch/backends/nxp/tests/test_gru_splitting.py' 2025-12-05T22:27:43.2381268Z 2025-12-05 22:27:43,227 [INFO] adding 'executorch/backends/nxp/tests/test_integration.py' 2025-12-05T22:27:43.2381612Z 2025-12-05 22:27:43,228 [INFO] adding 'executorch/backends/nxp/tests/test_linear_and_add_fusion.py' 2025-12-05T22:27:43.2382032Z 2025-12-05 22:27:43,228 [INFO] adding 'executorch/backends/nxp/tests/test_move_activation_before_concatenation.py' 2025-12-05T22:27:43.2382312Z 2025-12-05 22:27:43,229 [INFO] adding 'executorch/backends/nxp/tests/test_neutron_backend.py' 2025-12-05T22:27:43.2382637Z 2025-12-05 22:27:43,229 [INFO] adding 'executorch/backends/nxp/tests/test_neutron_backend_executor.py' 2025-12-05T22:27:43.2382948Z 2025-12-05 22:27:43,229 [INFO] adding 'executorch/backends/nxp/tests/test_neutron_converter_manager.py' 2025-12-05T22:27:43.2383244Z 2025-12-05 22:27:43,229 [INFO] adding 'executorch/backends/nxp/tests/test_node_format_inference.py' 2025-12-05T22:27:43.2383570Z 2025-12-05 22:27:43,230 [INFO] adding 'executorch/backends/nxp/tests/test_operator_selector.py' 2025-12-05T22:27:43.2383899Z 2025-12-05 22:27:43,230 [INFO] adding 'executorch/backends/nxp/tests/test_per_channel_conversion.py' 2025-12-05T22:27:43.2384232Z 2025-12-05 22:27:43,230 [INFO] adding 'executorch/backends/nxp/tests/test_qdq_clustering_conv.py' 2025-12-05T22:27:43.2384481Z 2025-12-05 22:27:43,231 [INFO] adding 'executorch/backends/nxp/tests/test_quantizer.py' 2025-12-05T22:27:43.2384826Z 2025-12-05 22:27:43,231 [INFO] adding 'executorch/backends/nxp/tests/test_removing_dead_code.py' 2025-12-05T22:27:43.2385181Z 2025-12-05 22:27:43,231 [INFO] adding 'executorch/backends/nxp/tests/test_removing_nodes_with_known_outputs.py' 2025-12-05T22:27:43.2385494Z 2025-12-05 22:27:43,232 [INFO] adding 'executorch/backends/nxp/tests/test_split_group_convolution.py' 2025-12-05T22:27:43.2385718Z 2025-12-05 22:27:43,232 [INFO] adding 'executorch/backends/nxp/tests/ir/__init__.py' 2025-12-05T22:27:43.2385985Z 2025-12-05 22:27:43,232 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/__init__.py' 2025-12-05T22:27:43.2386403Z 2025-12-05 22:27:43,232 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/__init__.py' 2025-12-05T22:27:43.2386859Z 2025-12-05 22:27:43,232 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_abs_converter.py' 2025-12-05T22:27:43.2387396Z 2025-12-05 22:27:43,233 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_adaptive_avg_pool2d_converter.py' 2025-12-05T22:27:43.2387900Z 2025-12-05 22:27:43,233 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_add_tensor_converter.py' 2025-12-05T22:27:43.2388302Z 2025-12-05 22:27:43,233 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_addmm_converter.py' 2025-12-05T22:27:43.2388795Z 2025-12-05 22:27:43,234 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_avg_pool2d_converter.py' 2025-12-05T22:27:43.2389204Z 2025-12-05 22:27:43,234 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_cat_converter.py' 2025-12-05T22:27:43.2389675Z 2025-12-05 22:27:43,234 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_clone_converter.py' 2025-12-05T22:27:43.2390190Z 2025-12-05 22:27:43,235 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_constant_pad_nd_converter.py' 2025-12-05T22:27:43.2390610Z 2025-12-05 22:27:43,235 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_conv_converter.py' 2025-12-05T22:27:43.2592146Z 2025-12-05 22:27:43,235 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_hardtanh_converter.py' 2025-12-05T22:27:43.2592589Z 2025-12-05 22:27:43,236 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_max_pool_2d_converter.py' 2025-12-05T22:27:43.2593168Z 2025-12-05 22:27:43,236 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_mean_dim_converter.py' 2025-12-05T22:27:43.2593557Z 2025-12-05 22:27:43,236 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_mm_converter.py' 2025-12-05T22:27:43.2594060Z 2025-12-05 22:27:43,237 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_permute_copy_converter.py' 2025-12-05T22:27:43.2594503Z 2025-12-05 22:27:43,237 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_relu_converter.py' 2025-12-05T22:27:43.2594923Z 2025-12-05 22:27:43,237 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_sigmoid_converter.py' 2025-12-05T22:27:43.2595333Z 2025-12-05 22:27:43,237 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_softmax_converter.py' 2025-12-05T22:27:43.2595813Z 2025-12-05 22:27:43,238 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_sub_tensor_converter.py' 2025-12-05T22:27:43.2596208Z 2025-12-05 22:27:43,238 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_tanh_converter.py' 2025-12-05T22:27:43.2596628Z 2025-12-05 22:27:43,238 [INFO] adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_view_copy_converter.py' 2025-12-05T22:27:43.2596928Z 2025-12-05 22:27:43,238 [INFO] adding 'executorch/backends/nxp/tests/ir/edge_passes/__init__.py' 2025-12-05T22:27:43.2597304Z 2025-12-05 22:27:43,239 [INFO] adding 'executorch/backends/nxp/tests/ir/edge_passes/test_remove_io_quant_ops_pass.py' 2025-12-05T22:27:43.2597514Z 2025-12-05 22:27:43,239 [INFO] adding 'executorch/backends/openvino/__init__.py' 2025-12-05T22:27:43.2597752Z 2025-12-05 22:27:43,239 [INFO] adding 'executorch/backends/openvino/partitioner.py' 2025-12-05T22:27:43.2597968Z 2025-12-05 22:27:43,240 [INFO] adding 'executorch/backends/openvino/preprocess.py' 2025-12-05T22:27:43.2598256Z 2025-12-05 22:27:43,240 [INFO] adding 'executorch/backends/openvino/quantizer/__init__.py' 2025-12-05T22:27:43.2598566Z 2025-12-05 22:27:43,240 [INFO] adding 'executorch/backends/openvino/quantizer/observers.py' 2025-12-05T22:27:43.2598826Z 2025-12-05 22:27:43,241 [INFO] adding 'executorch/backends/openvino/quantizer/quantizer.py' 2025-12-05T22:27:43.2599071Z 2025-12-05 22:27:43,241 [INFO] adding 'executorch/backends/openvino/tests/test_runner.py' 2025-12-05T22:27:43.2599462Z 2025-12-05 22:27:43,241 [INFO] adding 'executorch/backends/openvino/tests/models/test_classification.py' 2025-12-05T22:27:43.2599880Z 2025-12-05 22:27:43,242 [INFO] adding 'executorch/backends/openvino/tests/ops/base_openvino_op_test.py' 2025-12-05T22:27:43.2600130Z 2025-12-05 22:27:43,242 [INFO] adding 'executorch/backends/openvino/tests/ops/test_add.py' 2025-12-05T22:27:43.2600397Z 2025-12-05 22:27:43,242 [INFO] adding 'executorch/backends/openvino/tests/ops/test_addmm.py' 2025-12-05T22:27:43.2600662Z 2025-12-05 22:27:43,242 [INFO] adding 'executorch/backends/openvino/tests/ops/test_arange.py' 2025-12-05T22:27:43.2600943Z 2025-12-05 22:27:43,243 [INFO] adding 'executorch/backends/openvino/tests/ops/test_batch_norm.py' 2025-12-05T22:27:43.2601247Z 2025-12-05 22:27:43,243 [INFO] adding 'executorch/backends/openvino/tests/ops/test_convolution.py' 2025-12-05T22:27:43.2601500Z 2025-12-05 22:27:43,243 [INFO] adding 'executorch/backends/openvino/tests/ops/test_mean.py' 2025-12-05T22:27:43.2601769Z 2025-12-05 22:27:43,243 [INFO] adding 'executorch/backends/openvino/tests/ops/test_permute.py' 2025-12-05T22:27:43.2602051Z 2025-12-05 22:27:43,244 [INFO] adding 'executorch/backends/openvino/tests/ops/test_pooling.py' 2025-12-05T22:27:43.2602332Z 2025-12-05 22:27:43,244 [INFO] adding 'executorch/backends/openvino/tests/ops/test_unary_ops.py' 2025-12-05T22:27:43.2602583Z 2025-12-05 22:27:43,244 [INFO] adding 'executorch/backends/openvino/tests/ops/test_view.py' 2025-12-05T22:27:43.2602826Z 2025-12-05 22:27:43,244 [INFO] adding 'executorch/backends/qualcomm/__init__.py' 2025-12-05T22:27:43.2603071Z 2025-12-05 22:27:43,245 [INFO] adding 'executorch/backends/qualcomm/qnn_preprocess.py' 2025-12-05T22:27:43.2603307Z 2025-12-05 22:27:43,245 [INFO] adding 'executorch/backends/qualcomm/_passes/__init__.py' 2025-12-05T22:27:43.2603670Z 2025-12-05 22:27:43,245 [INFO] adding 'executorch/backends/qualcomm/_passes/annotate_adaptive_avg_pool1d.py' 2025-12-05T22:27:43.2603975Z 2025-12-05 22:27:43,246 [INFO] adding 'executorch/backends/qualcomm/_passes/annotate_quant_attrs.py' 2025-12-05T22:27:43.2604242Z 2025-12-05 22:27:43,246 [INFO] adding 'executorch/backends/qualcomm/_passes/annotate_stack.py' 2025-12-05T22:27:43.2604559Z 2025-12-05 22:27:43,246 [INFO] adding 'executorch/backends/qualcomm/_passes/annotate_unbind.py' 2025-12-05T22:27:43.2604911Z 2025-12-05 22:27:43,246 [INFO] adding 'executorch/backends/qualcomm/_passes/build_quant_io.py' 2025-12-05T22:27:43.2605196Z 2025-12-05 22:27:43,247 [INFO] adding 'executorch/backends/qualcomm/_passes/canonicalize_conv.py' 2025-12-05T22:27:43.2605553Z 2025-12-05 22:27:43,247 [INFO] adding 'executorch/backends/qualcomm/_passes/convert_bmm_to_matmul.py' 2025-12-05T22:27:43.2605867Z 2025-12-05 22:27:43,247 [INFO] adding 'executorch/backends/qualcomm/_passes/convert_linear_to_conv2d.py' 2025-12-05T22:27:43.2606169Z 2025-12-05 22:27:43,248 [INFO] adding 'executorch/backends/qualcomm/_passes/convert_square_to_pow.py' 2025-12-05T22:27:43.2606433Z 2025-12-05 22:27:43,248 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_any.py' 2025-12-05T22:27:43.2606751Z 2025-12-05 22:27:43,248 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_binary_alpha.py' 2025-12-05T22:27:43.2607029Z 2025-12-05 22:27:43,248 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_cdist.py' 2025-12-05T22:27:43.2607340Z 2025-12-05 22:27:43,249 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_col_im.py' 2025-12-05T22:27:43.2607646Z 2025-12-05 22:27:43,249 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_einsum.py' 2025-12-05T22:27:43.2607945Z 2025-12-05 22:27:43,249 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_expm1.py' 2025-12-05T22:27:43.2608249Z 2025-12-05 22:27:43,250 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_floor_divide.py' 2025-12-05T22:27:43.2608578Z 2025-12-05 22:27:43,250 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_glu.py' 2025-12-05T22:27:43.2608914Z 2025-12-05 22:27:43,250 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_linalg_vector_norm.py' 2025-12-05T22:27:43.2609208Z 2025-12-05 22:27:43,250 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_minmaxdim.py' 2025-12-05T22:27:43.2609591Z 2025-12-05 22:27:43,251 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_roll.py' 2025-12-05T22:27:43.2609893Z 2025-12-05 22:27:43,251 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_silu.py' 2025-12-05T22:27:43.2610195Z 2025-12-05 22:27:43,251 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_threshold.py' 2025-12-05T22:27:43.2610472Z 2025-12-05 22:27:43,251 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_triu.py' 2025-12-05T22:27:43.2610860Z 2025-12-05 22:27:43,252 [INFO] adding 'executorch/backends/qualcomm/_passes/decompose_wrap_with_autocast.py' 2025-12-05T22:27:43.2611202Z 2025-12-05 22:27:43,252 [INFO] adding 'executorch/backends/qualcomm/_passes/expand_broadcast_tensor_shape.py' 2025-12-05T22:27:43.2611515Z 2025-12-05 22:27:43,252 [INFO] adding 'executorch/backends/qualcomm/_passes/fixed_linear_keep_dim.py' 2025-12-05T22:27:43.2611757Z 2025-12-05 22:27:43,253 [INFO] adding 'executorch/backends/qualcomm/_passes/fold_qdq.py' 2025-12-05T22:27:43.2612093Z 2025-12-05 22:27:43,253 [INFO] adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_cast.py' 2025-12-05T22:27:43.2612464Z 2025-12-05 22:27:43,253 [INFO] adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_transpose.py' 2025-12-05T22:27:43.2612757Z 2025-12-05 22:27:43,254 [INFO] adding 'executorch/backends/qualcomm/_passes/i64_to_i32.py' 2025-12-05T22:27:43.2613017Z 2025-12-05 22:27:43,254 [INFO] adding 'executorch/backends/qualcomm/_passes/insert_io_qdq.py' 2025-12-05T22:27:43.2613393Z 2025-12-05 22:27:43,254 [INFO] adding 'executorch/backends/qualcomm/_passes/insert_requantize.py' 2025-12-05T22:27:43.2613729Z 2025-12-05 22:27:43,254 [INFO] adding 'executorch/backends/qualcomm/_passes/insert_reshape_for_reduce_ops.py' 2025-12-05T22:27:43.2614006Z 2025-12-05 22:27:43,255 [INFO] adding 'executorch/backends/qualcomm/_passes/layout_transform.py' 2025-12-05T22:27:43.2614356Z 2025-12-05 22:27:43,255 [INFO] adding 'executorch/backends/qualcomm/_passes/lift_constant_scalar_operands.py' 2025-12-05T22:27:43.2614633Z 2025-12-05 22:27:43,256 [INFO] adding 'executorch/backends/qualcomm/_passes/qnn_pass_manager.py' 2025-12-05T22:27:43.2614962Z 2025-12-05 22:27:43,256 [INFO] adding 'executorch/backends/qualcomm/_passes/recompose_pixel_unshuffle.py' 2025-12-05T22:27:43.2615282Z 2025-12-05 22:27:43,256 [INFO] adding 'executorch/backends/qualcomm/_passes/recompose_rms_norm.py' 2025-12-05T22:27:43.2615633Z 2025-12-05 22:27:43,257 [INFO] adding 'executorch/backends/qualcomm/_passes/reduce_dynamic_range.py' 2025-12-05T22:27:43.2615909Z 2025-12-05 22:27:43,257 [INFO] adding 'executorch/backends/qualcomm/_passes/remove_0d_tensor.py' 2025-12-05T22:27:43.2616242Z 2025-12-05 22:27:43,257 [INFO] adding 'executorch/backends/qualcomm/_passes/remove_redundancy.py' 2025-12-05T22:27:43.2616547Z 2025-12-05 22:27:43,257 [INFO] adding 'executorch/backends/qualcomm/_passes/replace_arange_args.py' 2025-12-05T22:27:43.2616836Z 2025-12-05 22:27:43,258 [INFO] adding 'executorch/backends/qualcomm/_passes/replace_inf_values.py' 2025-12-05T22:27:43.2617072Z 2025-12-05 22:27:43,258 [INFO] adding 'executorch/backends/qualcomm/_passes/seq_mse.py' 2025-12-05T22:27:43.2825986Z 2025-12-05 22:27:43,258 [INFO] adding 'executorch/backends/qualcomm/_passes/tag_quant_io.py' 2025-12-05T22:27:43.2826243Z 2025-12-05 22:27:43,259 [INFO] adding 'executorch/backends/qualcomm/_passes/utils.py' 2025-12-05T22:27:43.2826493Z 2025-12-05 22:27:43,259 [INFO] adding 'executorch/backends/qualcomm/builders/__init__.py' 2025-12-05T22:27:43.2826865Z 2025-12-05 22:27:43,260 [INFO] adding 'executorch/backends/qualcomm/builders/node_visitor.py' 2025-12-05T22:27:43.2827220Z 2025-12-05 22:27:43,260 [INFO] adding 'executorch/backends/qualcomm/builders/node_visitor_manager.py' 2025-12-05T22:27:43.2827456Z 2025-12-05 22:27:43,260 [INFO] adding 'executorch/backends/qualcomm/builders/op_abs.py' 2025-12-05T22:27:43.2828000Z 2025-12-05 22:27:43,260 [INFO] adding 'executorch/backends/qualcomm/builders/op_adaptive_avg_pool2d.py' 2025-12-05T22:27:43.2828411Z 2025-12-05 22:27:43,261 [INFO] adding 'executorch/backends/qualcomm/builders/op_adaptive_max_pool2d.py' 2025-12-05T22:27:43.2828705Z 2025-12-05 22:27:43,261 [INFO] adding 'executorch/backends/qualcomm/builders/op_add.py' 2025-12-05T22:27:43.2828981Z 2025-12-05 22:27:43,261 [INFO] adding 'executorch/backends/qualcomm/builders/op_amax.py' 2025-12-05T22:27:43.2829335Z 2025-12-05 22:27:43,262 [INFO] adding 'executorch/backends/qualcomm/builders/op_amin.py' 2025-12-05T22:27:43.2829632Z 2025-12-05 22:27:43,262 [INFO] adding 'executorch/backends/qualcomm/builders/op_and.py' 2025-12-05T22:27:43.2829894Z 2025-12-05 22:27:43,262 [INFO] adding 'executorch/backends/qualcomm/builders/op_arange.py' 2025-12-05T22:27:43.2830140Z 2025-12-05 22:27:43,262 [INFO] adding 'executorch/backends/qualcomm/builders/op_argmax.py' 2025-12-05T22:27:43.2830461Z 2025-12-05 22:27:43,263 [INFO] adding 'executorch/backends/qualcomm/builders/op_argmin.py' 2025-12-05T22:27:43.2830714Z 2025-12-05 22:27:43,263 [INFO] adding 'executorch/backends/qualcomm/builders/op_asin.py' 2025-12-05T22:27:43.2830950Z 2025-12-05 22:27:43,263 [INFO] adding 'executorch/backends/qualcomm/builders/op_atan.py' 2025-12-05T22:27:43.2831311Z 2025-12-05 22:27:43,263 [INFO] adding 'executorch/backends/qualcomm/builders/op_avg_pool2d.py' 2025-12-05T22:27:43.2831587Z 2025-12-05 22:27:43,264 [INFO] adding 'executorch/backends/qualcomm/builders/op_avg_pool3d.py' 2025-12-05T22:27:43.2831867Z 2025-12-05 22:27:43,264 [INFO] adding 'executorch/backends/qualcomm/builders/op_batch_norm.py' 2025-12-05T22:27:43.2832269Z 2025-12-05 22:27:43,264 [INFO] adding 'executorch/backends/qualcomm/builders/op_binary.py' 2025-12-05T22:27:43.2832578Z 2025-12-05 22:27:43,264 [INFO] adding 'executorch/backends/qualcomm/builders/op_bmm.py' 2025-12-05T22:27:43.2832810Z 2025-12-05 22:27:43,265 [INFO] adding 'executorch/backends/qualcomm/builders/op_cat.py' 2025-12-05T22:27:43.2833050Z 2025-12-05 22:27:43,265 [INFO] adding 'executorch/backends/qualcomm/builders/op_ceil.py' 2025-12-05T22:27:43.2833368Z 2025-12-05 22:27:43,265 [INFO] adding 'executorch/backends/qualcomm/builders/op_clamp.py' 2025-12-05T22:27:43.2833615Z 2025-12-05 22:27:43,266 [INFO] adding 'executorch/backends/qualcomm/builders/op_conv.py' 2025-12-05T22:27:43.2833855Z 2025-12-05 22:27:43,266 [INFO] adding 'executorch/backends/qualcomm/builders/op_copy.py' 2025-12-05T22:27:43.2834090Z 2025-12-05 22:27:43,266 [INFO] adding 'executorch/backends/qualcomm/builders/op_cos.py' 2025-12-05T22:27:43.2834356Z 2025-12-05 22:27:43,266 [INFO] adding 'executorch/backends/qualcomm/builders/op_cum_sum.py' 2025-12-05T22:27:43.2834616Z 2025-12-05 22:27:43,266 [INFO] adding 'executorch/backends/qualcomm/builders/op_custom_op.py' 2025-12-05T22:27:43.2835065Z 2025-12-05 22:27:43,267 [INFO] adding 'executorch/backends/qualcomm/builders/op_depth_to_space.py' 2025-12-05T22:27:43.2835403Z 2025-12-05 22:27:43,267 [INFO] adding 'executorch/backends/qualcomm/builders/op_dequantize.py' 2025-12-05T22:27:43.2835638Z 2025-12-05 22:27:43,267 [INFO] adding 'executorch/backends/qualcomm/builders/op_div.py' 2025-12-05T22:27:43.2835883Z 2025-12-05 22:27:43,267 [INFO] adding 'executorch/backends/qualcomm/builders/op_elu.py' 2025-12-05T22:27:43.2836216Z 2025-12-05 22:27:43,268 [INFO] adding 'executorch/backends/qualcomm/builders/op_embedding.py' 2025-12-05T22:27:43.2836448Z 2025-12-05 22:27:43,268 [INFO] adding 'executorch/backends/qualcomm/builders/op_eq.py' 2025-12-05T22:27:43.2836679Z 2025-12-05 22:27:43,268 [INFO] adding 'executorch/backends/qualcomm/builders/op_exp.py' 2025-12-05T22:27:43.2836940Z 2025-12-05 22:27:43,268 [INFO] adding 'executorch/backends/qualcomm/builders/op_expand.py' 2025-12-05T22:27:43.2837175Z 2025-12-05 22:27:43,269 [INFO] adding 'executorch/backends/qualcomm/builders/op_flip.py' 2025-12-05T22:27:43.2837519Z 2025-12-05 22:27:43,269 [INFO] adding 'executorch/backends/qualcomm/builders/op_floor.py' 2025-12-05T22:27:43.2837910Z 2025-12-05 22:27:43,269 [INFO] adding 'executorch/backends/qualcomm/builders/op_full.py' 2025-12-05T22:27:43.2838175Z 2025-12-05 22:27:43,269 [INFO] adding 'executorch/backends/qualcomm/builders/op_full_like.py' 2025-12-05T22:27:43.2838423Z 2025-12-05 22:27:43,270 [INFO] adding 'executorch/backends/qualcomm/builders/op_gather.py' 2025-12-05T22:27:43.2838745Z 2025-12-05 22:27:43,270 [INFO] adding 'executorch/backends/qualcomm/builders/op_ge.py' 2025-12-05T22:27:43.2838989Z 2025-12-05 22:27:43,270 [INFO] adding 'executorch/backends/qualcomm/builders/op_gelu.py' 2025-12-05T22:27:43.2839297Z 2025-12-05 22:27:43,270 [INFO] adding 'executorch/backends/qualcomm/builders/op_grid_sampler_2d.py' 2025-12-05T22:27:43.2839563Z 2025-12-05 22:27:43,271 [INFO] adding 'executorch/backends/qualcomm/builders/op_group_norm.py' 2025-12-05T22:27:43.2839794Z 2025-12-05 22:27:43,271 [INFO] adding 'executorch/backends/qualcomm/builders/op_gt.py' 2025-12-05T22:27:43.2840210Z 2025-12-05 22:27:43,271 [INFO] adding 'executorch/backends/qualcomm/builders/op_hardsigmoid.py' 2025-12-05T22:27:43.2840523Z 2025-12-05 22:27:43,271 [INFO] adding 'executorch/backends/qualcomm/builders/op_hardswish.py' 2025-12-05T22:27:43.2840793Z 2025-12-05 22:27:43,272 [INFO] adding 'executorch/backends/qualcomm/builders/op_hardtanh.py' 2025-12-05T22:27:43.2841082Z 2025-12-05 22:27:43,272 [INFO] adding 'executorch/backends/qualcomm/builders/op_index.py' 2025-12-05T22:27:43.2841433Z 2025-12-05 22:27:43,273 [INFO] adding 'executorch/backends/qualcomm/builders/op_index_put.py' 2025-12-05T22:27:43.2841748Z 2025-12-05 22:27:43,273 [INFO] adding 'executorch/backends/qualcomm/builders/op_index_select.py' 2025-12-05T22:27:43.2842030Z 2025-12-05 22:27:43,273 [INFO] adding 'executorch/backends/qualcomm/builders/op_instance_norm.py' 2025-12-05T22:27:43.2842308Z 2025-12-05 22:27:43,273 [INFO] adding 'executorch/backends/qualcomm/builders/op_layer_norm.py' 2025-12-05T22:27:43.2842540Z 2025-12-05 22:27:43,274 [INFO] adding 'executorch/backends/qualcomm/builders/op_le.py' 2025-12-05T22:27:43.2842832Z 2025-12-05 22:27:43,274 [INFO] adding 'executorch/backends/qualcomm/builders/op_linear.py' 2025-12-05T22:27:43.2843159Z 2025-12-05 22:27:43,274 [INFO] adding 'executorch/backends/qualcomm/builders/op_log.py' 2025-12-05T22:27:43.2843499Z 2025-12-05 22:27:43,274 [INFO] adding 'executorch/backends/qualcomm/builders/op_log_softmax.py' 2025-12-05T22:27:43.2843772Z 2025-12-05 22:27:43,275 [INFO] adding 'executorch/backends/qualcomm/builders/op_logical_not.py' 2025-12-05T22:27:43.2844042Z 2025-12-05 22:27:43,275 [INFO] adding 'executorch/backends/qualcomm/builders/op_lt.py' 2025-12-05T22:27:43.2844332Z 2025-12-05 22:27:43,275 [INFO] adding 'executorch/backends/qualcomm/builders/op_matmul.py' 2025-12-05T22:27:43.2844565Z 2025-12-05 22:27:43,275 [INFO] adding 'executorch/backends/qualcomm/builders/op_max.py' 2025-12-05T22:27:43.2844830Z 2025-12-05 22:27:43,276 [INFO] adding 'executorch/backends/qualcomm/builders/op_max_dim.py' 2025-12-05T22:27:43.2845154Z 2025-12-05 22:27:43,276 [INFO] adding 'executorch/backends/qualcomm/builders/op_max_pool2d.py' 2025-12-05T22:27:43.2845481Z 2025-12-05 22:27:43,276 [INFO] adding 'executorch/backends/qualcomm/builders/op_mean_dim.py' 2025-12-05T22:27:43.2845785Z 2025-12-05 22:27:43,277 [INFO] adding 'executorch/backends/qualcomm/builders/op_min.py' 2025-12-05T22:27:43.2846035Z 2025-12-05 22:27:43,277 [INFO] adding 'executorch/backends/qualcomm/builders/op_min_dim.py' 2025-12-05T22:27:43.2846284Z 2025-12-05 22:27:43,277 [INFO] adding 'executorch/backends/qualcomm/builders/op_mul.py' 2025-12-05T22:27:43.2846572Z 2025-12-05 22:27:43,277 [INFO] adding 'executorch/backends/qualcomm/builders/op_ne.py' 2025-12-05T22:27:43.2846817Z 2025-12-05 22:27:43,278 [INFO] adding 'executorch/backends/qualcomm/builders/op_neg.py' 2025-12-05T22:27:43.2847046Z 2025-12-05 22:27:43,278 [INFO] adding 'executorch/backends/qualcomm/builders/op_or.py' 2025-12-05T22:27:43.2847349Z 2025-12-05 22:27:43,278 [INFO] adding 'executorch/backends/qualcomm/builders/op_pad.py' 2025-12-05T22:27:43.2847694Z 2025-12-05 22:27:43,278 [INFO] adding 'executorch/backends/qualcomm/builders/op_pow.py' 2025-12-05T22:27:43.2848000Z 2025-12-05 22:27:43,279 [INFO] adding 'executorch/backends/qualcomm/builders/op_prelu.py' 2025-12-05T22:27:43.2848283Z 2025-12-05 22:27:43,279 [INFO] adding 'executorch/backends/qualcomm/builders/op_quantize.py' 2025-12-05T22:27:43.2848535Z 2025-12-05 22:27:43,279 [INFO] adding 'executorch/backends/qualcomm/builders/op_relu.py' 2025-12-05T22:27:43.2848850Z 2025-12-05 22:27:43,279 [INFO] adding 'executorch/backends/qualcomm/builders/op_repeat.py' 2025-12-05T22:27:43.2849110Z 2025-12-05 22:27:43,280 [INFO] adding 'executorch/backends/qualcomm/builders/op_reshape.py' 2025-12-05T22:27:43.2849370Z 2025-12-05 22:27:43,280 [INFO] adding 'executorch/backends/qualcomm/builders/op_resize.py' 2025-12-05T22:27:43.2849625Z 2025-12-05 22:27:43,280 [INFO] adding 'executorch/backends/qualcomm/builders/op_rms_norm.py' 2025-12-05T22:27:43.2849870Z 2025-12-05 22:27:43,280 [INFO] adding 'executorch/backends/qualcomm/builders/op_round.py' 2025-12-05T22:27:43.2850128Z 2025-12-05 22:27:43,281 [INFO] adding 'executorch/backends/qualcomm/builders/op_rsqrt.py' 2025-12-05T22:27:43.2850592Z 2025-12-05 22:27:43,281 [INFO] adding 'executorch/backends/qualcomm/builders/op_scalar_tensor.py' 2025-12-05T22:27:43.2850934Z 2025-12-05 22:27:43,281 [INFO] adding 'executorch/backends/qualcomm/builders/op_select_copy.py' 2025-12-05T22:27:43.2851201Z 2025-12-05 22:27:43,281 [INFO] adding 'executorch/backends/qualcomm/builders/op_sigmoid.py' 2025-12-05T22:27:43.3178227Z 2025-12-05 22:27:43,282 [INFO] adding 'executorch/backends/qualcomm/builders/op_sign.py' 2025-12-05T22:27:43.3178581Z 2025-12-05 22:27:43,282 [INFO] adding 'executorch/backends/qualcomm/builders/op_sin.py' 2025-12-05T22:27:43.3178993Z 2025-12-05 22:27:43,282 [INFO] adding 'executorch/backends/qualcomm/builders/op_skip_ops.py' 2025-12-05T22:27:43.3179424Z 2025-12-05 22:27:43,282 [INFO] adding 'executorch/backends/qualcomm/builders/op_slice_copy.py' 2025-12-05T22:27:43.3179714Z 2025-12-05 22:27:43,283 [INFO] adding 'executorch/backends/qualcomm/builders/op_slice_scatter.py' 2025-12-05T22:27:43.3179991Z 2025-12-05 22:27:43,283 [INFO] adding 'executorch/backends/qualcomm/builders/op_softmax.py' 2025-12-05T22:27:43.3180361Z 2025-12-05 22:27:43,283 [INFO] adding 'executorch/backends/qualcomm/builders/op_space_to_depth.py' 2025-12-05T22:27:43.3180662Z 2025-12-05 22:27:43,284 [INFO] adding 'executorch/backends/qualcomm/builders/op_split_with_sizes.py' 2025-12-05T22:27:43.3180925Z 2025-12-05 22:27:43,284 [INFO] adding 'executorch/backends/qualcomm/builders/op_sqrt.py' 2025-12-05T22:27:43.3181233Z 2025-12-05 22:27:43,284 [INFO] adding 'executorch/backends/qualcomm/builders/op_squeeze.py' 2025-12-05T22:27:43.3181631Z 2025-12-05 22:27:43,284 [INFO] adding 'executorch/backends/qualcomm/builders/op_stack.py' 2025-12-05T22:27:43.3182056Z 2025-12-05 22:27:43,285 [INFO] adding 'executorch/backends/qualcomm/builders/op_sub.py' 2025-12-05T22:27:43.3182376Z 2025-12-05 22:27:43,285 [INFO] adding 'executorch/backends/qualcomm/builders/op_sum_int_list.py' 2025-12-05T22:27:43.3182680Z 2025-12-05 22:27:43,285 [INFO] adding 'executorch/backends/qualcomm/builders/op_tanh.py' 2025-12-05T22:27:43.3182928Z 2025-12-05 22:27:43,285 [INFO] adding 'executorch/backends/qualcomm/builders/op_to.py' 2025-12-05T22:27:43.3183187Z 2025-12-05 22:27:43,286 [INFO] adding 'executorch/backends/qualcomm/builders/op_topk.py' 2025-12-05T22:27:43.3183562Z 2025-12-05 22:27:43,286 [INFO] adding 'executorch/backends/qualcomm/builders/op_transpose.py' 2025-12-05T22:27:43.3183944Z 2025-12-05 22:27:43,286 [INFO] adding 'executorch/backends/qualcomm/builders/op_unbind.py' 2025-12-05T22:27:43.3184248Z 2025-12-05 22:27:43,286 [INFO] adding 'executorch/backends/qualcomm/builders/op_unsqueeze.py' 2025-12-05T22:27:43.3184781Z 2025-12-05 22:27:43,287 [INFO] adding 'executorch/backends/qualcomm/builders/op_upsample_bilinear2d.py' 2025-12-05T22:27:43.3185102Z 2025-12-05 22:27:43,287 [INFO] adding 'executorch/backends/qualcomm/builders/op_upsample_nearest2d.py' 2025-12-05T22:27:43.3185360Z 2025-12-05 22:27:43,287 [INFO] adding 'executorch/backends/qualcomm/builders/op_where.py' 2025-12-05T22:27:43.3185677Z 2025-12-05 22:27:43,287 [INFO] adding 'executorch/backends/qualcomm/builders/op_xor.py' 2025-12-05T22:27:43.3186099Z 2025-12-05 22:27:43,288 [INFO] adding 'executorch/backends/qualcomm/builders/qnn_constants.py' 2025-12-05T22:27:43.3186411Z 2025-12-05 22:27:43,288 [INFO] adding 'executorch/backends/qualcomm/builders/utils.py' 2025-12-05T22:27:43.3186646Z 2025-12-05 22:27:43,289 [INFO] adding 'executorch/backends/qualcomm/debugger/utils.py' 2025-12-05T22:27:43.3186915Z 2025-12-05 22:27:43,289 [INFO] adding 'executorch/backends/qualcomm/partition/common_defs.py' 2025-12-05T22:27:43.3187280Z 2025-12-05 22:27:43,290 [INFO] adding 'executorch/backends/qualcomm/partition/qnn_partitioner.py' 2025-12-05T22:27:43.3187576Z 2025-12-05 22:27:43,290 [INFO] adding 'executorch/backends/qualcomm/partition/utils.py' 2025-12-05T22:27:43.3187874Z 2025-12-05 22:27:43,291 [INFO] adding 'executorch/backends/qualcomm/quantizer/annotators.py' 2025-12-05T22:27:43.3188393Z 2025-12-05 22:27:43,291 [INFO] adding 'executorch/backends/qualcomm/quantizer/custom_annotation.py' 2025-12-05T22:27:43.3188732Z 2025-12-05 22:27:43,292 [INFO] adding 'executorch/backends/qualcomm/quantizer/qconfig.py' 2025-12-05T22:27:43.3189042Z 2025-12-05 22:27:43,293 [INFO] adding 'executorch/backends/qualcomm/quantizer/quant_recipe.py' 2025-12-05T22:27:43.3189384Z 2025-12-05 22:27:43,293 [INFO] adding 'executorch/backends/qualcomm/quantizer/quantizer.py' 2025-12-05T22:27:43.3189795Z 2025-12-05 22:27:43,293 [INFO] adding 'executorch/backends/qualcomm/quantizer/observers/concat_observer.py' 2025-12-05T22:27:43.3190262Z 2025-12-05 22:27:43,294 [INFO] adding 'executorch/backends/qualcomm/quantizer/observers/per_block_param_observer.py' 2025-12-05T22:27:43.3190726Z 2025-12-05 22:27:43,294 [INFO] adding 'executorch/backends/qualcomm/quantizer/observers/per_channel_param_observer.py' 2025-12-05T22:27:43.3190985Z 2025-12-05 22:27:43,294 [INFO] adding 'executorch/backends/qualcomm/recipes/__init__.py' 2025-12-05T22:27:43.3191363Z 2025-12-05 22:27:43,295 [INFO] adding 'executorch/backends/qualcomm/recipes/qnn_recipe_provider.py' 2025-12-05T22:27:43.3191647Z 2025-12-05 22:27:43,295 [INFO] adding 'executorch/backends/qualcomm/recipes/qnn_recipe_types.py' 2025-12-05T22:27:43.3191943Z 2025-12-05 22:27:43,296 [INFO] adding 'executorch/backends/qualcomm/scripts/download_qnn_sdk.py' 2025-12-05T22:27:43.3192346Z 2025-12-05 22:27:43,296 [INFO] adding 'executorch/backends/qualcomm/serialization/qc_compiler_spec.fbs' 2025-12-05T22:27:43.3192741Z 2025-12-05 22:27:43,296 [INFO] adding 'executorch/backends/qualcomm/serialization/qc_schema.py' 2025-12-05T22:27:43.3193132Z 2025-12-05 22:27:43,297 [INFO] adding 'executorch/backends/qualcomm/serialization/qc_schema_serialize.py' 2025-12-05T22:27:43.3193357Z 2025-12-05 22:27:43,298 [INFO] adding 'executorch/backends/qualcomm/tests/models.py' 2025-12-05T22:27:43.3193677Z 2025-12-05 22:27:43,298 [INFO] adding 'executorch/backends/qualcomm/tests/test_passes.py' 2025-12-05T22:27:43.3193972Z 2025-12-05 22:27:43,304 [INFO] adding 'executorch/backends/qualcomm/tests/test_qnn_delegate.py' 2025-12-05T22:27:43.3194230Z 2025-12-05 22:27:43,305 [INFO] adding 'executorch/backends/qualcomm/tests/tester.py' 2025-12-05T22:27:43.3194490Z 2025-12-05 22:27:43,306 [INFO] adding 'executorch/backends/qualcomm/tests/utils.py' 2025-12-05T22:27:43.3194810Z 2025-12-05 22:27:43,306 [INFO] adding 'executorch/backends/qualcomm/utils/constants.py' 2025-12-05T22:27:43.3195093Z 2025-12-05 22:27:43,308 [INFO] adding 'executorch/backends/qualcomm/utils/utils.py' 2025-12-05T22:27:43.3195324Z 2025-12-05 22:27:43,308 [INFO] adding 'executorch/backends/samsung/enn_preprocess.py' 2025-12-05T22:27:43.3195722Z 2025-12-05 22:27:43,308 [INFO] adding 'executorch/backends/samsung/_passes/annotate_qparams.py' 2025-12-05T22:27:43.3196073Z 2025-12-05 22:27:43,309 [INFO] adding 'executorch/backends/samsung/_passes/annotate_scalar_parameters.py' 2025-12-05T22:27:43.3196417Z 2025-12-05 22:27:43,309 [INFO] adding 'executorch/backends/samsung/_passes/conv1d_to_conv2d.py' 2025-12-05T22:27:43.3196757Z 2025-12-05 22:27:43,309 [INFO] adding 'executorch/backends/samsung/_passes/customized_constant_prop.py' 2025-12-05T22:27:43.3197091Z 2025-12-05 22:27:43,309 [INFO] adding 'executorch/backends/samsung/_passes/fold_qdq.py' 2025-12-05T22:27:43.3197388Z 2025-12-05 22:27:43,310 [INFO] adding 'executorch/backends/samsung/_passes/fuse_conv_act.py' 2025-12-05T22:27:43.3197646Z 2025-12-05 22:27:43,310 [INFO] adding 'executorch/backends/samsung/_passes/insert_qdq.py' 2025-12-05T22:27:43.3198000Z 2025-12-05 22:27:43,310 [INFO] adding 'executorch/backends/samsung/_passes/remove_useless_ops.py' 2025-12-05T22:27:43.3198286Z 2025-12-05 22:27:43,311 [INFO] adding 'executorch/backends/samsung/_passes/replace_scalar_ops.py' 2025-12-05T22:27:43.3198518Z 2025-12-05 22:27:43,311 [INFO] adding 'executorch/backends/samsung/_passes/utils.py' 2025-12-05T22:27:43.3198755Z 2025-12-05 22:27:43,311 [INFO] adding 'executorch/backends/samsung/builders/__init__.py' 2025-12-05T22:27:43.3199056Z 2025-12-05 22:27:43,311 [INFO] adding 'executorch/backends/samsung/builders/node_visitor.py' 2025-12-05T22:27:43.3199340Z 2025-12-05 22:27:43,312 [INFO] adding 'executorch/backends/samsung/builders/op_add.py' 2025-12-05T22:27:43.3199750Z 2025-12-05 22:27:43,312 [INFO] adding 'executorch/backends/samsung/builders/op_avg_pool2d.py' 2025-12-05T22:27:43.3200132Z 2025-12-05 22:27:43,312 [INFO] adding 'executorch/backends/samsung/builders/op_batch_norm.py' 2025-12-05T22:27:43.3200383Z 2025-12-05 22:27:43,313 [INFO] adding 'executorch/backends/samsung/builders/op_bmm.py' 2025-12-05T22:27:43.3200627Z 2025-12-05 22:27:43,313 [INFO] adding 'executorch/backends/samsung/builders/op_cat.py' 2025-12-05T22:27:43.3200898Z 2025-12-05 22:27:43,313 [INFO] adding 'executorch/backends/samsung/builders/op_clamp.py' 2025-12-05T22:27:43.3201304Z 2025-12-05 22:27:43,313 [INFO] adding 'executorch/backends/samsung/builders/op_constant_pad_nd.py' 2025-12-05T22:27:43.3201569Z 2025-12-05 22:27:43,314 [INFO] adding 'executorch/backends/samsung/builders/op_conv2d.py' 2025-12-05T22:27:43.3201951Z 2025-12-05 22:27:43,314 [INFO] adding 'executorch/backends/samsung/builders/op_dequantize.py' 2025-12-05T22:27:43.3202183Z 2025-12-05 22:27:43,314 [INFO] adding 'executorch/backends/samsung/builders/op_div.py' 2025-12-05T22:27:43.3202456Z 2025-12-05 22:27:43,314 [INFO] adding 'executorch/backends/samsung/builders/op_embedding.py' 2025-12-05T22:27:43.3202798Z 2025-12-05 22:27:43,315 [INFO] adding 'executorch/backends/samsung/builders/op_expand_copy.py' 2025-12-05T22:27:43.3203113Z 2025-12-05 22:27:43,315 [INFO] adding 'executorch/backends/samsung/builders/op_gelu.py' 2025-12-05T22:27:43.3203422Z 2025-12-05 22:27:43,315 [INFO] adding 'executorch/backends/samsung/builders/op_getitem.py' 2025-12-05T22:27:43.3203776Z 2025-12-05 22:27:43,315 [INFO] adding 'executorch/backends/samsung/builders/op_hardsigmoid.py' 2025-12-05T22:27:43.3204037Z 2025-12-05 22:27:43,315 [INFO] adding 'executorch/backends/samsung/builders/op_hardswish.py' 2025-12-05T22:27:43.3204324Z 2025-12-05 22:27:43,316 [INFO] adding 'executorch/backends/samsung/builders/op_hardtanh.py' 2025-12-05T22:27:43.3204636Z 2025-12-05 22:27:43,316 [INFO] adding 'executorch/backends/samsung/builders/op_layer_norm.py' 2025-12-05T22:27:43.3204898Z 2025-12-05 22:27:43,316 [INFO] adding 'executorch/backends/samsung/builders/op_leaky_relu.py' 2025-12-05T22:27:43.3205218Z 2025-12-05 22:27:43,316 [INFO] adding 'executorch/backends/samsung/builders/op_linear.py' 2025-12-05T22:27:43.3205507Z 2025-12-05 22:27:43,317 [INFO] adding 'executorch/backends/samsung/builders/op_log_softmax.py' 2025-12-05T22:27:43.3371455Z 2025-12-05 22:27:43,317 [INFO] adding 'executorch/backends/samsung/builders/op_max_pool2d.py' 2025-12-05T22:27:43.3371954Z 2025-12-05 22:27:43,317 [INFO] adding 'executorch/backends/samsung/builders/op_maximum.py' 2025-12-05T22:27:43.3372213Z 2025-12-05 22:27:43,317 [INFO] adding 'executorch/backends/samsung/builders/op_mean_dim.py' 2025-12-05T22:27:43.3372520Z 2025-12-05 22:27:43,318 [INFO] adding 'executorch/backends/samsung/builders/op_minimum.py' 2025-12-05T22:27:43.3372781Z 2025-12-05 22:27:43,318 [INFO] adding 'executorch/backends/samsung/builders/op_mul.py' 2025-12-05T22:27:43.3373066Z 2025-12-05 22:27:43,318 [INFO] adding 'executorch/backends/samsung/builders/op_permute.py' 2025-12-05T22:27:43.3373444Z 2025-12-05 22:27:43,318 [INFO] adding 'executorch/backends/samsung/builders/op_pixel_shuffle.py' 2025-12-05T22:27:43.3373713Z 2025-12-05 22:27:43,319 [INFO] adding 'executorch/backends/samsung/builders/op_quantize.py' 2025-12-05T22:27:43.3373954Z 2025-12-05 22:27:43,319 [INFO] adding 'executorch/backends/samsung/builders/op_relu.py' 2025-12-05T22:27:43.3374202Z 2025-12-05 22:27:43,319 [INFO] adding 'executorch/backends/samsung/builders/op_reshape.py' 2025-12-05T22:27:43.3374452Z 2025-12-05 22:27:43,319 [INFO] adding 'executorch/backends/samsung/builders/op_rsqrt.py' 2025-12-05T22:27:43.3374847Z 2025-12-05 22:27:43,319 [INFO] adding 'executorch/backends/samsung/builders/op_select.py' 2025-12-05T22:27:43.3375112Z 2025-12-05 22:27:43,320 [INFO] adding 'executorch/backends/samsung/builders/op_slice_copy.py' 2025-12-05T22:27:43.3375472Z 2025-12-05 22:27:43,320 [INFO] adding 'executorch/backends/samsung/builders/op_softmax.py' 2025-12-05T22:27:43.3375778Z 2025-12-05 22:27:43,320 [INFO] adding 'executorch/backends/samsung/builders/op_sqrt.py' 2025-12-05T22:27:43.3376025Z 2025-12-05 22:27:43,320 [INFO] adding 'executorch/backends/samsung/builders/op_squeeze.py' 2025-12-05T22:27:43.3376266Z 2025-12-05 22:27:43,320 [INFO] adding 'executorch/backends/samsung/builders/op_sub.py' 2025-12-05T22:27:43.3376514Z 2025-12-05 22:27:43,321 [INFO] adding 'executorch/backends/samsung/builders/op_to_copy.py' 2025-12-05T22:27:43.3376774Z 2025-12-05 22:27:43,321 [INFO] adding 'executorch/backends/samsung/builders/op_unsqueeze.py' 2025-12-05T22:27:43.3377090Z 2025-12-05 22:27:43,321 [INFO] adding 'executorch/backends/samsung/builders/op_upsample_bilinear2d.py' 2025-12-05T22:27:43.3377473Z 2025-12-05 22:27:43,322 [INFO] adding 'executorch/backends/samsung/builders/op_upsample_nearest2d.py' 2025-12-05T22:27:43.3377704Z 2025-12-05 22:27:43,322 [INFO] adding 'executorch/backends/samsung/builders/utils.py' 2025-12-05T22:27:43.3378090Z 2025-12-05 22:27:43,322 [INFO] adding 'executorch/backends/samsung/partition/enn_partitioner.py' 2025-12-05T22:27:43.3378351Z 2025-12-05 22:27:43,322 [INFO] adding 'executorch/backends/samsung/quantizer/__init__.py' 2025-12-05T22:27:43.3378599Z 2025-12-05 22:27:43,323 [INFO] adding 'executorch/backends/samsung/quantizer/annotator.py' 2025-12-05T22:27:43.3378842Z 2025-12-05 22:27:43,323 [INFO] adding 'executorch/backends/samsung/quantizer/qconfig.py' 2025-12-05T22:27:43.3379101Z 2025-12-05 22:27:43,324 [INFO] adding 'executorch/backends/samsung/quantizer/quantizer.py' 2025-12-05T22:27:43.3379405Z 2025-12-05 22:27:43,324 [INFO] adding 'executorch/backends/samsung/serialization/compile_options.py' 2025-12-05T22:27:43.3379736Z 2025-12-05 22:27:43,324 [INFO] adding 'executorch/backends/samsung/serialization/compile_options_def.fbs' 2025-12-05T22:27:43.3380126Z 2025-12-05 22:27:43,324 [INFO] adding 'executorch/backends/samsung/serialization/enn_graph_schema.py' 2025-12-05T22:27:43.3380423Z 2025-12-05 22:27:43,324 [INFO] adding 'executorch/backends/samsung/test/ops/test_add.py' 2025-12-05T22:27:43.3380738Z 2025-12-05 22:27:43,325 [INFO] adding 'executorch/backends/samsung/test/ops/test_avg_pool2d.py' 2025-12-05T22:27:43.3381028Z 2025-12-05 22:27:43,325 [INFO] adding 'executorch/backends/samsung/test/ops/test_batch_norm.py' 2025-12-05T22:27:43.3381341Z 2025-12-05 22:27:43,325 [INFO] adding 'executorch/backends/samsung/test/ops/test_bmm.py' 2025-12-05T22:27:43.3381582Z 2025-12-05 22:27:43,325 [INFO] adding 'executorch/backends/samsung/test/ops/test_cat.py' 2025-12-05T22:27:43.3381840Z 2025-12-05 22:27:43,325 [INFO] adding 'executorch/backends/samsung/test/ops/test_clamp.py' 2025-12-05T22:27:43.3382139Z 2025-12-05 22:27:43,326 [INFO] adding 'executorch/backends/samsung/test/ops/test_constant_pad_nd.py' 2025-12-05T22:27:43.3382394Z 2025-12-05 22:27:43,326 [INFO] adding 'executorch/backends/samsung/test/ops/test_conv2d.py' 2025-12-05T22:27:43.3382649Z 2025-12-05 22:27:43,326 [INFO] adding 'executorch/backends/samsung/test/ops/test_div.py' 2025-12-05T22:27:43.3382919Z 2025-12-05 22:27:43,326 [INFO] adding 'executorch/backends/samsung/test/ops/test_embedding.py' 2025-12-05T22:27:43.3383197Z 2025-12-05 22:27:43,326 [INFO] adding 'executorch/backends/samsung/test/ops/test_expand_copy.py' 2025-12-05T22:27:43.3383445Z 2025-12-05 22:27:43,327 [INFO] adding 'executorch/backends/samsung/test/ops/test_gelu.py' 2025-12-05T22:27:43.3383804Z 2025-12-05 22:27:43,327 [INFO] adding 'executorch/backends/samsung/test/ops/test_leaky_relu.py' 2025-12-05T22:27:43.3384059Z 2025-12-05 22:27:43,327 [INFO] adding 'executorch/backends/samsung/test/ops/test_linear.py' 2025-12-05T22:27:43.3384501Z 2025-12-05 22:27:43,327 [INFO] adding 'executorch/backends/samsung/test/ops/test_log_softmax.py' 2025-12-05T22:27:43.3384793Z 2025-12-05 22:27:43,327 [INFO] adding 'executorch/backends/samsung/test/ops/test_max_pool2d.py' 2025-12-05T22:27:43.3385056Z 2025-12-05 22:27:43,328 [INFO] adding 'executorch/backends/samsung/test/ops/test_mean_dim.py' 2025-12-05T22:27:43.3385351Z 2025-12-05 22:27:43,328 [INFO] adding 'executorch/backends/samsung/test/ops/test_minimum.py' 2025-12-05T22:27:43.3385604Z 2025-12-05 22:27:43,328 [INFO] adding 'executorch/backends/samsung/test/ops/test_mul.py' 2025-12-05T22:27:43.3385863Z 2025-12-05 22:27:43,328 [INFO] adding 'executorch/backends/samsung/test/ops/test_permute.py' 2025-12-05T22:27:43.3386157Z 2025-12-05 22:27:43,328 [INFO] adding 'executorch/backends/samsung/test/ops/test_pixel_shuffle.py' 2025-12-05T22:27:43.3386415Z 2025-12-05 22:27:43,329 [INFO] adding 'executorch/backends/samsung/test/ops/test_relu.py' 2025-12-05T22:27:43.3386671Z 2025-12-05 22:27:43,329 [INFO] adding 'executorch/backends/samsung/test/ops/test_reshape.py' 2025-12-05T22:27:43.3386914Z 2025-12-05 22:27:43,329 [INFO] adding 'executorch/backends/samsung/test/ops/test_rsqrt.py' 2025-12-05T22:27:43.3387178Z 2025-12-05 22:27:43,329 [INFO] adding 'executorch/backends/samsung/test/ops/test_select.py' 2025-12-05T22:27:43.3387525Z 2025-12-05 22:27:43,329 [INFO] adding 'executorch/backends/samsung/test/ops/test_slice_copy.py' 2025-12-05T22:27:43.3387784Z 2025-12-05 22:27:43,330 [INFO] adding 'executorch/backends/samsung/test/ops/test_softmax.py' 2025-12-05T22:27:43.3388137Z 2025-12-05 22:27:43,330 [INFO] adding 'executorch/backends/samsung/test/ops/test_sqrt.py' 2025-12-05T22:27:43.3388401Z 2025-12-05 22:27:43,330 [INFO] adding 'executorch/backends/samsung/test/ops/test_squeeze.py' 2025-12-05T22:27:43.3388734Z 2025-12-05 22:27:43,330 [INFO] adding 'executorch/backends/samsung/test/ops/test_sub.py' 2025-12-05T22:27:43.3389005Z 2025-12-05 22:27:43,330 [INFO] adding 'executorch/backends/samsung/test/ops/test_to_copy.py' 2025-12-05T22:27:43.3389275Z 2025-12-05 22:27:43,330 [INFO] adding 'executorch/backends/samsung/test/ops/test_unsqueeze.py' 2025-12-05T22:27:43.3389596Z 2025-12-05 22:27:43,331 [INFO] adding 'executorch/backends/samsung/test/ops/test_upsample_bilinear2d.py' 2025-12-05T22:27:43.3389917Z 2025-12-05 22:27:43,331 [INFO] adding 'executorch/backends/samsung/test/ops/test_upsample_nearest2d.py' 2025-12-05T22:27:43.3390187Z 2025-12-05 22:27:43,331 [INFO] adding 'executorch/backends/samsung/test/tester/__init__.py' 2025-12-05T22:27:43.3390471Z 2025-12-05 22:27:43,331 [INFO] adding 'executorch/backends/samsung/test/tester/samsung_tester.py' 2025-12-05T22:27:43.3390783Z 2025-12-05 22:27:43,331 [INFO] adding 'executorch/backends/samsung/utils/constants.py' 2025-12-05T22:27:43.3391043Z 2025-12-05 22:27:43,332 [INFO] adding 'executorch/backends/samsung/utils/export_utils.py' 2025-12-05T22:27:43.3391255Z 2025-12-05 22:27:43,332 [INFO] adding 'executorch/backends/samsung/utils/utils.py' 2025-12-05T22:27:43.3391466Z 2025-12-05 22:27:43,332 [INFO] adding 'executorch/backends/test/facto/__init__.py' 2025-12-05T22:27:43.3391708Z 2025-12-05 22:27:43,332 [INFO] adding 'executorch/backends/test/facto/facto_specs.py' 2025-12-05T22:27:43.3391932Z 2025-12-05 22:27:43,333 [INFO] adding 'executorch/backends/test/facto/test_facto.py' 2025-12-05T22:27:43.3392152Z 2025-12-05 22:27:43,333 [INFO] adding 'executorch/backends/test/harness/__init__.py' 2025-12-05T22:27:43.3392477Z 2025-12-05 22:27:43,333 [INFO] adding 'executorch/backends/test/harness/error_statistics.py' 2025-12-05T22:27:43.3392704Z 2025-12-05 22:27:43,334 [INFO] adding 'executorch/backends/test/harness/tester.py' 2025-12-05T22:27:43.3393000Z 2025-12-05 22:27:43,334 [INFO] adding 'executorch/backends/test/harness/stages/__init__.py' 2025-12-05T22:27:43.3393324Z 2025-12-05 22:27:43,334 [INFO] adding 'executorch/backends/test/harness/stages/export.py' 2025-12-05T22:27:43.3393627Z 2025-12-05 22:27:43,334 [INFO] adding 'executorch/backends/test/harness/stages/partition.py' 2025-12-05T22:27:43.3393881Z 2025-12-05 22:27:43,335 [INFO] adding 'executorch/backends/test/harness/stages/quantize.py' 2025-12-05T22:27:43.3394157Z 2025-12-05 22:27:43,335 [INFO] adding 'executorch/backends/test/harness/stages/run_passes.py' 2025-12-05T22:27:43.3394443Z 2025-12-05 22:27:43,335 [INFO] adding 'executorch/backends/test/harness/stages/serialize.py' 2025-12-05T22:27:43.3394679Z 2025-12-05 22:27:43,335 [INFO] adding 'executorch/backends/test/harness/stages/stage.py' 2025-12-05T22:27:43.3394934Z 2025-12-05 22:27:43,335 [INFO] adding 'executorch/backends/test/harness/stages/to_edge.py' 2025-12-05T22:27:43.3395284Z 2025-12-05 22:27:43,336 [INFO] adding 'executorch/backends/test/harness/stages/to_edge_transform_and_lower.py' 2025-12-05T22:27:43.3395564Z 2025-12-05 22:27:43,336 [INFO] adding 'executorch/backends/test/harness/stages/to_executorch.py' 2025-12-05T22:27:43.3395881Z 2025-12-05 22:27:43,336 [INFO] adding 'executorch/backends/test/harness/tests/test_error_statistics.py' 2025-12-05T22:27:43.3578785Z 2025-12-05 22:27:43,336 [INFO] adding 'executorch/backends/test/suite/__init__.py' 2025-12-05T22:27:43.3579169Z 2025-12-05 22:27:43,336 [INFO] adding 'executorch/backends/test/suite/conftest.py' 2025-12-05T22:27:43.3579457Z 2025-12-05 22:27:43,337 [INFO] adding 'executorch/backends/test/suite/context.py' 2025-12-05T22:27:43.3579680Z 2025-12-05 22:27:43,337 [INFO] adding 'executorch/backends/test/suite/discovery.py' 2025-12-05T22:27:43.3579882Z 2025-12-05 22:27:43,337 [INFO] adding 'executorch/backends/test/suite/flow.py' 2025-12-05T22:27:43.3580290Z 2025-12-05 22:27:43,338 [INFO] adding 'executorch/backends/test/suite/generate_markdown_summary.py' 2025-12-05T22:27:43.3580648Z 2025-12-05 22:27:43,338 [INFO] adding 'executorch/backends/test/suite/generate_markdown_summary_json.py' 2025-12-05T22:27:43.3580973Z 2025-12-05 22:27:43,339 [INFO] adding 'executorch/backends/test/suite/reporting.py' 2025-12-05T22:27:43.3581209Z 2025-12-05 22:27:43,339 [INFO] adding 'executorch/backends/test/suite/runner.py' 2025-12-05T22:27:43.3581446Z 2025-12-05 22:27:43,339 [INFO] adding 'executorch/backends/test/suite/flows/__init__.py' 2025-12-05T22:27:43.3581662Z 2025-12-05 22:27:43,339 [INFO] adding 'executorch/backends/test/suite/flows/arm.py' 2025-12-05T22:27:43.3581912Z 2025-12-05 22:27:43,340 [INFO] adding 'executorch/backends/test/suite/flows/coreml.py' 2025-12-05T22:27:43.3582152Z 2025-12-05 22:27:43,340 [INFO] adding 'executorch/backends/test/suite/flows/portable.py' 2025-12-05T22:27:43.3582390Z 2025-12-05 22:27:43,340 [INFO] adding 'executorch/backends/test/suite/flows/qualcomm.py' 2025-12-05T22:27:43.3582853Z 2025-12-05 22:27:43,340 [INFO] adding 'executorch/backends/test/suite/flows/vulkan.py' 2025-12-05T22:27:43.3583094Z 2025-12-05 22:27:43,340 [INFO] adding 'executorch/backends/test/suite/flows/xnnpack.py' 2025-12-05T22:27:43.3583409Z 2025-12-05 22:27:43,341 [INFO] adding 'executorch/backends/test/suite/models/__init__.py' 2025-12-05T22:27:43.3583840Z 2025-12-05 22:27:43,341 [INFO] adding 'executorch/backends/test/suite/models/test_torchaudio.py' 2025-12-05T22:27:43.3584143Z 2025-12-05 22:27:43,341 [INFO] adding 'executorch/backends/test/suite/models/test_torchvision.py' 2025-12-05T22:27:43.3584407Z 2025-12-05 22:27:43,342 [INFO] adding 'executorch/backends/test/suite/operators/__init__.py' 2025-12-05T22:27:43.3584665Z 2025-12-05 22:27:43,342 [INFO] adding 'executorch/backends/test/suite/operators/test_abs.py' 2025-12-05T22:27:43.3585087Z 2025-12-05 22:27:43,342 [INFO] adding 'executorch/backends/test/suite/operators/test_adaptive_avgpool1d.py' 2025-12-05T22:27:43.3585612Z 2025-12-05 22:27:43,342 [INFO] adding 'executorch/backends/test/suite/operators/test_adaptive_avgpool2d.py' 2025-12-05T22:27:43.3586159Z 2025-12-05 22:27:43,342 [INFO] adding 'executorch/backends/test/suite/operators/test_adaptive_avgpool3d.py' 2025-12-05T22:27:43.3586844Z 2025-12-05 22:27:43,343 [INFO] adding 'executorch/backends/test/suite/operators/test_adaptive_maxpool1d.py' 2025-12-05T22:27:43.3587428Z 2025-12-05 22:27:43,343 [INFO] adding 'executorch/backends/test/suite/operators/test_adaptive_maxpool2d.py' 2025-12-05T22:27:43.3588001Z 2025-12-05 22:27:43,343 [INFO] adding 'executorch/backends/test/suite/operators/test_adaptive_maxpool3d.py' 2025-12-05T22:27:43.3588689Z 2025-12-05 22:27:43,343 [INFO] adding 'executorch/backends/test/suite/operators/test_add.py' 2025-12-05T22:27:43.3589171Z 2025-12-05 22:27:43,344 [INFO] adding 'executorch/backends/test/suite/operators/test_amax.py' 2025-12-05T22:27:43.3589647Z 2025-12-05 22:27:43,344 [INFO] adding 'executorch/backends/test/suite/operators/test_amin.py' 2025-12-05T22:27:43.3590153Z 2025-12-05 22:27:43,344 [INFO] adding 'executorch/backends/test/suite/operators/test_argmax.py' 2025-12-05T22:27:43.3590663Z 2025-12-05 22:27:43,344 [INFO] adding 'executorch/backends/test/suite/operators/test_argmin.py' 2025-12-05T22:27:43.3591212Z 2025-12-05 22:27:43,345 [INFO] adding 'executorch/backends/test/suite/operators/test_avgpool1d.py' 2025-12-05T22:27:43.3591745Z 2025-12-05 22:27:43,345 [INFO] adding 'executorch/backends/test/suite/operators/test_avgpool2d.py' 2025-12-05T22:27:43.3592047Z 2025-12-05 22:27:43,345 [INFO] adding 'executorch/backends/test/suite/operators/test_avgpool3d.py' 2025-12-05T22:27:43.3592393Z 2025-12-05 22:27:43,345 [INFO] adding 'executorch/backends/test/suite/operators/test_cat.py' 2025-12-05T22:27:43.3592887Z 2025-12-05 22:27:43,346 [INFO] adding 'executorch/backends/test/suite/operators/test_ceil.py' 2025-12-05T22:27:43.3593379Z 2025-12-05 22:27:43,346 [INFO] adding 'executorch/backends/test/suite/operators/test_clamp.py' 2025-12-05T22:27:43.3593898Z 2025-12-05 22:27:43,346 [INFO] adding 'executorch/backends/test/suite/operators/test_conv1d.py' 2025-12-05T22:27:43.3594349Z 2025-12-05 22:27:43,346 [INFO] adding 'executorch/backends/test/suite/operators/test_conv2d.py' 2025-12-05T22:27:43.3594729Z 2025-12-05 22:27:43,346 [INFO] adding 'executorch/backends/test/suite/operators/test_conv3d.py' 2025-12-05T22:27:43.3595327Z 2025-12-05 22:27:43,347 [INFO] adding 'executorch/backends/test/suite/operators/test_convtranspose1d.py' 2025-12-05T22:27:43.3595936Z 2025-12-05 22:27:43,347 [INFO] adding 'executorch/backends/test/suite/operators/test_convtranspose2d.py' 2025-12-05T22:27:43.3596521Z 2025-12-05 22:27:43,347 [INFO] adding 'executorch/backends/test/suite/operators/test_convtranspose3d.py' 2025-12-05T22:27:43.3596843Z 2025-12-05 22:27:43,348 [INFO] adding 'executorch/backends/test/suite/operators/test_div.py' 2025-12-05T22:27:43.3597311Z 2025-12-05 22:27:43,348 [INFO] adding 'executorch/backends/test/suite/operators/test_elu.py' 2025-12-05T22:27:43.3598056Z 2025-12-05 22:27:43,348 [INFO] adding 'executorch/backends/test/suite/operators/test_embedding.py' 2025-12-05T22:27:43.3598625Z 2025-12-05 22:27:43,348 [INFO] adding 'executorch/backends/test/suite/operators/test_embedding_bag.py' 2025-12-05T22:27:43.3598936Z 2025-12-05 22:27:43,348 [INFO] adding 'executorch/backends/test/suite/operators/test_exp.py' 2025-12-05T22:27:43.3599378Z 2025-12-05 22:27:43,349 [INFO] adding 'executorch/backends/test/suite/operators/test_expand.py' 2025-12-05T22:27:43.3599872Z 2025-12-05 22:27:43,349 [INFO] adding 'executorch/backends/test/suite/operators/test_floor.py' 2025-12-05T22:27:43.3600435Z 2025-12-05 22:27:43,349 [INFO] adding 'executorch/backends/test/suite/operators/test_floor_divide.py' 2025-12-05T22:27:43.3600925Z 2025-12-05 22:27:43,349 [INFO] adding 'executorch/backends/test/suite/operators/test_gelu.py' 2025-12-05T22:27:43.3601257Z 2025-12-05 22:27:43,350 [INFO] adding 'executorch/backends/test/suite/operators/test_glu.py' 2025-12-05T22:27:43.3601690Z 2025-12-05 22:27:43,350 [INFO] adding 'executorch/backends/test/suite/operators/test_hardsigmoid.py' 2025-12-05T22:27:43.3602235Z 2025-12-05 22:27:43,350 [INFO] adding 'executorch/backends/test/suite/operators/test_hardswish.py' 2025-12-05T22:27:43.3602842Z 2025-12-05 22:27:43,350 [INFO] adding 'executorch/backends/test/suite/operators/test_hardtanh.py' 2025-12-05T22:27:43.3603363Z 2025-12-05 22:27:43,351 [INFO] adding 'executorch/backends/test/suite/operators/test_index_put.py' 2025-12-05T22:27:43.3603729Z 2025-12-05 22:27:43,351 [INFO] adding 'executorch/backends/test/suite/operators/test_index_select.py' 2025-12-05T22:27:43.3604263Z 2025-12-05 22:27:43,351 [INFO] adding 'executorch/backends/test/suite/operators/test_leaky_relu.py' 2025-12-05T22:27:43.3604766Z 2025-12-05 22:27:43,351 [INFO] adding 'executorch/backends/test/suite/operators/test_linear.py' 2025-12-05T22:27:43.3605261Z 2025-12-05 22:27:43,352 [INFO] adding 'executorch/backends/test/suite/operators/test_log.py' 2025-12-05T22:27:43.3605752Z 2025-12-05 22:27:43,352 [INFO] adding 'executorch/backends/test/suite/operators/test_log10.py' 2025-12-05T22:27:43.3606107Z 2025-12-05 22:27:43,352 [INFO] adding 'executorch/backends/test/suite/operators/test_log1p.py' 2025-12-05T22:27:43.3606581Z 2025-12-05 22:27:43,352 [INFO] adding 'executorch/backends/test/suite/operators/test_log2.py' 2025-12-05T22:27:43.3607126Z 2025-12-05 22:27:43,353 [INFO] adding 'executorch/backends/test/suite/operators/test_logsigmoid.py' 2025-12-05T22:27:43.3607610Z 2025-12-05 22:27:43,353 [INFO] adding 'executorch/backends/test/suite/operators/test_lstm.py' 2025-12-05T22:27:43.3608165Z 2025-12-05 22:27:43,353 [INFO] adding 'executorch/backends/test/suite/operators/test_masked_fill.py' 2025-12-05T22:27:43.3608466Z 2025-12-05 22:27:43,353 [INFO] adding 'executorch/backends/test/suite/operators/test_maxpool1d.py' 2025-12-05T22:27:43.3608761Z 2025-12-05 22:27:43,354 [INFO] adding 'executorch/backends/test/suite/operators/test_maxpool2d.py' 2025-12-05T22:27:43.3609055Z 2025-12-05 22:27:43,354 [INFO] adding 'executorch/backends/test/suite/operators/test_maxpool3d.py' 2025-12-05T22:27:43.3609464Z 2025-12-05 22:27:43,354 [INFO] adding 'executorch/backends/test/suite/operators/test_mean.py' 2025-12-05T22:27:43.3609967Z 2025-12-05 22:27:43,354 [INFO] adding 'executorch/backends/test/suite/operators/test_median.py' 2025-12-05T22:27:43.3610436Z 2025-12-05 22:27:43,355 [INFO] adding 'executorch/backends/test/suite/operators/test_mul.py' 2025-12-05T22:27:43.3610919Z 2025-12-05 22:27:43,355 [INFO] adding 'executorch/backends/test/suite/operators/test_neg.py' 2025-12-05T22:27:43.3611328Z 2025-12-05 22:27:43,355 [INFO] adding 'executorch/backends/test/suite/operators/test_permute.py' 2025-12-05T22:27:43.3611586Z 2025-12-05 22:27:43,355 [INFO] adding 'executorch/backends/test/suite/operators/test_pow.py' 2025-12-05T22:27:43.3611871Z 2025-12-05 22:27:43,356 [INFO] adding 'executorch/backends/test/suite/operators/test_prelu.py' 2025-12-05T22:27:43.3612386Z 2025-12-05 22:27:43,356 [INFO] adding 'executorch/backends/test/suite/operators/test_relu.py' 2025-12-05T22:27:43.3612901Z 2025-12-05 22:27:43,356 [INFO] adding 'executorch/backends/test/suite/operators/test_reshape.py' 2025-12-05T22:27:43.3613414Z 2025-12-05 22:27:43,356 [INFO] adding 'executorch/backends/test/suite/operators/test_round.py' 2025-12-05T22:27:43.3613898Z 2025-12-05 22:27:43,357 [INFO] adding 'executorch/backends/test/suite/operators/test_rsqrt.py' 2025-12-05T22:27:43.3614247Z 2025-12-05 22:27:43,357 [INFO] adding 'executorch/backends/test/suite/operators/test_select.py' 2025-12-05T22:27:43.3845956Z 2025-12-05 22:27:43,357 [INFO] adding 'executorch/backends/test/suite/operators/test_sigmoid.py' 2025-12-05T22:27:43.3846364Z 2025-12-05 22:27:43,357 [INFO] adding 'executorch/backends/test/suite/operators/test_silu.py' 2025-12-05T22:27:43.3846682Z 2025-12-05 22:27:43,357 [INFO] adding 'executorch/backends/test/suite/operators/test_slice.py' 2025-12-05T22:27:43.3846987Z 2025-12-05 22:27:43,358 [INFO] adding 'executorch/backends/test/suite/operators/test_split.py' 2025-12-05T22:27:43.3847248Z 2025-12-05 22:27:43,358 [INFO] adding 'executorch/backends/test/suite/operators/test_sqrt.py' 2025-12-05T22:27:43.3847656Z 2025-12-05 22:27:43,358 [INFO] adding 'executorch/backends/test/suite/operators/test_square.py' 2025-12-05T22:27:43.3847961Z 2025-12-05 22:27:43,358 [INFO] adding 'executorch/backends/test/suite/operators/test_squeeze.py' 2025-12-05T22:27:43.3848369Z 2025-12-05 22:27:43,359 [INFO] adding 'executorch/backends/test/suite/operators/test_stack.py' 2025-12-05T22:27:43.3848798Z 2025-12-05 22:27:43,359 [INFO] adding 'executorch/backends/test/suite/operators/test_sub.py' 2025-12-05T22:27:43.3849113Z 2025-12-05 22:27:43,359 [INFO] adding 'executorch/backends/test/suite/operators/test_tanh.py' 2025-12-05T22:27:43.3849406Z 2025-12-05 22:27:43,359 [INFO] adding 'executorch/backends/test/suite/operators/test_threshold.py' 2025-12-05T22:27:43.3849700Z 2025-12-05 22:27:43,360 [INFO] adding 'executorch/backends/test/suite/operators/test_transpose.py' 2025-12-05T22:27:43.3850089Z 2025-12-05 22:27:43,360 [INFO] adding 'executorch/backends/test/suite/operators/test_trunc.py' 2025-12-05T22:27:43.3850439Z 2025-12-05 22:27:43,360 [INFO] adding 'executorch/backends/test/suite/operators/test_unsqueeze.py' 2025-12-05T22:27:43.3850859Z 2025-12-05 22:27:43,360 [INFO] adding 'executorch/backends/test/suite/operators/test_upsample_bilinear2d.py' 2025-12-05T22:27:43.3851207Z 2025-12-05 22:27:43,361 [INFO] adding 'executorch/backends/test/suite/operators/test_upsample_nearest2d.py' 2025-12-05T22:27:43.3851472Z 2025-12-05 22:27:43,361 [INFO] adding 'executorch/backends/test/suite/operators/test_view.py' 2025-12-05T22:27:43.3851718Z 2025-12-05 22:27:43,361 [INFO] adding 'executorch/backends/test/suite/tests/__init__.py' 2025-12-05T22:27:43.3852099Z 2025-12-05 22:27:43,361 [INFO] adding 'executorch/backends/test/suite/tests/test_reporting.py' 2025-12-05T22:27:43.3852383Z 2025-12-05 22:27:43,362 [INFO] adding 'executorch/backends/transforms/__init__.py' 2025-12-05T22:27:43.3852712Z 2025-12-05 22:27:43,362 [INFO] adding 'executorch/backends/transforms/addmm_mm_to_linear.py' 2025-12-05T22:27:43.3852973Z 2025-12-05 22:27:43,362 [INFO] adding 'executorch/backends/transforms/convert_dtype_pass.py' 2025-12-05T22:27:43.3853252Z 2025-12-05 22:27:43,363 [INFO] adding 'executorch/backends/transforms/decompose_sdpa.py' 2025-12-05T22:27:43.3853601Z 2025-12-05 22:27:43,363 [INFO] adding 'executorch/backends/transforms/duplicate_dynamic_quant_chain.py' 2025-12-05T22:27:43.3853999Z 2025-12-05 22:27:43,363 [INFO] adding 'executorch/backends/transforms/fuse_batch_norm_with_conv.py' 2025-12-05T22:27:43.3854382Z 2025-12-05 22:27:43,364 [INFO] adding 'executorch/backends/transforms/fuse_conv_with_clamp.py' 2025-12-05T22:27:43.3854623Z 2025-12-05 22:27:43,364 [INFO] adding 'executorch/backends/transforms/fuse_view_copy.py' 2025-12-05T22:27:43.3855014Z 2025-12-05 22:27:43,364 [INFO] adding 'executorch/backends/transforms/mean_to_sum_div.py' 2025-12-05T22:27:43.3855279Z 2025-12-05 22:27:43,364 [INFO] adding 'executorch/backends/transforms/rank_0_to_rank_1.py' 2025-12-05T22:27:43.3855527Z 2025-12-05 22:27:43,365 [INFO] adding 'executorch/backends/transforms/remove_clone_ops.py' 2025-12-05T22:27:43.3855784Z 2025-12-05 22:27:43,365 [INFO] adding 'executorch/backends/transforms/remove_getitem_op.py' 2025-12-05T22:27:43.3856218Z 2025-12-05 22:27:43,365 [INFO] adding 'executorch/backends/transforms/replace_scalar_with_tensor.py' 2025-12-05T22:27:43.3856459Z 2025-12-05 22:27:43,366 [INFO] adding 'executorch/backends/transforms/utils.py' 2025-12-05T22:27:43.3856864Z 2025-12-05 22:27:43,366 [INFO] adding 'executorch/backends/transforms/view_copy_to_squeeze_unsqueeze.py' 2025-12-05T22:27:43.3857265Z 2025-12-05 22:27:43,366 [INFO] adding 'executorch/backends/transforms/test/test_create_delete_constant_placeholder.py' 2025-12-05T22:27:43.3857589Z 2025-12-05 22:27:43,367 [INFO] adding 'executorch/backends/transforms/test/test_create_mutable_buffer.py' 2025-12-05T22:27:43.3857949Z 2025-12-05 22:27:43,367 [INFO] adding 'executorch/backends/transforms/test/test_duplicate_dynamic_quant_chain.py' 2025-12-05T22:27:43.3858423Z 2025-12-05 22:27:43,367 [INFO] adding 'executorch/backends/transforms/test/test_rank_0_to_rank_1.py' 2025-12-05T22:27:43.3858837Z 2025-12-05 22:27:43,368 [INFO] adding 'executorch/backends/transforms/test/test_remove_clone_ops.py' 2025-12-05T22:27:43.3859042Z 2025-12-05 22:27:43,368 [INFO] adding 'executorch/backends/vulkan/__init__.py' 2025-12-05T22:27:43.3859322Z 2025-12-05 22:27:43,369 [INFO] adding 'executorch/backends/vulkan/custom_ops_lib.py' 2025-12-05T22:27:43.3859535Z 2025-12-05 22:27:43,369 [INFO] adding 'executorch/backends/vulkan/op_registry.py' 2025-12-05T22:27:43.3859725Z 2025-12-05 22:27:43,371 [INFO] adding 'executorch/backends/vulkan/utils.py' 2025-12-05T22:27:43.3859981Z 2025-12-05 22:27:43,371 [INFO] adding 'executorch/backends/vulkan/vulkan_preprocess.py' 2025-12-05T22:27:43.3860308Z 2025-12-05 22:27:43,372 [INFO] adding 'executorch/backends/vulkan/_passes/__init__.py' 2025-12-05T22:27:43.3860581Z 2025-12-05 22:27:43,372 [INFO] adding 'executorch/backends/vulkan/_passes/fold_qdq.py' 2025-12-05T22:27:43.3860947Z 2025-12-05 22:27:43,372 [INFO] adding 'executorch/backends/vulkan/_passes/fuse_patterns.py' 2025-12-05T22:27:43.3861227Z 2025-12-05 22:27:43,372 [INFO] adding 'executorch/backends/vulkan/_passes/fuse_quantized_ops.py' 2025-12-05T22:27:43.3861512Z 2025-12-05 22:27:43,373 [INFO] adding 'executorch/backends/vulkan/_passes/insert_prepack_nodes.py' 2025-12-05T22:27:43.3861771Z 2025-12-05 22:27:43,373 [INFO] adding 'executorch/backends/vulkan/_passes/remove_asserts.py' 2025-12-05T22:27:43.3862070Z 2025-12-05 22:27:43,373 [INFO] adding 'executorch/backends/vulkan/_passes/remove_redundant_ops.py' 2025-12-05T22:27:43.3862498Z 2025-12-05 22:27:43,374 [INFO] adding 'executorch/backends/vulkan/_passes/squeeze_unsqueeze_inputs.py' 2025-12-05T22:27:43.3862896Z 2025-12-05 22:27:43,374 [INFO] adding 'executorch/backends/vulkan/_passes/tag_memory_meta_pass.py' 2025-12-05T22:27:43.3863220Z 2025-12-05 22:27:43,375 [INFO] adding 'executorch/backends/vulkan/partitioner/vulkan_partitioner.py' 2025-12-05T22:27:43.3863459Z 2025-12-05 22:27:43,375 [INFO] adding 'executorch/backends/vulkan/patterns/__init__.py' 2025-12-05T22:27:43.3863739Z 2025-12-05 22:27:43,375 [INFO] adding 'executorch/backends/vulkan/patterns/pattern_registry.py' 2025-12-05T22:27:43.3864026Z 2025-12-05 22:27:43,376 [INFO] adding 'executorch/backends/vulkan/patterns/quantized_binary.py' 2025-12-05T22:27:43.3864408Z 2025-12-05 22:27:43,376 [INFO] adding 'executorch/backends/vulkan/patterns/quantized_convolution.py' 2025-12-05T22:27:43.3864756Z 2025-12-05 22:27:43,377 [INFO] adding 'executorch/backends/vulkan/patterns/quantized_linear.py' 2025-12-05T22:27:43.3865075Z 2025-12-05 22:27:43,377 [INFO] adding 'executorch/backends/vulkan/patterns/rope.py' 2025-12-05T22:27:43.3865386Z 2025-12-05 22:27:43,377 [INFO] adding 'executorch/backends/vulkan/patterns/sdpa.py' 2025-12-05T22:27:43.3865662Z 2025-12-05 22:27:43,378 [INFO] adding 'executorch/backends/vulkan/patterns/select_as_symint.py' 2025-12-05T22:27:43.3865959Z 2025-12-05 22:27:43,378 [INFO] adding 'executorch/backends/vulkan/quantizer/vulkan_quantizer.py' 2025-12-05T22:27:43.3866272Z 2025-12-05 22:27:43,378 [INFO] adding 'executorch/backends/vulkan/quantizer/vulkan_quantizer_utils.py' 2025-12-05T22:27:43.3866634Z 2025-12-05 22:27:43,380 [INFO] adding 'executorch/backends/vulkan/runtime/gen_vulkan_spv.py' 2025-12-05T22:27:43.3867080Z 2025-12-05 22:27:43,380 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_buffer.yaml' 2025-12-05T22:27:43.3867529Z 2025-12-05 22:27:43,381 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_texture3d.yaml' 2025-12-05T22:27:43.3867888Z 2025-12-05 22:27:43,381 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_optimized.yaml' 2025-12-05T22:27:43.3868203Z 2025-12-05 22:27:43,381 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/arange.yaml' 2025-12-05T22:27:43.3868631Z 2025-12-05 22:27:43,381 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/avg_pool2d.yaml' 2025-12-05T22:27:43.3869101Z 2025-12-05 22:27:43,381 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/batchnorm.yaml' 2025-12-05T22:27:43.3869535Z 2025-12-05 22:27:43,382 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/binary_op.yaml' 2025-12-05T22:27:43.3869953Z 2025-12-05 22:27:43,382 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/binary_q8ta_q8ta_q8to.yaml' 2025-12-05T22:27:43.3870329Z 2025-12-05 22:27:43,382 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/binary_scalar_buffer.yaml' 2025-12-05T22:27:43.3870742Z 2025-12-05 22:27:43,382 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/binary_scalar_texture.yaml' 2025-12-05T22:27:43.3871371Z 2025-12-05 22:27:43,382 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/bitw8_image_to_nchw_nobitw8buffer.yaml' 2025-12-05T22:27:43.3871750Z 2025-12-05 22:27:43,383 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_buffer.yaml' 2025-12-05T22:27:43.3872107Z 2025-12-05 22:27:43,383 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_nchw.yaml' 2025-12-05T22:27:43.3872491Z 2025-12-05 22:27:43,383 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/choose_qparams_per_row.yaml' 2025-12-05T22:27:43.3872811Z 2025-12-05 22:27:43,383 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/clone.yaml' 2025-12-05T22:27:43.3873226Z 2025-12-05 22:27:43,383 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/col2im.yaml' 2025-12-05T22:27:43.3989684Z 2025-12-05 22:27:43,384 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/concat_buffer.yaml' 2025-12-05T22:27:43.3990335Z 2025-12-05 22:27:43,384 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/concat_texture.yaml' 2025-12-05T22:27:43.3990790Z 2025-12-05 22:27:43,384 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv1d.yaml' 2025-12-05T22:27:43.3991103Z 2025-12-05 22:27:43,384 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d.yaml' 2025-12-05T22:27:43.3991423Z 2025-12-05 22:27:43,384 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw.yaml' 2025-12-05T22:27:43.3991821Z 2025-12-05 22:27:43,385 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_output_tile.yaml' 2025-12-05T22:27:43.3992231Z 2025-12-05 22:27:43,385 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_prepack_weights.yaml' 2025-12-05T22:27:43.3992628Z 2025-12-05 22:27:43,385 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_q8ta_q8csw_q8to.yaml' 2025-12-05T22:27:43.3993219Z 2025-12-05 22:27:43,385 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_sned_output_tile.yaml' 2025-12-05T22:27:43.3993609Z 2025-12-05 22:27:43,385 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_prepack_weights.yaml' 2025-12-05T22:27:43.3993972Z 2025-12-05 22:27:43,386 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw.yaml' 2025-12-05T22:27:43.3994649Z 2025-12-05 22:27:43,386 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_q8ta_q8csw_q8to_tiled.yaml' 2025-12-05T22:27:43.3995227Z 2025-12-05 22:27:43,386 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_s1p0.yaml' 2025-12-05T22:27:43.3995928Z 2025-12-05 22:27:43,386 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_q8csw_linear_tiled.yaml' 2025-12-05T22:27:43.3996672Z 2025-12-05 22:27:43,387 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_q8ta_q8csw_linear_tiled.yaml' 2025-12-05T22:27:43.3997369Z 2025-12-05 22:27:43,387 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_q8ta_q8csw_q8to.yaml' 2025-12-05T22:27:43.3998204Z 2025-12-05 22:27:43,387 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_q8ta_q8csw_q8to_linear_tiled.yaml' 2025-12-05T22:27:43.3998975Z 2025-12-05 22:27:43,387 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d.yaml' 2025-12-05T22:27:43.3999802Z 2025-12-05 22:27:43,387 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d_prepack_weights.yaml' 2025-12-05T22:27:43.4000551Z 2025-12-05 22:27:43,388 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/embedding_buffer.yaml' 2025-12-05T22:27:43.4001229Z 2025-12-05 22:27:43,388 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/embedding_legacy.yaml' 2025-12-05T22:27:43.4001907Z 2025-12-05 22:27:43,388 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/embedding_texture.yaml' 2025-12-05T22:27:43.4002534Z 2025-12-05 22:27:43,388 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/expand_buffer.yaml' 2025-12-05T22:27:43.4003100Z 2025-12-05 22:27:43,388 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/flip.yaml' 2025-12-05T22:27:43.4003655Z 2025-12-05 22:27:43,389 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/full.yaml' 2025-12-05T22:27:43.4004263Z 2025-12-05 22:27:43,389 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/gather_buffer.yaml' 2025-12-05T22:27:43.4004917Z 2025-12-05 22:27:43,389 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/gather_texture.yaml' 2025-12-05T22:27:43.4005545Z 2025-12-05 22:27:43,389 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/grid_priors.yaml' 2025-12-05T22:27:43.4006277Z 2025-12-05 22:27:43,389 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/group_norm_reduce_texture.yaml' 2025-12-05T22:27:43.4006991Z 2025-12-05 22:27:43,390 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/group_norm_texture.yaml' 2025-12-05T22:27:43.4007558Z 2025-12-05 22:27:43,390 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/im2col.yaml' 2025-12-05T22:27:43.4008235Z 2025-12-05 22:27:43,390 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/im2col_packed_int8.yaml' 2025-12-05T22:27:43.4008887Z 2025-12-05 22:27:43,390 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/image_to_nchw.yaml' 2025-12-05T22:27:43.4009492Z 2025-12-05 22:27:43,390 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select.yaml' 2025-12-05T22:27:43.4010202Z 2025-12-05 22:27:43,391 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select_channel.yaml' 2025-12-05T22:27:43.4010961Z 2025-12-05 22:27:43,391 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_dq8ca_q4gsw_tiled.yaml' 2025-12-05T22:27:43.4011755Z 2025-12-05 22:27:43,391 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_q4gsw_coop.yaml' 2025-12-05T22:27:43.4012451Z 2025-12-05 22:27:43,391 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_q4gsw_tiled.yaml' 2025-12-05T22:27:43.4013122Z 2025-12-05 22:27:43,392 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_q8csw_tiled.yaml' 2025-12-05T22:27:43.4013870Z 2025-12-05 22:27:43,392 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_q8ta_q8csw_tiled.yaml' 2025-12-05T22:27:43.4014494Z 2025-12-05 22:27:43,392 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw.yaml' 2025-12-05T22:27:43.4015176Z 2025-12-05 22:27:43,392 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_coop.yaml' 2025-12-05T22:27:43.4015864Z 2025-12-05 22:27:43,392 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_tiled.yaml' 2025-12-05T22:27:43.4016457Z 2025-12-05 22:27:43,393 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/max_pool2d.yaml' 2025-12-05T22:27:43.4017151Z 2025-12-05 22:27:43,393 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/native_layer_norm.yaml' 2025-12-05T22:27:43.4017987Z 2025-12-05 22:27:43,393 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_bitw8_image_nobitw8buffer.yaml' 2025-12-05T22:27:43.4018897Z 2025-12-05 22:27:43,393 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_buffer.yaml' 2025-12-05T22:27:43.4019540Z 2025-12-05 22:27:43,394 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_image.yaml' 2025-12-05T22:27:43.4020182Z 2025-12-05 22:27:43,394 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/no_op.yaml' 2025-12-05T22:27:43.4021115Z 2025-12-05 22:27:43,394 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pack_int4_linear_weight_transposed_interleaved.yaml' 2025-12-05T22:27:43.4021861Z 2025-12-05 22:27:43,394 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pack_q4_linear_weight.yaml' 2025-12-05T22:27:43.4022605Z 2025-12-05 22:27:43,394 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pack_q8_conv2d_dw_weights.yaml' 2025-12-05T22:27:43.4023332Z 2025-12-05 22:27:43,395 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pack_q8_conv2d_weights.yaml' 2025-12-05T22:27:43.4024043Z 2025-12-05 22:27:43,395 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pack_q8_linear_weight.yaml' 2025-12-05T22:27:43.4024669Z 2025-12-05 22:27:43,395 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_channel.yaml' 2025-12-05T22:27:43.4025346Z 2025-12-05 22:27:43,395 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_height_width.yaml' 2025-12-05T22:27:43.4025993Z 2025-12-05 22:27:43,395 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/permute_buffer.yaml' 2025-12-05T22:27:43.4026660Z 2025-12-05 22:27:43,395 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/permute_texture.yaml' 2025-12-05T22:27:43.4027359Z 2025-12-05 22:27:43,396 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/quantize_and_pack_4h4w.yaml' 2025-12-05T22:27:43.4028265Z 2025-12-05 22:27:43,396 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/quantize_and_pack_4h4w_with_group_sums.yaml' 2025-12-05T22:27:43.4029198Z 2025-12-05 22:27:43,396 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/quantize_and_pack_4w4c.yaml' 2025-12-05T22:27:43.4029942Z 2025-12-05 22:27:43,396 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/quantize_and_pack_im2col.yaml' 2025-12-05T22:27:43.4030536Z 2025-12-05 22:27:43,396 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/reduce.yaml' 2025-12-05T22:27:43.4031080Z 2025-12-05 22:27:43,397 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/reduce2d.yaml' 2025-12-05T22:27:43.4031707Z 2025-12-05 22:27:43,397 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/reduce_per_row_buffer.yaml' 2025-12-05T22:27:43.4032022Z 2025-12-05 22:27:43,397 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat.yaml' 2025-12-05T22:27:43.4032385Z 2025-12-05 22:27:43,397 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_channel.yaml' 2025-12-05T22:27:43.4032753Z 2025-12-05 22:27:43,397 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_interleave.yaml' 2025-12-05T22:27:43.4033112Z 2025-12-05 22:27:43,398 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/rotary_embedding.yaml' 2025-12-05T22:27:43.4033466Z 2025-12-05 22:27:43,398 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/scalar_tensor.yaml' 2025-12-05T22:27:43.4297127Z 2025-12-05 22:27:43,398 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weights_softmax.yaml' 2025-12-05T22:27:43.4297970Z 2025-12-05 22:27:43,398 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_compute_attn_weights_coop.yaml' 2025-12-05T22:27:43.4298509Z 2025-12-05 22:27:43,398 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_compute_attn_weights_tiled.yaml' 2025-12-05T22:27:43.4298944Z 2025-12-05 22:27:43,399 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_compute_out_coop.yaml' 2025-12-05T22:27:43.4299583Z 2025-12-05 22:27:43,399 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_compute_out_tiled.yaml' 2025-12-05T22:27:43.4299960Z 2025-12-05 22:27:43,399 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_kv_cache_update.yaml' 2025-12-05T22:27:43.4300425Z 2025-12-05 22:27:43,399 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/set_zero.yaml' 2025-12-05T22:27:43.4300801Z 2025-12-05 22:27:43,399 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/softmax.yaml' 2025-12-05T22:27:43.4301223Z 2025-12-05 22:27:43,400 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/split_buffer.yaml' 2025-12-05T22:27:43.4301575Z 2025-12-05 22:27:43,400 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/split_texture.yaml' 2025-12-05T22:27:43.4301957Z 2025-12-05 22:27:43,400 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/tan.yaml' 2025-12-05T22:27:43.4302314Z 2025-12-05 22:27:43,400 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_buffer.yaml' 2025-12-05T22:27:43.4302749Z 2025-12-05 22:27:43,400 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_texture.yaml' 2025-12-05T22:27:43.4303188Z 2025-12-05 22:27:43,400 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/unary_op.yaml' 2025-12-05T22:27:43.4303679Z 2025-12-05 22:27:43,401 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/unpack_4w4c_and_dequantize.yaml' 2025-12-05T22:27:43.4304063Z 2025-12-05 22:27:43,401 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/update_concat_offset.yaml' 2025-12-05T22:27:43.4304483Z 2025-12-05 22:27:43,401 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/upsample_2d.yaml' 2025-12-05T22:27:43.4304806Z 2025-12-05 22:27:43,401 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_buffer.yaml' 2025-12-05T22:27:43.4305221Z 2025-12-05 22:27:43,401 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_texture3d.yaml' 2025-12-05T22:27:43.4305532Z 2025-12-05 22:27:43,401 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/view.yaml' 2025-12-05T22:27:43.4305938Z 2025-12-05 22:27:43,402 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/view_buffer.yaml' 2025-12-05T22:27:43.4306313Z 2025-12-05 22:27:43,402 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/view_convert_buffer.yaml' 2025-12-05T22:27:43.4306683Z 2025-12-05 22:27:43,402 [INFO] adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/where.yaml' 2025-12-05T22:27:43.4307069Z 2025-12-05 22:27:43,402 [INFO] adding 'executorch/backends/vulkan/serialization/schema.fbs' 2025-12-05T22:27:43.4307473Z 2025-12-05 22:27:43,403 [INFO] adding 'executorch/backends/vulkan/serialization/vulkan_graph_builder.py' 2025-12-05T22:27:43.4307789Z 2025-12-05 22:27:43,403 [INFO] adding 'executorch/backends/vulkan/serialization/vulkan_graph_schema.py' 2025-12-05T22:27:43.4308203Z 2025-12-05 22:27:43,404 [INFO] adding 'executorch/backends/vulkan/serialization/vulkan_graph_serialize.py' 2025-12-05T22:27:43.4308536Z 2025-12-05 22:27:43,404 [INFO] adding 'executorch/backends/vulkan/test/test_serialization.py' 2025-12-05T22:27:43.4308813Z 2025-12-05 22:27:43,406 [INFO] adding 'executorch/backends/vulkan/test/test_vulkan_delegate.py' 2025-12-05T22:27:43.4309211Z 2025-12-05 22:27:43,406 [INFO] adding 'executorch/backends/vulkan/test/test_vulkan_delegate_header.py' 2025-12-05T22:27:43.4309476Z 2025-12-05 22:27:43,406 [INFO] adding 'executorch/backends/vulkan/test/test_vulkan_passes.py' 2025-12-05T22:27:43.4309725Z 2025-12-05 22:27:43,407 [INFO] adding 'executorch/backends/vulkan/test/tester.py' 2025-12-05T22:27:43.4309983Z 2025-12-05 22:27:43,407 [INFO] adding 'executorch/backends/vulkan/test/utils.py' 2025-12-05T22:27:43.4310260Z 2025-12-05 22:27:43,408 [INFO] adding 'executorch/backends/vulkan/test/custom_ops/glsl/add.yaml' 2025-12-05T22:27:43.4310635Z 2025-12-05 22:27:43,408 [INFO] adding 'executorch/backends/vulkan/test/glsl/all_shaders.yaml' 2025-12-05T22:27:43.4310968Z 2025-12-05 22:27:43,408 [INFO] adding 'executorch/backends/vulkan/test/glsl/dynamic_dispatch_test.yaml' 2025-12-05T22:27:43.4311324Z 2025-12-05 22:27:43,408 [INFO] adding 'executorch/backends/vulkan/test/glsl/reference_matmul_common.yaml' 2025-12-05T22:27:43.4311630Z 2025-12-05 22:27:43,410 [INFO] adding 'executorch/backends/vulkan/test/op_tests/cases.py' 2025-12-05T22:27:43.4312000Z 2025-12-05 22:27:43,410 [INFO] adding 'executorch/backends/vulkan/test/op_tests/generate_op_benchmarks.py' 2025-12-05T22:27:43.4312440Z 2025-12-05 22:27:43,410 [INFO] adding 'executorch/backends/vulkan/test/op_tests/generate_op_correctness_tests.py' 2025-12-05T22:27:43.4312736Z 2025-12-05 22:27:43,410 [INFO] adding 'executorch/backends/vulkan/test/op_tests/utils/aten_types.py' 2025-12-05T22:27:43.4313148Z 2025-12-05 22:27:43,411 [INFO] adding 'executorch/backends/vulkan/test/op_tests/utils/gen_benchmark_vk.py' 2025-12-05T22:27:43.4313477Z 2025-12-05 22:27:43,412 [INFO] adding 'executorch/backends/vulkan/test/op_tests/utils/gen_computegraph.py' 2025-12-05T22:27:43.4313892Z 2025-12-05 22:27:43,412 [INFO] adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_base.py' 2025-12-05T22:27:43.4314243Z 2025-12-05 22:27:43,412 [INFO] adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_vk.py' 2025-12-05T22:27:43.4314605Z 2025-12-05 22:27:43,413 [INFO] adding 'executorch/backends/vulkan/test/op_tests/utils/test_suite.py' 2025-12-05T22:27:43.4315009Z 2025-12-05 22:27:43,413 [INFO] adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/apiconventions.py' 2025-12-05T22:27:43.4315495Z 2025-12-05 22:27:43,414 [INFO] adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/base_generator.py' 2025-12-05T22:27:43.4315872Z 2025-12-05 22:27:43,415 [INFO] adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/cgenerator.py' 2025-12-05T22:27:43.4316317Z 2025-12-05 22:27:43,417 [INFO] adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/generator.py' 2025-12-05T22:27:43.4316736Z 2025-12-05 22:27:43,418 [INFO] adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/parse_dependency.py' 2025-12-05T22:27:43.4317157Z 2025-12-05 22:27:43,421 [INFO] adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/reg.py' 2025-12-05T22:27:43.4317522Z 2025-12-05 22:27:43,421 [INFO] adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/stripAPI.py' 2025-12-05T22:27:43.4318061Z 2025-12-05 22:27:43,421 [INFO] adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vkconventions.py' 2025-12-05T22:27:43.4318722Z 2025-12-05 22:27:43,422 [INFO] adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vulkan_object.py' 2025-12-05T22:27:43.4319158Z 2025-12-05 22:27:43,423 [INFO] adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/conventions.py' 2025-12-05T22:27:43.4319644Z 2025-12-05 22:27:43,423 [INFO] adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/util.py' 2025-12-05T22:27:43.4320223Z 2025-12-05 22:27:43,423 [INFO] adding 'executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis/GpuMemDumpVis.py' 2025-12-05T22:27:43.4320504Z 2025-12-05 22:27:43,424 [INFO] adding 'executorch/backends/vulkan/third-party/volk/generate.py' 2025-12-05T22:27:43.4320849Z 2025-12-05 22:27:43,424 [INFO] adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_bandwidth.yaml' 2025-12-05T22:27:43.4321257Z 2025-12-05 22:27:43,424 [INFO] adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_cacheline_size.yaml' 2025-12-05T22:27:43.4321555Z 2025-12-05 22:27:43,425 [INFO] adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/reg_count.yaml' 2025-12-05T22:27:43.4321961Z 2025-12-05 22:27:43,425 [INFO] adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_bandwidth.yaml' 2025-12-05T22:27:43.4322381Z 2025-12-05 22:27:43,425 [INFO] adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_cacheline_concurr.yaml' 2025-12-05T22:27:43.4322755Z 2025-12-05 22:27:43,425 [INFO] adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/warp_size.yaml' 2025-12-05T22:27:43.4323025Z 2025-12-05 22:27:43,425 [INFO] adding 'executorch/backends/xnnpack/__init__.py' 2025-12-05T22:27:43.4323317Z 2025-12-05 22:27:43,426 [INFO] adding 'executorch/backends/xnnpack/xnnpack_preprocess.py' 2025-12-05T22:27:43.4323582Z 2025-12-05 22:27:43,426 [INFO] adding 'executorch/backends/xnnpack/_passes/__init__.py' 2025-12-05T22:27:43.4323951Z 2025-12-05 22:27:43,427 [INFO] adding 'executorch/backends/xnnpack/_passes/channels_last_tagged_reshape_pass.py' 2025-12-05T22:27:43.4324318Z 2025-12-05 22:27:43,427 [INFO] adding 'executorch/backends/xnnpack/_passes/conv1d_unsqueeze_pass.py' 2025-12-05T22:27:43.4324597Z 2025-12-05 22:27:43,427 [INFO] adding 'executorch/backends/xnnpack/_passes/convert_to_linear.py' 2025-12-05T22:27:43.4324930Z 2025-12-05 22:27:43,428 [INFO] adding 'executorch/backends/xnnpack/_passes/convert_to_sdpa.py' 2025-12-05T22:27:43.4325293Z 2025-12-05 22:27:43,428 [INFO] adding 'executorch/backends/xnnpack/_passes/convert_to_upsample_bilinear2d.py' 2025-12-05T22:27:43.4325555Z 2025-12-05 22:27:43,428 [INFO] adding 'executorch/backends/xnnpack/_passes/decompose_cat.py' 2025-12-05T22:27:43.4325866Z 2025-12-05 22:27:43,428 [INFO] adding 'executorch/backends/xnnpack/_passes/fuse_activation_pass.py' 2025-12-05T22:27:43.4539564Z 2025-12-05 22:27:43,429 [INFO] adding 'executorch/backends/xnnpack/_passes/fuse_batch_norm.py' 2025-12-05T22:27:43.4540076Z 2025-12-05 22:27:43,429 [INFO] adding 'executorch/backends/xnnpack/_passes/prelu_reshape_pass.py' 2025-12-05T22:27:43.4540691Z 2025-12-05 22:27:43,429 [INFO] adding 'executorch/backends/xnnpack/_passes/propagate_custom_meta_pass.py' 2025-12-05T22:27:43.4541326Z 2025-12-05 22:27:43,430 [INFO] adding 'executorch/backends/xnnpack/_passes/remove_redundant_copy_pass.py' 2025-12-05T22:27:43.4541863Z 2025-12-05 22:27:43,430 [INFO] adding 'executorch/backends/xnnpack/_passes/xnnpack_pass.py' 2025-12-05T22:27:43.4542343Z 2025-12-05 22:27:43,430 [INFO] adding 'executorch/backends/xnnpack/operators/__init__.py' 2025-12-05T22:27:43.4542627Z 2025-12-05 22:27:43,431 [INFO] adding 'executorch/backends/xnnpack/operators/node_visitor.py' 2025-12-05T22:27:43.4542866Z 2025-12-05 22:27:43,431 [INFO] adding 'executorch/backends/xnnpack/operators/op_abs.py' 2025-12-05T22:27:43.4543120Z 2025-12-05 22:27:43,432 [INFO] adding 'executorch/backends/xnnpack/operators/op_add.py' 2025-12-05T22:27:43.4543592Z 2025-12-05 22:27:43,432 [INFO] adding 'executorch/backends/xnnpack/operators/op_addmm.py' 2025-12-05T22:27:43.4543887Z 2025-12-05 22:27:43,432 [INFO] adding 'executorch/backends/xnnpack/operators/op_avg_pooling2d.py' 2025-12-05T22:27:43.4544142Z 2025-12-05 22:27:43,432 [INFO] adding 'executorch/backends/xnnpack/operators/op_bmm.py' 2025-12-05T22:27:43.4544381Z 2025-12-05 22:27:43,432 [INFO] adding 'executorch/backends/xnnpack/operators/op_cat.py' 2025-12-05T22:27:43.4544639Z 2025-12-05 22:27:43,433 [INFO] adding 'executorch/backends/xnnpack/operators/op_ceiling.py' 2025-12-05T22:27:43.4544896Z 2025-12-05 22:27:43,433 [INFO] adding 'executorch/backends/xnnpack/operators/op_clamp.py' 2025-12-05T22:27:43.4545145Z 2025-12-05 22:27:43,433 [INFO] adding 'executorch/backends/xnnpack/operators/op_clone.py' 2025-12-05T22:27:43.4545396Z 2025-12-05 22:27:43,434 [INFO] adding 'executorch/backends/xnnpack/operators/op_conv2d.py' 2025-12-05T22:27:43.4545646Z 2025-12-05 22:27:43,434 [INFO] adding 'executorch/backends/xnnpack/operators/op_div.py' 2025-12-05T22:27:43.4545981Z 2025-12-05 22:27:43,434 [INFO] adding 'executorch/backends/xnnpack/operators/op_dynamic_dequantize_ops.py' 2025-12-05T22:27:43.4546303Z 2025-12-05 22:27:43,434 [INFO] adding 'executorch/backends/xnnpack/operators/op_dynamic_quantize_ops.py' 2025-12-05T22:27:43.4546604Z 2025-12-05 22:27:43,435 [INFO] adding 'executorch/backends/xnnpack/operators/op_elu.py' 2025-12-05T22:27:43.4546838Z 2025-12-05 22:27:43,435 [INFO] adding 'executorch/backends/xnnpack/operators/op_exp.py' 2025-12-05T22:27:43.4547081Z 2025-12-05 22:27:43,435 [INFO] adding 'executorch/backends/xnnpack/operators/op_floor.py' 2025-12-05T22:27:43.4547369Z 2025-12-05 22:27:43,435 [INFO] adding 'executorch/backends/xnnpack/operators/op_gelu.py' 2025-12-05T22:27:43.4547647Z 2025-12-05 22:27:43,435 [INFO] adding 'executorch/backends/xnnpack/operators/op_hardswish.py' 2025-12-05T22:27:43.4547908Z 2025-12-05 22:27:43,436 [INFO] adding 'executorch/backends/xnnpack/operators/op_hardtanh.py' 2025-12-05T22:27:43.4548178Z 2025-12-05 22:27:43,436 [INFO] adding 'executorch/backends/xnnpack/operators/op_leaky_relu.py' 2025-12-05T22:27:43.4548504Z 2025-12-05 22:27:43,436 [INFO] adding 'executorch/backends/xnnpack/operators/op_linear.py' 2025-12-05T22:27:43.4548746Z 2025-12-05 22:27:43,436 [INFO] adding 'executorch/backends/xnnpack/operators/op_log.py' 2025-12-05T22:27:43.4549074Z 2025-12-05 22:27:43,436 [INFO] adding 'executorch/backends/xnnpack/operators/op_matrix_multiplication.py' 2025-12-05T22:27:43.4549343Z 2025-12-05 22:27:43,437 [INFO] adding 'executorch/backends/xnnpack/operators/op_max_dim.py' 2025-12-05T22:27:43.4549616Z 2025-12-05 22:27:43,437 [INFO] adding 'executorch/backends/xnnpack/operators/op_max_pool2d.py' 2025-12-05T22:27:43.4549872Z 2025-12-05 22:27:43,437 [INFO] adding 'executorch/backends/xnnpack/operators/op_maximum.py' 2025-12-05T22:27:43.4550146Z 2025-12-05 22:27:43,437 [INFO] adding 'executorch/backends/xnnpack/operators/op_mean_dim.py' 2025-12-05T22:27:43.4550406Z 2025-12-05 22:27:43,438 [INFO] adding 'executorch/backends/xnnpack/operators/op_minimum.py' 2025-12-05T22:27:43.4550667Z 2025-12-05 22:27:43,438 [INFO] adding 'executorch/backends/xnnpack/operators/op_multiply.py' 2025-12-05T22:27:43.4550928Z 2025-12-05 22:27:43,438 [INFO] adding 'executorch/backends/xnnpack/operators/op_negate.py' 2025-12-05T22:27:43.4551185Z 2025-12-05 22:27:43,438 [INFO] adding 'executorch/backends/xnnpack/operators/op_permute.py' 2025-12-05T22:27:43.4551429Z 2025-12-05 22:27:43,439 [INFO] adding 'executorch/backends/xnnpack/operators/op_prelu.py' 2025-12-05T22:27:43.4551728Z 2025-12-05 22:27:43,439 [INFO] adding 'executorch/backends/xnnpack/operators/op_quant_dequant.py' 2025-12-05T22:27:43.4551967Z 2025-12-05 22:27:43,439 [INFO] adding 'executorch/backends/xnnpack/operators/op_relu.py' 2025-12-05T22:27:43.4552212Z 2025-12-05 22:27:43,439 [INFO] adding 'executorch/backends/xnnpack/operators/op_rsqrt.py' 2025-12-05T22:27:43.4552521Z 2025-12-05 22:27:43,439 [INFO] adding 'executorch/backends/xnnpack/operators/op_sigmoid.py' 2025-12-05T22:27:43.4552771Z 2025-12-05 22:27:43,440 [INFO] adding 'executorch/backends/xnnpack/operators/op_sin.py' 2025-12-05T22:27:43.4553029Z 2025-12-05 22:27:43,440 [INFO] adding 'executorch/backends/xnnpack/operators/op_skip_ops.py' 2025-12-05T22:27:43.4553299Z 2025-12-05 22:27:43,440 [INFO] adding 'executorch/backends/xnnpack/operators/op_slice_copy.py' 2025-12-05T22:27:43.4553567Z 2025-12-05 22:27:43,440 [INFO] adding 'executorch/backends/xnnpack/operators/op_softmax.py' 2025-12-05T22:27:43.4553816Z 2025-12-05 22:27:43,440 [INFO] adding 'executorch/backends/xnnpack/operators/op_square.py' 2025-12-05T22:27:43.4554093Z 2025-12-05 22:27:43,441 [INFO] adding 'executorch/backends/xnnpack/operators/op_square_root.py' 2025-12-05T22:27:43.4554359Z 2025-12-05 22:27:43,441 [INFO] adding 'executorch/backends/xnnpack/operators/op_squeeze.py' 2025-12-05T22:27:43.4554676Z 2025-12-05 22:27:43,441 [INFO] adding 'executorch/backends/xnnpack/operators/op_static_constant_pad.py' 2025-12-05T22:27:43.4555020Z 2025-12-05 22:27:43,441 [INFO] adding 'executorch/backends/xnnpack/operators/op_static_resize_bilinear_2d.py' 2025-12-05T22:27:43.4555266Z 2025-12-05 22:27:43,442 [INFO] adding 'executorch/backends/xnnpack/operators/op_sub.py' 2025-12-05T22:27:43.4555534Z 2025-12-05 22:27:43,442 [INFO] adding 'executorch/backends/xnnpack/operators/op_tanh.py' 2025-12-05T22:27:43.4555786Z 2025-12-05 22:27:43,442 [INFO] adding 'executorch/backends/xnnpack/operators/op_to_copy.py' 2025-12-05T22:27:43.4556064Z 2025-12-05 22:27:43,442 [INFO] adding 'executorch/backends/xnnpack/operators/op_view_copy.py' 2025-12-05T22:27:43.4556356Z 2025-12-05 22:27:43,443 [INFO] adding 'executorch/backends/xnnpack/operators/quant_params.py' 2025-12-05T22:27:43.4556660Z 2025-12-05 22:27:43,443 [INFO] adding 'executorch/backends/xnnpack/partition/xnnpack_partitioner.py' 2025-12-05T22:27:43.4556952Z 2025-12-05 22:27:43,444 [INFO] adding 'executorch/backends/xnnpack/partition/config/__init__.py' 2025-12-05T22:27:43.4557255Z 2025-12-05 22:27:43,444 [INFO] adding 'executorch/backends/xnnpack/partition/config/gemm_configs.py' 2025-12-05T22:27:43.4557596Z 2025-12-05 22:27:43,445 [INFO] adding 'executorch/backends/xnnpack/partition/config/generic_node_configs.py' 2025-12-05T22:27:43.4557910Z 2025-12-05 22:27:43,445 [INFO] adding 'executorch/backends/xnnpack/partition/config/node_configs.py' 2025-12-05T22:27:43.4558252Z 2025-12-05 22:27:43,445 [INFO] adding 'executorch/backends/xnnpack/partition/config/quant_affine_configs.py' 2025-12-05T22:27:43.4558563Z 2025-12-05 22:27:43,446 [INFO] adding 'executorch/backends/xnnpack/partition/config/xnnpack_config.py' 2025-12-05T22:27:43.4558874Z 2025-12-05 22:27:43,446 [INFO] adding 'executorch/backends/xnnpack/partition/graphs/bilinear_2d.py' 2025-12-05T22:27:43.4559135Z 2025-12-05 22:27:43,446 [INFO] adding 'executorch/backends/xnnpack/partition/graphs/sdpa.py' 2025-12-05T22:27:43.4559429Z 2025-12-05 22:27:43,447 [INFO] adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py' 2025-12-05T22:27:43.4559752Z 2025-12-05 22:27:43,448 [INFO] adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer_utils.py' 2025-12-05T22:27:43.4560001Z 2025-12-05 22:27:43,448 [INFO] adding 'executorch/backends/xnnpack/recipes/__init__.py' 2025-12-05T22:27:43.4560314Z 2025-12-05 22:27:43,448 [INFO] adding 'executorch/backends/xnnpack/recipes/xnnpack_recipe_provider.py' 2025-12-05T22:27:43.4560607Z 2025-12-05 22:27:43,448 [INFO] adding 'executorch/backends/xnnpack/recipes/xnnpack_recipe_types.py' 2025-12-05T22:27:43.4560920Z 2025-12-05 22:27:43,449 [INFO] adding 'executorch/backends/xnnpack/serialization/runtime_schema.fbs' 2025-12-05T22:27:43.4561180Z 2025-12-05 22:27:43,449 [INFO] adding 'executorch/backends/xnnpack/serialization/schema.fbs' 2025-12-05T22:27:43.4561506Z 2025-12-05 22:27:43,450 [INFO] adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_schema.py' 2025-12-05T22:27:43.4561922Z 2025-12-05 22:27:43,450 [INFO] adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_serialize.py' 2025-12-05T22:27:43.4562146Z 2025-12-05 22:27:43,450 [INFO] adding 'executorch/backends/xnnpack/test/__init__.py' 2025-12-05T22:27:43.4562444Z 2025-12-05 22:27:43,451 [INFO] adding 'executorch/backends/xnnpack/test/test_xnnpack_partitioner.py' 2025-12-05T22:27:43.4562731Z 2025-12-05 22:27:43,451 [INFO] adding 'executorch/backends/xnnpack/test/test_xnnpack_utils.py' 2025-12-05T22:27:43.4563036Z 2025-12-05 22:27:43,451 [INFO] adding 'executorch/backends/xnnpack/test/test_xnnpack_utils_classes.py' 2025-12-05T22:27:43.4563306Z 2025-12-05 22:27:43,452 [INFO] adding 'executorch/backends/xnnpack/test/models/deeplab_v3.py' 2025-12-05T22:27:43.4563556Z 2025-12-05 22:27:43,452 [INFO] adding 'executorch/backends/xnnpack/test/models/edsr.py' 2025-12-05T22:27:43.4563836Z 2025-12-05 22:27:43,452 [INFO] adding 'executorch/backends/xnnpack/test/models/emformer_rnnt.py' 2025-12-05T22:27:43.4564118Z 2025-12-05 22:27:43,452 [INFO] adding 'executorch/backends/xnnpack/test/models/inception_v3.py' 2025-12-05T22:27:43.4564406Z 2025-12-05 22:27:43,453 [INFO] adding 'executorch/backends/xnnpack/test/models/inception_v4.py' 2025-12-05T22:27:43.4765356Z 2025-12-05 22:27:43,453 [INFO] adding 'executorch/backends/xnnpack/test/models/llama2_et_example.py' 2025-12-05T22:27:43.4765938Z 2025-12-05 22:27:43,453 [INFO] adding 'executorch/backends/xnnpack/test/models/mobilebert.py' 2025-12-05T22:27:43.4766319Z 2025-12-05 22:27:43,453 [INFO] adding 'executorch/backends/xnnpack/test/models/mobilenet_v2.py' 2025-12-05T22:27:43.4766763Z 2025-12-05 22:27:43,454 [INFO] adding 'executorch/backends/xnnpack/test/models/mobilenet_v3.py' 2025-12-05T22:27:43.4767063Z 2025-12-05 22:27:43,454 [INFO] adding 'executorch/backends/xnnpack/test/models/resnet.py' 2025-12-05T22:27:43.4767369Z 2025-12-05 22:27:43,454 [INFO] adding 'executorch/backends/xnnpack/test/models/torchvision_vit.py' 2025-12-05T22:27:43.4767669Z 2025-12-05 22:27:43,454 [INFO] adding 'executorch/backends/xnnpack/test/models/very_big_model.py' 2025-12-05T22:27:43.4767900Z 2025-12-05 22:27:43,454 [INFO] adding 'executorch/backends/xnnpack/test/models/w2l.py' 2025-12-05T22:27:43.4768205Z 2025-12-05 22:27:43,455 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_abs.py' 2025-12-05T22:27:43.4768510Z 2025-12-05 22:27:43,455 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_add.py' 2025-12-05T22:27:43.4768881Z 2025-12-05 22:27:43,455 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_avgpool2d.py' 2025-12-05T22:27:43.4769189Z 2025-12-05 22:27:43,455 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_bilinear2d.py' 2025-12-05T22:27:43.4769488Z 2025-12-05 22:27:43,456 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_bmm.py' 2025-12-05T22:27:43.4769726Z 2025-12-05 22:27:43,456 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_cat.py' 2025-12-05T22:27:43.4769978Z 2025-12-05 22:27:43,456 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_ceil.py' 2025-12-05T22:27:43.4770299Z 2025-12-05 22:27:43,456 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_check_quant_params.py' 2025-12-05T22:27:43.4770546Z 2025-12-05 22:27:43,456 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_clamp.py' 2025-12-05T22:27:43.4770810Z 2025-12-05 22:27:43,457 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_clone.py' 2025-12-05T22:27:43.4771063Z 2025-12-05 22:27:43,457 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_conv1d.py' 2025-12-05T22:27:43.4771316Z 2025-12-05 22:27:43,458 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_conv2d.py' 2025-12-05T22:27:43.4771558Z 2025-12-05 22:27:43,458 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_div.py' 2025-12-05T22:27:43.4771810Z 2025-12-05 22:27:43,458 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_elu.py' 2025-12-05T22:27:43.4772095Z 2025-12-05 22:27:43,458 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_exp.py' 2025-12-05T22:27:43.4772511Z 2025-12-05 22:27:43,458 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_floor.py' 2025-12-05T22:27:43.4772893Z 2025-12-05 22:27:43,459 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_gelu.py' 2025-12-05T22:27:43.4773169Z 2025-12-05 22:27:43,459 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_hardswish.py' 2025-12-05T22:27:43.4773495Z 2025-12-05 22:27:43,459 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_hardtanh.py' 2025-12-05T22:27:43.4773789Z 2025-12-05 22:27:43,459 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_leaky_relu.py' 2025-12-05T22:27:43.4774047Z 2025-12-05 22:27:43,460 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_linear.py' 2025-12-05T22:27:43.4774285Z 2025-12-05 22:27:43,461 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_log.py' 2025-12-05T22:27:43.4774542Z 2025-12-05 22:27:43,461 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_lstm.py' 2025-12-05T22:27:43.4774803Z 2025-12-05 22:27:43,461 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_max_dim.py' 2025-12-05T22:27:43.4775064Z 2025-12-05 22:27:43,461 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_maximum.py' 2025-12-05T22:27:43.4775349Z 2025-12-05 22:27:43,462 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_maxpool2d.py' 2025-12-05T22:27:43.4775648Z 2025-12-05 22:27:43,462 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_mean_dim.py' 2025-12-05T22:27:43.4775903Z 2025-12-05 22:27:43,462 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_minimum.py' 2025-12-05T22:27:43.4776183Z 2025-12-05 22:27:43,462 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_multiply.py' 2025-12-05T22:27:43.4776466Z 2025-12-05 22:27:43,462 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_negate.py' 2025-12-05T22:27:43.4776722Z 2025-12-05 22:27:43,463 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_permute.py' 2025-12-05T22:27:43.4776975Z 2025-12-05 22:27:43,463 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_pow.py' 2025-12-05T22:27:43.4777228Z 2025-12-05 22:27:43,463 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_prelu.py' 2025-12-05T22:27:43.4777563Z 2025-12-05 22:27:43,463 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_quantize_per_tensor.py' 2025-12-05T22:27:43.4777846Z 2025-12-05 22:27:43,464 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_relu.py' 2025-12-05T22:27:43.4778201Z 2025-12-05 22:27:43,464 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_rsqrt.py' 2025-12-05T22:27:43.4778554Z 2025-12-05 22:27:43,464 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_sigmoid.py' 2025-12-05T22:27:43.4778830Z 2025-12-05 22:27:43,464 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_sin.py' 2025-12-05T22:27:43.4779137Z 2025-12-05 22:27:43,464 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_slice_copy.py' 2025-12-05T22:27:43.4779395Z 2025-12-05 22:27:43,465 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_softmax.py' 2025-12-05T22:27:43.4779654Z 2025-12-05 22:27:43,465 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_sqrt.py' 2025-12-05T22:27:43.4779906Z 2025-12-05 22:27:43,465 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_square.py' 2025-12-05T22:27:43.4780229Z 2025-12-05 22:27:43,465 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_static_constant_pad.py' 2025-12-05T22:27:43.4780477Z 2025-12-05 22:27:43,466 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_sub.py' 2025-12-05T22:27:43.4780724Z 2025-12-05 22:27:43,466 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_tanh.py' 2025-12-05T22:27:43.4781032Z 2025-12-05 22:27:43,466 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_to_copy.py' 2025-12-05T22:27:43.4781364Z 2025-12-05 22:27:43,467 [INFO] adding 'executorch/backends/xnnpack/test/ops/test_view_copy.py' 2025-12-05T22:27:43.4781729Z 2025-12-05 22:27:43,467 [INFO] adding 'executorch/backends/xnnpack/test/passes/__init__.py' 2025-12-05T22:27:43.4782237Z 2025-12-05 22:27:43,467 [INFO] adding 'executorch/backends/xnnpack/test/passes/test_activation_fusion.py' 2025-12-05T22:27:43.4782566Z 2025-12-05 22:27:43,467 [INFO] adding 'executorch/backends/xnnpack/test/passes/test_batch_norm_fusion.py' 2025-12-05T22:27:43.4782964Z 2025-12-05 22:27:43,468 [INFO] adding 'executorch/backends/xnnpack/test/passes/test_channels_last_tagged_reshape.py' 2025-12-05T22:27:43.4783288Z 2025-12-05 22:27:43,468 [INFO] adding 'executorch/backends/xnnpack/test/passes/test_convert_to_linear.py' 2025-12-05T22:27:43.4783620Z 2025-12-05 22:27:43,468 [INFO] adding 'executorch/backends/xnnpack/test/passes/test_decompose_cat_pass.py' 2025-12-05T22:27:43.4784004Z 2025-12-05 22:27:43,469 [INFO] adding 'executorch/backends/xnnpack/test/passes/test_propagate_custom_meta_pass.py' 2025-12-05T22:27:43.4784340Z 2025-12-05 22:27:43,469 [INFO] adding 'executorch/backends/xnnpack/test/passes/test_remove_get_item_pass.py' 2025-12-05T22:27:43.4784796Z 2025-12-05 22:27:43,469 [INFO] adding 'executorch/backends/xnnpack/test/passes/test_remove_redundant_copy_pass.py' 2025-12-05T22:27:43.4785307Z 2025-12-05 22:27:43,470 [INFO] adding 'executorch/backends/xnnpack/test/quantizer/test_pt2e_quantization.py' 2025-12-05T22:27:43.4785656Z 2025-12-05 22:27:43,470 [INFO] adding 'executorch/backends/xnnpack/test/quantizer/test_representation.py' 2025-12-05T22:27:43.4786115Z 2025-12-05 22:27:43,471 [INFO] adding 'executorch/backends/xnnpack/test/quantizer/test_xnnpack_quantizer.py' 2025-12-05T22:27:43.4786449Z 2025-12-05 22:27:43,472 [INFO] adding 'executorch/backends/xnnpack/test/recipes/test_xnnpack_recipes.py' 2025-12-05T22:27:43.4786877Z 2025-12-05 22:27:43,472 [INFO] adding 'executorch/backends/xnnpack/test/serialization/test_serialization.py' 2025-12-05T22:27:43.4787259Z 2025-12-05 22:27:43,472 [INFO] adding 'executorch/backends/xnnpack/test/serialization/test_xnnheader.py' 2025-12-05T22:27:43.4787611Z 2025-12-05 22:27:43,473 [INFO] adding 'executorch/backends/xnnpack/test/tester/__init__.py' 2025-12-05T22:27:43.4787943Z 2025-12-05 22:27:43,473 [INFO] adding 'executorch/backends/xnnpack/test/tester/tester.py' 2025-12-05T22:27:43.4788367Z 2025-12-05 22:27:43,473 [INFO] adding 'executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py' 2025-12-05T22:27:43.4788744Z 2025-12-05 22:27:43,473 [INFO] adding 'executorch/backends/xnnpack/third-party/FP16/configure.py' 2025-12-05T22:27:43.4789103Z 2025-12-05 22:27:43,474 [INFO] adding 'executorch/backends/xnnpack/third-party/FP16/confu.yaml' 2025-12-05T22:27:43.4789553Z 2025-12-05 22:27:43,474 [INFO] adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/__init__.py' 2025-12-05T22:27:43.4789954Z 2025-12-05 22:27:43,474 [INFO] adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx.py' 2025-12-05T22:27:43.4790347Z 2025-12-05 22:27:43,474 [INFO] adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx2.py' 2025-12-05T22:27:43.4790677Z 2025-12-05 22:27:43,474 [INFO] adding 'executorch/backends/xnnpack/third-party/FP16/test/peachpy/stubs.py' 2025-12-05T22:27:43.4790981Z 2025-12-05 22:27:43,475 [INFO] adding 'executorch/backends/xnnpack/third-party/FXdiv/configure.py' 2025-12-05T22:27:43.4791261Z 2025-12-05 22:27:43,475 [INFO] adding 'executorch/backends/xnnpack/third-party/FXdiv/confu.yaml' 2025-12-05T22:27:43.4791770Z 2025-12-05 22:27:43,475 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/aarch32_template.py' 2025-12-05T22:27:43.4952733Z 2025-12-05 22:27:43,476 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/aarch64_template.py' 2025-12-05T22:27:43.4953168Z 2025-12-05 22:27:43,476 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/arm_template.py' 2025-12-05T22:27:43.4953596Z 2025-12-05 22:27:43,476 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/avx512bf16_template.py' 2025-12-05T22:27:43.4953996Z 2025-12-05 22:27:43,477 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/avx512f_template.py' 2025-12-05T22:27:43.4954582Z 2025-12-05 22:27:43,477 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/avx512vnni_template.py' 2025-12-05T22:27:43.4955003Z 2025-12-05 22:27:43,477 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/base_architecture.py' 2025-12-05T22:27:43.4955391Z 2025-12-05 22:27:43,478 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/fma3_template.py' 2025-12-05T22:27:43.4955757Z 2025-12-05 22:27:43,478 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate.py' 2025-12-05T22:27:43.4956268Z 2025-12-05 22:27:43,478 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_bf16_f32_gemm_microkernels.py' 2025-12-05T22:27:43.4956737Z 2025-12-05 22:27:43,478 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_f32_gemm_microkernels.py' 2025-12-05T22:27:43.4957212Z 2025-12-05 22:27:43,479 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_gemm_microkernels_main.py' 2025-12-05T22:27:43.4957732Z 2025-12-05 22:27:43,479 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_qd8_f32_qc4w_gemm_microkernels.py' 2025-12-05T22:27:43.4958287Z 2025-12-05 22:27:43,479 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_qd8_f32_qc8w_gemm_microkernels.py' 2025-12-05T22:27:43.4958858Z 2025-12-05 22:27:43,479 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_qs8_qc4w_gemm_microkernels.py' 2025-12-05T22:27:43.4959627Z 2025-12-05 22:27:43,480 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/generate_qs8_qc8w_gemm_microkernels.py' 2025-12-05T22:27:43.4960106Z 2025-12-05 22:27:43,480 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/neondot_template.py' 2025-12-05T22:27:43.4960513Z 2025-12-05 22:27:43,480 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/neonfma_template.py' 2025-12-05T22:27:43.4960968Z 2025-12-05 22:27:43,481 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/neonmlal_aarch32_template.py' 2025-12-05T22:27:43.4961347Z 2025-12-05 22:27:43,481 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/gemm_compiler/x64_template.py' 2025-12-05T22:27:43.4961702Z 2025-12-05 22:27:43,482 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_config.py' 2025-12-05T22:27:43.4962101Z 2025-12-05 22:27:43,482 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_files_changed.py' 2025-12-05T22:27:43.4962523Z 2025-12-05 22:27:43,482 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py' 2025-12-05T22:27:43.4962887Z 2025-12-05 22:27:43,483 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py' 2025-12-05T22:27:43.4963286Z 2025-12-05 22:27:43,483 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-f32-gemm-minmax.yaml' 2025-12-05T22:27:43.4963654Z 2025-12-05 22:27:43,483 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-gemm-minmax.yaml' 2025-12-05T22:27:43.4964021Z 2025-12-05 22:27:43,483 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-conv-hwc2chw.yaml' 2025-12-05T22:27:43.4964396Z 2025-12-05 22:27:43,483 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-dwconv2d-chw.yaml' 2025-12-05T22:27:43.4964794Z 2025-12-05 22:27:43,484 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-gemm-minmax.yaml' 2025-12-05T22:27:43.4965191Z 2025-12-05 22:27:43,484 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-igemm-minmax.yaml' 2025-12-05T22:27:43.4965565Z 2025-12-05 22:27:43,484 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-gemm-minmax.yaml' 2025-12-05T22:27:43.4966009Z 2025-12-05 22:27:43,484 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear-chw.yaml' 2025-12-05T22:27:43.4966365Z 2025-12-05 22:27:43,484 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear.yaml' 2025-12-05T22:27:43.4966798Z 2025-12-05 22:27:43,485 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-igemm-minmax.yaml' 2025-12-05T22:27:43.4967381Z 2025-12-05 22:27:43,485 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-raddstoreexpminusmax.yaml' 2025-12-05T22:27:43.4967790Z 2025-12-05 22:27:43,485 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-argmaxpool.yaml' 2025-12-05T22:27:43.4968224Z 2025-12-05 22:27:43,485 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc2chw.yaml' 2025-12-05T22:27:43.4968600Z 2025-12-05 22:27:43,486 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-dwconv2d-chw.yaml' 2025-12-05T22:27:43.4968963Z 2025-12-05 22:27:43,486 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-minmax.yaml' 2025-12-05T22:27:43.4969314Z 2025-12-05 22:27:43,487 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-relu.yaml' 2025-12-05T22:27:43.4969694Z 2025-12-05 22:27:43,487 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm.yaml' 2025-12-05T22:27:43.4970066Z 2025-12-05 22:27:43,487 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear-chw.yaml' 2025-12-05T22:27:43.4970446Z 2025-12-05 22:27:43,487 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear.yaml' 2025-12-05T22:27:43.4970823Z 2025-12-05 22:27:43,487 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-minmax.yaml' 2025-12-05T22:27:43.4971177Z 2025-12-05 22:27:43,488 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-relu.yaml' 2025-12-05T22:27:43.4971565Z 2025-12-05 22:27:43,488 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm.yaml' 2025-12-05T22:27:43.4972141Z 2025-12-05 22:27:43,488 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ppmm-minmax.yaml' 2025-12-05T22:27:43.4972540Z 2025-12-05 22:27:43,488 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc4w-gemm-minmax.yaml' 2025-12-05T22:27:43.4972990Z 2025-12-05 22:27:43,489 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-minmax.yaml' 2025-12-05T22:27:43.4973377Z 2025-12-05 22:27:43,489 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-relu.yaml' 2025-12-05T22:27:43.4973729Z 2025-12-05 22:27:43,489 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm.yaml' 2025-12-05T22:27:43.4974136Z 2025-12-05 22:27:43,489 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddexpminusmax.yaml' 2025-12-05T22:27:43.4974711Z 2025-12-05 22:27:43,490 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddstoreexpminusmax.yaml' 2025-12-05T22:27:43.4975145Z 2025-12-05 22:27:43,490 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/pf16-gemm-minmax.yaml' 2025-12-05T22:27:43.4975588Z 2025-12-05 22:27:43,490 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/pf32-gemm-minmax.yaml' 2025-12-05T22:27:43.4975998Z 2025-12-05 22:27:43,490 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/pqs8-qc8w-gemm-minmax.yaml' 2025-12-05T22:27:43.4976404Z 2025-12-05 22:27:43,490 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qb4w-gemm-minmax.yaml' 2025-12-05T22:27:43.4976806Z 2025-12-05 22:27:43,491 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc4w-gemm-minmax.yaml' 2025-12-05T22:27:43.4977268Z 2025-12-05 22:27:43,491 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-gemm-minmax.yaml' 2025-12-05T22:27:43.4977963Z 2025-12-05 22:27:43,491 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-igemm-minmax.yaml' 2025-12-05T22:27:43.4978419Z 2025-12-05 22:27:43,492 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qb4w-gemm-minmax.yaml' 2025-12-05T22:27:43.4978855Z 2025-12-05 22:27:43,492 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc4w-gemm-minmax.yaml' 2025-12-05T22:27:43.4979258Z 2025-12-05 22:27:43,493 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-gemm-minmax.yaml' 2025-12-05T22:27:43.4979688Z 2025-12-05 22:27:43,493 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-igemm-minmax.yaml' 2025-12-05T22:27:43.4980230Z 2025-12-05 22:27:43,494 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qb4w-gemm-minmax.yaml' 2025-12-05T22:27:43.4980730Z 2025-12-05 22:27:43,494 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc4w-gemm-minmax.yaml' 2025-12-05T22:27:43.4981203Z 2025-12-05 22:27:43,494 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc8w-gemm-minmax.yaml' 2025-12-05T22:27:43.8474888Z 2025-12-05 22:27:43,494 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc4w-gemm-minmax-fp32.yaml' 2025-12-05T22:27:43.8475939Z 2025-12-05 22:27:43,495 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-gemm-minmax-fp32.yaml' 2025-12-05T22:27:43.8476930Z 2025-12-05 22:27:43,496 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-igemm-minmax-fp32.yaml' 2025-12-05T22:27:43.8478237Z 2025-12-05 22:27:43,496 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-fp32.yaml' 2025-12-05T22:27:43.8479263Z 2025-12-05 22:27:43,497 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-rndnu.yaml' 2025-12-05T22:27:43.8480370Z 2025-12-05 22:27:43,497 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-fp32.yaml' 2025-12-05T22:27:43.8481363Z 2025-12-05 22:27:43,497 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-rndnu.yaml' 2025-12-05T22:27:43.8482494Z 2025-12-05 22:27:43,497 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/s8-ibilinear.yaml' 2025-12-05T22:27:43.8483394Z 2025-12-05 22:27:43,498 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-ibilinear.yaml' 2025-12-05T22:27:43.8484244Z 2025-12-05 22:27:43,498 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/x8-lut.yaml' 2025-12-05T22:27:43.8485259Z 2025-12-05 22:27:43,498 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py' 2025-12-05T22:27:43.8486323Z 2025-12-05 22:27:43,499 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py' 2025-12-05T22:27:43.8487258Z 2025-12-05 22:27:43,499 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py' 2025-12-05T22:27:43.8502403Z 2025-12-05 22:27:43,500 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-test.py' 2025-12-05T22:27:43.8503693Z 2025-12-05 22:27:43,500 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py' 2025-12-05T22:27:43.8504611Z 2025-12-05 22:27:43,501 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py' 2025-12-05T22:27:43.8505744Z 2025-12-05 22:27:43,502 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py' 2025-12-05T22:27:43.8506688Z 2025-12-05 22:27:43,502 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py' 2025-12-05T22:27:43.8507590Z 2025-12-05 22:27:43,502 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py' 2025-12-05T22:27:43.8508994Z 2025-12-05 22:27:43,503 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py' 2025-12-05T22:27:43.8510021Z 2025-12-05 22:27:43,503 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py' 2025-12-05T22:27:43.8511281Z 2025-12-05 22:27:43,503 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-discontiguous-test.py' 2025-12-05T22:27:43.8512253Z 2025-12-05 22:27:43,504 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py' 2025-12-05T22:27:43.8513218Z 2025-12-05 22:27:43,504 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py' 2025-12-05T22:27:43.8514226Z 2025-12-05 22:27:43,505 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py' 2025-12-05T22:27:43.8515125Z 2025-12-05 22:27:43,505 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py' 2025-12-05T22:27:43.8516208Z 2025-12-05 22:27:43,505 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/parse-microkernel-bench.py' 2025-12-05T22:27:43.8517064Z 2025-12-05 22:27:43,506 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/primes.py' 2025-12-05T22:27:43.8517941Z 2025-12-05 22:27:43,506 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py' 2025-12-05T22:27:43.8518924Z 2025-12-05 22:27:43,507 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xngen.py' 2025-12-05T22:27:43.8519903Z 2025-12-05 22:27:43,507 [INFO] adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xnncommon.py' 2025-12-05T22:27:43.8520661Z 2025-12-05 22:27:43,507 [INFO] adding 'executorch/backends/xnnpack/third-party/cpuinfo/configure.py' 2025-12-05T22:27:43.8521386Z 2025-12-05 22:27:43,507 [INFO] adding 'executorch/backends/xnnpack/third-party/cpuinfo/confu.yaml' 2025-12-05T22:27:43.8522305Z 2025-12-05 22:27:43,508 [INFO] adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/configure.py' 2025-12-05T22:27:43.8523157Z 2025-12-05 22:27:43,508 [INFO] adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/confu.yaml' 2025-12-05T22:27:43.8524004Z 2025-12-05 22:27:43,508 [INFO] adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py' 2025-12-05T22:27:43.8525089Z 2025-12-05 22:27:43,509 [INFO] adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py' 2025-12-05T22:27:43.8526039Z 2025-12-05 22:27:43,509 [INFO] adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py' 2025-12-05T22:27:43.8526877Z 2025-12-05 22:27:43,509 [INFO] adding 'executorch/backends/xnnpack/third-party/pthreadpool/configure.py' 2025-12-05T22:27:43.8527642Z 2025-12-05 22:27:43,510 [INFO] adding 'executorch/backends/xnnpack/third-party/pthreadpool/confu.yaml' 2025-12-05T22:27:43.8528473Z 2025-12-05 22:27:43,511 [INFO] adding 'executorch/backends/xnnpack/utils/configs.py' 2025-12-05T22:27:43.8529062Z 2025-12-05 22:27:43,511 [INFO] adding 'executorch/backends/xnnpack/utils/quant_utils.py' 2025-12-05T22:27:43.8529653Z 2025-12-05 22:27:43,511 [INFO] adding 'executorch/backends/xnnpack/utils/utils.py' 2025-12-05T22:27:43.8530257Z 2025-12-05 22:27:43,511 [INFO] adding 'executorch/backends/xnnpack/utils/xnnpack_constants.py' 2025-12-05T22:27:43.8530939Z 2025-12-05 22:27:43,512 [INFO] adding 'executorch/codegen/__init__.py' 2025-12-05T22:27:43.8531455Z 2025-12-05 22:27:43,513 [INFO] adding 'executorch/codegen/gen.py' 2025-12-05T22:27:43.8531921Z 2025-12-05 22:27:43,513 [INFO] adding 'executorch/codegen/model.py' 2025-12-05T22:27:43.8532389Z 2025-12-05 22:27:43,514 [INFO] adding 'executorch/codegen/parse.py' 2025-12-05T22:27:43.8532863Z 2025-12-05 22:27:43,514 [INFO] adding 'executorch/codegen/api/__init__.py' 2025-12-05T22:27:43.8533500Z 2025-12-05 22:27:43,514 [INFO] adding 'executorch/codegen/api/custom_ops.py' 2025-12-05T22:27:43.8533998Z 2025-12-05 22:27:43,515 [INFO] adding 'executorch/codegen/api/et_cpp.py' 2025-12-05T22:27:43.8534503Z 2025-12-05 22:27:43,515 [INFO] adding 'executorch/codegen/api/unboxing.py' 2025-12-05T22:27:43.8535027Z 2025-12-05 22:27:43,515 [INFO] adding 'executorch/codegen/api/types/__init__.py' 2025-12-05T22:27:43.8535569Z 2025-12-05 22:27:43,515 [INFO] adding 'executorch/codegen/api/types/signatures.py' 2025-12-05T22:27:43.8536276Z 2025-12-05 22:27:43,516 [INFO] adding 'executorch/codegen/api/types/types.py' 2025-12-05T22:27:43.8536882Z 2025-12-05 22:27:43,516 [INFO] adding 'executorch/codegen/test/test_executorch_custom_ops.py' 2025-12-05T22:27:43.8537497Z 2025-12-05 22:27:43,516 [INFO] adding 'executorch/codegen/test/test_executorch_gen.py' 2025-12-05T22:27:43.8538123Z 2025-12-05 22:27:43,517 [INFO] adding 'executorch/codegen/test/test_executorch_signatures.py' 2025-12-05T22:27:43.8538753Z 2025-12-05 22:27:43,517 [INFO] adding 'executorch/codegen/test/test_executorch_types.py' 2025-12-05T22:27:43.8539401Z 2025-12-05 22:27:43,517 [INFO] adding 'executorch/codegen/test/test_executorch_unboxing.py' 2025-12-05T22:27:43.8540140Z 2025-12-05 22:27:43,517 [INFO] adding 'executorch/codegen/test/test_selective_build.py' 2025-12-05T22:27:43.8540761Z 2025-12-05 22:27:43,518 [INFO] adding 'executorch/codegen/tools/__init__.py' 2025-12-05T22:27:43.8541347Z 2025-12-05 22:27:43,518 [INFO] adding 'executorch/codegen/tools/combine_prim_ops_headers.py' 2025-12-05T22:27:43.8542103Z 2025-12-05 22:27:43,518 [INFO] adding 'executorch/codegen/tools/gen_all_oplist.py' 2025-12-05T22:27:43.8542683Z 2025-12-05 22:27:43,519 [INFO] adding 'executorch/codegen/tools/gen_oplist.py' 2025-12-05T22:27:43.8543203Z 2025-12-05 22:27:43,519 [INFO] adding 'executorch/codegen/tools/gen_ops_def.py' 2025-12-05T22:27:43.8543799Z 2025-12-05 22:27:43,519 [INFO] adding 'executorch/codegen/tools/gen_selected_op_variants.py' 2025-12-05T22:27:43.8544597Z 2025-12-05 22:27:43,520 [INFO] adding 'executorch/codegen/tools/gen_selected_prim_ops.py' 2025-12-05T22:27:43.8545167Z 2025-12-05 22:27:43,520 [INFO] adding 'executorch/codegen/tools/merge_yaml.py' 2025-12-05T22:27:43.8545860Z 2025-12-05 22:27:43,537 [INFO] adding 'executorch/codegen/tools/selective_build.cpython-310-x86_64-linux-gnu.so' 2025-12-05T22:27:43.8546676Z 2025-12-05 22:27:43,538 [INFO] adding 'executorch/codegen/tools/selective_build.pyi' 2025-12-05T22:27:43.8547271Z 2025-12-05 22:27:43,538 [INFO] adding 'executorch/codegen/tools/yaml_util.py' 2025-12-05T22:27:43.8547858Z 2025-12-05 22:27:43,539 [INFO] adding 'executorch/codegen/tools/test/test_gen_all_oplist.py' 2025-12-05T22:27:43.8548555Z 2025-12-05 22:27:43,539 [INFO] adding 'executorch/codegen/tools/test/test_gen_oplist.py' 2025-12-05T22:27:43.8549224Z 2025-12-05 22:27:43,539 [INFO] adding 'executorch/codegen/tools/test/test_gen_oplist_real_model.py' 2025-12-05T22:27:43.8550095Z 2025-12-05 22:27:43,539 [INFO] adding 'executorch/codegen/tools/test/test_gen_selected_op_variants.py' 2025-12-05T22:27:43.8550827Z 2025-12-05 22:27:43,540 [INFO] adding 'executorch/codegen/tools/test/test_tools_selective_build.py' 2025-12-05T22:27:43.8551416Z 2025-12-05 22:27:43,540 [INFO] adding 'executorch/data/bin/__init__.py' 2025-12-05T22:27:43.8552029Z 2025-12-05 22:27:43,831 [INFO] adding 'executorch/data/bin/flatc' 2025-12-05T22:27:43.8784224Z 2025-12-05 22:27:43,846 [INFO] adding 'executorch/data/lib/aoti_cuda_shims.lib' 2025-12-05T22:27:43.8785501Z 2025-12-05 22:27:43,847 [INFO] adding 'executorch/devtools/__init__.py' 2025-12-05T22:27:43.8786487Z 2025-12-05 22:27:43,847 [INFO] adding 'executorch/devtools/backend_debug/__init__.py' 2025-12-05T22:27:43.8787639Z 2025-12-05 22:27:43,847 [INFO] adding 'executorch/devtools/backend_debug/delegation_info.py' 2025-12-05T22:27:43.8789004Z 2025-12-05 22:27:43,847 [INFO] adding 'executorch/devtools/backend_debug/tests/test_delegation_info.py' 2025-12-05T22:27:43.8790551Z 2025-12-05 22:27:43,848 [INFO] adding 'executorch/devtools/bundled_program/config.py' 2025-12-05T22:27:43.8791601Z 2025-12-05 22:27:43,848 [INFO] adding 'executorch/devtools/bundled_program/core.py' 2025-12-05T22:27:43.8792565Z 2025-12-05 22:27:43,849 [INFO] adding 'executorch/devtools/bundled_program/version.py' 2025-12-05T22:27:43.8793702Z 2025-12-05 22:27:43,849 [INFO] adding 'executorch/devtools/bundled_program/schema/__init__.py' 2025-12-05T22:27:43.8794994Z 2025-12-05 22:27:43,849 [INFO] adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.fbs' 2025-12-05T22:27:43.8796371Z 2025-12-05 22:27:43,849 [INFO] adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.py' 2025-12-05T22:27:43.8797720Z 2025-12-05 22:27:43,850 [INFO] adding 'executorch/devtools/bundled_program/schema/scalar_type.fbs' 2025-12-05T22:27:43.8798930Z 2025-12-05 22:27:43,850 [INFO] adding 'executorch/devtools/bundled_program/schema/test/test_schema.py' 2025-12-05T22:27:43.8800163Z 2025-12-05 22:27:43,850 [INFO] adding 'executorch/devtools/bundled_program/serialize/__init__.py' 2025-12-05T22:27:43.8801448Z 2025-12-05 22:27:43,850 [INFO] adding 'executorch/devtools/bundled_program/serialize/bundled_program_schema.fbs' 2025-12-05T22:27:43.8803037Z 2025-12-05 22:27:43,851 [INFO] adding 'executorch/devtools/bundled_program/serialize/scalar_type.fbs' 2025-12-05T22:27:43.8804429Z 2025-12-05 22:27:43,851 [INFO] adding 'executorch/devtools/bundled_program/serialize/test/test_serialize.py' 2025-12-05T22:27:43.8805832Z 2025-12-05 22:27:43,851 [INFO] adding 'executorch/devtools/bundled_program/test/test_bundle_data.py' 2025-12-05T22:27:43.8807257Z 2025-12-05 22:27:43,851 [INFO] adding 'executorch/devtools/bundled_program/test/test_config.py' 2025-12-05T22:27:43.8808472Z 2025-12-05 22:27:43,852 [INFO] adding 'executorch/devtools/bundled_program/test/test_end2end.py' 2025-12-05T22:27:43.8809707Z 2025-12-05 22:27:43,852 [INFO] adding 'executorch/devtools/bundled_program/util/test_util.py' 2025-12-05T22:27:43.8810902Z 2025-12-05 22:27:43,852 [INFO] adding 'executorch/devtools/debug_format/base_schema.py' 2025-12-05T22:27:43.8812032Z 2025-12-05 22:27:43,853 [INFO] adding 'executorch/devtools/debug_format/et_schema.py' 2025-12-05T22:27:43.8813164Z 2025-12-05 22:27:43,853 [INFO] adding 'executorch/devtools/etdump/etdump_schema_flatcc.fbs' 2025-12-05T22:27:43.8814288Z 2025-12-05 22:27:43,853 [INFO] adding 'executorch/devtools/etdump/scalar_type.fbs' 2025-12-05T22:27:43.8815356Z 2025-12-05 22:27:43,854 [INFO] adding 'executorch/devtools/etdump/schema_flatcc.py' 2025-12-05T22:27:43.8816386Z 2025-12-05 22:27:43,854 [INFO] adding 'executorch/devtools/etdump/serialize.py' 2025-12-05T22:27:43.8817493Z 2025-12-05 22:27:43,854 [INFO] adding 'executorch/devtools/etdump/tests/serialize_test.py' 2025-12-05T22:27:43.8818882Z 2025-12-05 22:27:43,854 [INFO] adding 'executorch/devtools/etrecord/__init__.py' 2025-12-05T22:27:43.8819892Z 2025-12-05 22:27:43,855 [INFO] adding 'executorch/devtools/etrecord/_etrecord.py' 2025-12-05T22:27:43.8821028Z 2025-12-05 22:27:43,857 [INFO] adding 'executorch/devtools/etrecord/tests/etrecord_test.py' 2025-12-05T22:27:43.8822139Z 2025-12-05 22:27:43,857 [INFO] adding 'executorch/devtools/inspector/__init__.py' 2025-12-05T22:27:43.8823216Z 2025-12-05 22:27:43,859 [INFO] adding 'executorch/devtools/inspector/_inspector.py' 2025-12-05T22:27:43.8824290Z 2025-12-05 22:27:43,860 [INFO] adding 'executorch/devtools/inspector/_inspector_utils.py' 2025-12-05T22:27:43.8825523Z 2025-12-05 22:27:43,861 [INFO] adding 'executorch/devtools/inspector/_intermediate_output_capturer.py' 2025-12-05T22:27:43.8826701Z 2025-12-05 22:27:43,861 [INFO] adding 'executorch/devtools/inspector/inspector_cli.py' 2025-12-05T22:27:43.8827822Z 2025-12-05 22:27:43,861 [INFO] adding 'executorch/devtools/inspector/numerical_comparator/__init__.py' 2025-12-05T22:27:43.8829399Z 2025-12-05 22:27:43,861 [INFO] adding 'executorch/devtools/inspector/numerical_comparator/l1_numerical_comparator.py' 2025-12-05T22:27:43.8831329Z 2025-12-05 22:27:43,862 [INFO] adding 'executorch/devtools/inspector/numerical_comparator/mse_numerical_comparator.py' 2025-12-05T22:27:43.8832887Z 2025-12-05 22:27:43,862 [INFO] adding 'executorch/devtools/inspector/numerical_comparator/numerical_comparator_base.py' 2025-12-05T22:27:43.8834460Z 2025-12-05 22:27:43,862 [INFO] adding 'executorch/devtools/inspector/numerical_comparator/snr_numerical_comparator.py' 2025-12-05T22:27:43.8835826Z 2025-12-05 22:27:43,863 [INFO] adding 'executorch/devtools/inspector/tests/event_blocks_test.py' 2025-12-05T22:27:43.8837031Z 2025-12-05 22:27:43,864 [INFO] adding 'executorch/devtools/inspector/tests/inspector_test.py' 2025-12-05T22:27:43.8838220Z 2025-12-05 22:27:43,864 [INFO] adding 'executorch/devtools/inspector/tests/inspector_test_utils.py' 2025-12-05T22:27:43.8839477Z 2025-12-05 22:27:43,865 [INFO] adding 'executorch/devtools/inspector/tests/inspector_utils_test.py' 2025-12-05T22:27:43.8840842Z 2025-12-05 22:27:43,865 [INFO] adding 'executorch/devtools/inspector/tests/intermediate_output_capturer_test.py' 2025-12-05T22:27:43.8842228Z 2025-12-05 22:27:43,866 [INFO] adding 'executorch/devtools/inspector/tests/l1_comparator_test.py' 2025-12-05T22:27:43.8843488Z 2025-12-05 22:27:43,866 [INFO] adding 'executorch/devtools/inspector/tests/mse_comparator_test.py' 2025-12-05T22:27:43.8844810Z 2025-12-05 22:27:43,866 [INFO] adding 'executorch/devtools/inspector/tests/snr_comparator_test.py' 2025-12-05T22:27:43.8845957Z 2025-12-05 22:27:43,866 [INFO] adding 'executorch/devtools/scripts/generate_profiling_csv.py' 2025-12-05T22:27:43.8847299Z 2025-12-05 22:27:43,867 [INFO] adding 'executorch/devtools/size_analysis_tool/size_analysis_tool.py' 2025-12-05T22:27:43.8848621Z 2025-12-05 22:27:43,867 [INFO] adding 'executorch/devtools/size_analysis_tool/size_analysis_tool_test.py' 2025-12-05T22:27:43.8849774Z 2025-12-05 22:27:43,867 [INFO] adding 'executorch/devtools/visualization/__init__.py' 2025-12-05T22:27:43.8850861Z 2025-12-05 22:27:43,868 [INFO] adding 'executorch/devtools/visualization/visualization_utils.py' 2025-12-05T22:27:43.8852085Z 2025-12-05 22:27:43,868 [INFO] adding 'executorch/devtools/visualization/visualization_utils_test.py' 2025-12-05T22:27:43.8853233Z 2025-12-05 22:27:43,868 [INFO] adding 'executorch/examples/apple/coreml/llama/export.py' 2025-12-05T22:27:43.8854333Z 2025-12-05 22:27:43,869 [INFO] adding 'executorch/examples/apple/coreml/llama/llama_transformer.py' 2025-12-05T22:27:43.8855477Z 2025-12-05 22:27:43,870 [INFO] adding 'executorch/examples/apple/coreml/llama/run.py' 2025-12-05T22:27:43.8856613Z 2025-12-05 22:27:43,870 [INFO] adding 'executorch/examples/apple/coreml/llama/run_lookahead.py' 2025-12-05T22:27:43.8857778Z 2025-12-05 22:27:43,870 [INFO] adding 'executorch/examples/apple/coreml/llama/test.py' 2025-12-05T22:27:43.8858799Z 2025-12-05 22:27:43,871 [INFO] adding 'executorch/examples/apple/coreml/llama/utils.py' 2025-12-05T22:27:43.8859863Z 2025-12-05 22:27:43,871 [INFO] adding 'executorch/examples/apple/coreml/scripts/debugger_cli.py' 2025-12-05T22:27:43.8861006Z 2025-12-05 22:27:43,871 [INFO] adding 'executorch/examples/apple/coreml/scripts/export.py' 2025-12-05T22:27:43.8862238Z 2025-12-05 22:27:43,872 [INFO] adding 'executorch/examples/apple/coreml/scripts/extract_coreml_models.py' 2025-12-05T22:27:43.8863500Z 2025-12-05 22:27:43,872 [INFO] adding 'executorch/examples/apple/coreml/scripts/inspector_cli.py' 2025-12-05T22:27:43.8864799Z 2025-12-05 22:27:43,872 [INFO] adding 'executorch/examples/apple/coreml/scripts/inspector_utils.py' 2025-12-05T22:27:43.8866067Z 2025-12-05 22:27:43,873 [INFO] adding 'executorch/examples/apple/mps/scripts/bench_utils.py' 2025-12-05T22:27:43.8867240Z 2025-12-05 22:27:43,873 [INFO] adding 'executorch/examples/apple/mps/scripts/mps_example.py' 2025-12-05T22:27:43.8868241Z 2025-12-05 22:27:43,873 [INFO] adding 'executorch/examples/cuda/scripts/__init__.py' 2025-12-05T22:27:43.8869294Z 2025-12-05 22:27:43,874 [INFO] adding 'executorch/examples/cuda/scripts/export.py' 2025-12-05T22:27:43.8870449Z 2025-12-05 22:27:43,874 [INFO] adding 'executorch/examples/llm_pte_finetuning/__init__.py' 2025-12-05T22:27:43.8871589Z 2025-12-05 22:27:43,874 [INFO] adding 'executorch/examples/llm_pte_finetuning/llama3_config.yaml' 2025-12-05T22:27:43.8872759Z 2025-12-05 22:27:43,874 [INFO] adding 'executorch/examples/llm_pte_finetuning/model_exporter.py' 2025-12-05T22:27:43.8873960Z 2025-12-05 22:27:43,875 [INFO] adding 'executorch/examples/llm_pte_finetuning/model_loading_lib.py' 2025-12-05T22:27:43.8875279Z 2025-12-05 22:27:43,875 [INFO] adding 'executorch/examples/llm_pte_finetuning/phi3_alpaca_code_config.yaml' 2025-12-05T22:27:43.8876537Z 2025-12-05 22:27:43,875 [INFO] adding 'executorch/examples/llm_pte_finetuning/phi3_config.yaml' 2025-12-05T22:27:43.8877788Z 2025-12-05 22:27:43,875 [INFO] adding 'executorch/examples/llm_pte_finetuning/qwen_05b_config.yaml' 2025-12-05T22:27:43.8878906Z 2025-12-05 22:27:43,876 [INFO] adding 'executorch/examples/llm_pte_finetuning/runner.py' 2025-12-05T22:27:43.8880004Z 2025-12-05 22:27:43,876 [INFO] adding 'executorch/examples/llm_pte_finetuning/training_lib.py' 2025-12-05T22:27:43.8881007Z 2025-12-05 22:27:43,876 [INFO] adding 'executorch/examples/models/__init__.py' 2025-12-05T22:27:43.8882014Z 2025-12-05 22:27:43,877 [INFO] adding 'executorch/examples/models/checkpoint.py' 2025-12-05T22:27:43.8882932Z 2025-12-05 22:27:43,877 [INFO] adding 'executorch/examples/models/model_base.py' 2025-12-05T22:27:43.8883908Z 2025-12-05 22:27:43,877 [INFO] adding 'executorch/examples/models/model_factory.py' 2025-12-05T22:27:43.8884995Z 2025-12-05 22:27:43,877 [INFO] adding 'executorch/examples/models/codegen/__init__.py' 2025-12-05T22:27:43.9052215Z 2025-12-05 22:27:43,877 [INFO] adding 'executorch/examples/models/codegen/convert_weight.py' 2025-12-05T22:27:43.9053458Z 2025-12-05 22:27:43,878 [INFO] adding 'executorch/examples/models/deeplab_v3/__init__.py' 2025-12-05T22:27:43.9054577Z 2025-12-05 22:27:43,878 [INFO] adding 'executorch/examples/models/deeplab_v3/model.py' 2025-12-05T22:27:43.9055973Z 2025-12-05 22:27:43,878 [INFO] adding 'executorch/examples/models/deepseek-r1-distill-llama-8B/config/deepseek_xnnpack_q8da4w.yaml' 2025-12-05T22:27:43.9057404Z 2025-12-05 22:27:43,878 [INFO] adding 'executorch/examples/models/deit_tiny/__init__.py' 2025-12-05T22:27:43.9058445Z 2025-12-05 22:27:43,879 [INFO] adding 'executorch/examples/models/deit_tiny/model.py' 2025-12-05T22:27:43.9059426Z 2025-12-05 22:27:43,879 [INFO] adding 'executorch/examples/models/edsr/__init__.py' 2025-12-05T22:27:43.9060358Z 2025-12-05 22:27:43,879 [INFO] adding 'executorch/examples/models/edsr/model.py' 2025-12-05T22:27:43.9061435Z 2025-12-05 22:27:43,879 [INFO] adding 'executorch/examples/models/efficient_sam/__init__.py' 2025-12-05T22:27:43.9062542Z 2025-12-05 22:27:43,880 [INFO] adding 'executorch/examples/models/efficient_sam/model.py' 2025-12-05T22:27:43.9063959Z 2025-12-05 22:27:43,880 [INFO] adding 'executorch/examples/models/efficient_sam/efficient_sam_core/build_efficient_sam.py' 2025-12-05T22:27:43.9065645Z 2025-12-05 22:27:43,880 [INFO] adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam.py' 2025-12-05T22:27:43.9067351Z 2025-12-05 22:27:43,881 [INFO] adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_decoder.py' 2025-12-05T22:27:43.9073236Z 2025-12-05 22:27:43,881 [INFO] adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_encoder.py' 2025-12-05T22:27:43.9074902Z 2025-12-05 22:27:43,881 [INFO] adding 'executorch/examples/models/efficient_sam/efficient_sam_core/mlp.py' 2025-12-05T22:27:43.9076322Z 2025-12-05 22:27:43,882 [INFO] adding 'executorch/examples/models/efficient_sam/efficient_sam_core/two_way_transformer.py' 2025-12-05T22:27:43.9077631Z 2025-12-05 22:27:43,882 [INFO] adding 'executorch/examples/models/emformer_rnnt/__init__.py' 2025-12-05T22:27:43.9078806Z 2025-12-05 22:27:43,882 [INFO] adding 'executorch/examples/models/emformer_rnnt/model.py' 2025-12-05T22:27:43.9080068Z 2025-12-05 22:27:43,882 [INFO] adding 'executorch/examples/models/gemma/__init__.py' 2025-12-05T22:27:43.9081205Z 2025-12-05 22:27:43,883 [INFO] adding 'executorch/examples/models/gemma/convert_weights.py' 2025-12-05T22:27:43.9082326Z 2025-12-05 22:27:43,883 [INFO] adding 'executorch/examples/models/gemma3/__init__.py' 2025-12-05T22:27:43.9083472Z 2025-12-05 22:27:43,883 [INFO] adding 'executorch/examples/models/gemma3/convert_weights.py' 2025-12-05T22:27:43.9084640Z 2025-12-05 22:27:43,883 [INFO] adding 'executorch/examples/models/glm/__init__.py' 2025-12-05T22:27:43.9085725Z 2025-12-05 22:27:43,884 [INFO] adding 'executorch/examples/models/glm/convert_weights.py' 2025-12-05T22:27:43.9086841Z 2025-12-05 22:27:43,884 [INFO] adding 'executorch/examples/models/granite/__init__.py' 2025-12-05T22:27:43.9087990Z 2025-12-05 22:27:43,884 [INFO] adding 'executorch/examples/models/granite/convert_weights.py' 2025-12-05T22:27:43.9089215Z 2025-12-05 22:27:43,884 [INFO] adding 'executorch/examples/models/inception_v3/__init__.py' 2025-12-05T22:27:43.9090319Z 2025-12-05 22:27:43,885 [INFO] adding 'executorch/examples/models/inception_v3/model.py' 2025-12-05T22:27:43.9091379Z 2025-12-05 22:27:43,885 [INFO] adding 'executorch/examples/models/inception_v4/__init__.py' 2025-12-05T22:27:43.9092569Z 2025-12-05 22:27:43,885 [INFO] adding 'executorch/examples/models/inception_v4/model.py' 2025-12-05T22:27:43.9093629Z 2025-12-05 22:27:43,885 [INFO] adding 'executorch/examples/models/lfm2/__init__.py' 2025-12-05T22:27:43.9094867Z 2025-12-05 22:27:43,886 [INFO] adding 'executorch/examples/models/lfm2/convert_weights.py' 2025-12-05T22:27:43.9096037Z 2025-12-05 22:27:43,886 [INFO] adding 'executorch/examples/models/lfm2/short_conv.py' 2025-12-05T22:27:43.9097298Z 2025-12-05 22:27:43,886 [INFO] adding 'executorch/examples/models/lfm2/config/lfm2_xnnpack_fp32.yaml' 2025-12-05T22:27:43.9098616Z 2025-12-05 22:27:43,886 [INFO] adding 'executorch/examples/models/lfm2/config/lfm2_xnnpack_q8da4w.yaml' 2025-12-05T22:27:43.9099689Z 2025-12-05 22:27:43,887 [INFO] adding 'executorch/examples/models/llama/__init__.py' 2025-12-05T22:27:43.9100648Z 2025-12-05 22:27:43,887 [INFO] adding 'executorch/examples/models/llama/attention.py' 2025-12-05T22:27:43.9101687Z 2025-12-05 22:27:43,887 [INFO] adding 'executorch/examples/models/llama/convert_weights.py' 2025-12-05T22:27:43.9102798Z 2025-12-05 22:27:43,888 [INFO] adding 'executorch/examples/models/llama/eval_llama.py' 2025-12-05T22:27:43.9103909Z 2025-12-05 22:27:43,888 [INFO] adding 'executorch/examples/models/llama/eval_llama_lib.py' 2025-12-05T22:27:43.9105052Z 2025-12-05 22:27:43,888 [INFO] adding 'executorch/examples/models/llama/export_llama.py' 2025-12-05T22:27:43.9106154Z 2025-12-05 22:27:43,890 [INFO] adding 'executorch/examples/models/llama/export_llama_lib.py' 2025-12-05T22:27:43.9107162Z 2025-12-05 22:27:43,890 [INFO] adding 'executorch/examples/models/llama/fairseq2.py' 2025-12-05T22:27:43.9108163Z 2025-12-05 22:27:43,890 [INFO] adding 'executorch/examples/models/llama/feed_forward.py' 2025-12-05T22:27:43.9109254Z 2025-12-05 22:27:43,891 [INFO] adding 'executorch/examples/models/llama/hf_download.py' 2025-12-05T22:27:43.9110451Z 2025-12-05 22:27:43,891 [INFO] adding 'executorch/examples/models/llama/install_requirement_helper.py' 2025-12-05T22:27:43.9111645Z 2025-12-05 22:27:43,891 [INFO] adding 'executorch/examples/models/llama/llama_transformer.py' 2025-12-05T22:27:43.9112821Z 2025-12-05 22:27:43,892 [INFO] adding 'executorch/examples/models/llama/lora.py' 2025-12-05T22:27:43.9113719Z 2025-12-05 22:27:43,892 [INFO] adding 'executorch/examples/models/llama/model.py' 2025-12-05T22:27:43.9114670Z 2025-12-05 22:27:43,893 [INFO] adding 'executorch/examples/models/llama/model_args.py' 2025-12-05T22:27:43.9115650Z 2025-12-05 22:27:43,893 [INFO] adding 'executorch/examples/models/llama/norm.py' 2025-12-05T22:27:43.9116622Z 2025-12-05 22:27:43,893 [INFO] adding 'executorch/examples/models/llama/rope.py' 2025-12-05T22:27:43.9117764Z 2025-12-05 22:27:43,894 [INFO] adding 'executorch/examples/models/llama/static_attention.py' 2025-12-05T22:27:43.9119106Z 2025-12-05 22:27:43,895 [INFO] adding 'executorch/examples/models/llama/config/llama_bf16.yaml' 2025-12-05T22:27:43.9120262Z 2025-12-05 22:27:43,895 [INFO] adding 'executorch/examples/models/llama/config/llama_q8da4w.yaml' 2025-12-05T22:27:43.9121533Z 2025-12-05 22:27:43,895 [INFO] adding 'executorch/examples/models/llama/config/llama_xnnpack.yaml' 2025-12-05T22:27:43.9122884Z 2025-12-05 22:27:43,895 [INFO] adding 'executorch/examples/models/llama/config/llama_xnnpack_qat.yaml' 2025-12-05T22:27:43.9124315Z 2025-12-05 22:27:43,895 [INFO] adding 'executorch/examples/models/llama/config/llama_xnnpack_spinquant.yaml' 2025-12-05T22:27:43.9125716Z 2025-12-05 22:27:43,896 [INFO] adding 'executorch/examples/models/llama/config/test_llm_config.py' 2025-12-05T22:27:43.9126972Z 2025-12-05 22:27:43,896 [INFO] adding 'executorch/examples/models/llama/evaluate/__init__.py' 2025-12-05T22:27:43.9128228Z 2025-12-05 22:27:43,896 [INFO] adding 'executorch/examples/models/llama/evaluate/eager_eval.py' 2025-12-05T22:27:43.9129520Z 2025-12-05 22:27:43,896 [INFO] adding 'executorch/examples/models/llama/experimental/__init__.py' 2025-12-05T22:27:43.9130994Z 2025-12-05 22:27:43,897 [INFO] adding 'executorch/examples/models/llama/experimental/generate.py' 2025-12-05T22:27:43.9132392Z 2025-12-05 22:27:43,897 [INFO] adding 'executorch/examples/models/llama/experimental/load_gguf_q4_0.py' 2025-12-05T22:27:43.9133737Z 2025-12-05 22:27:43,898 [INFO] adding 'executorch/examples/models/llama/experimental/subclass.py' 2025-12-05T22:27:43.9135257Z 2025-12-05 22:27:43,898 [INFO] adding 'executorch/examples/models/llama/experimental/test_subclass.py' 2025-12-05T22:27:43.9136482Z 2025-12-05 22:27:43,898 [INFO] adding 'executorch/examples/models/llama/runner/eager.py' 2025-12-05T22:27:43.9137591Z 2025-12-05 22:27:43,898 [INFO] adding 'executorch/examples/models/llama/runner/generation.py' 2025-12-05T22:27:43.9138694Z 2025-12-05 22:27:43,899 [INFO] adding 'executorch/examples/models/llama/runner/native.py' 2025-12-05T22:27:43.9139926Z 2025-12-05 22:27:43,899 [INFO] adding 'executorch/examples/models/llama/source_transformation/__init__.py' 2025-12-05T22:27:43.9141501Z 2025-12-05 22:27:43,899 [INFO] adding 'executorch/examples/models/llama/source_transformation/apply_spin_quant_r1_r2.py' 2025-12-05T22:27:43.9143106Z 2025-12-05 22:27:43,900 [INFO] adding 'executorch/examples/models/llama/source_transformation/attention.py' 2025-12-05T22:27:43.9144647Z 2025-12-05 22:27:43,900 [INFO] adding 'executorch/examples/models/llama/source_transformation/attention_sink.py' 2025-12-05T22:27:43.9146241Z 2025-12-05 22:27:43,901 [INFO] adding 'executorch/examples/models/llama/source_transformation/custom_kv_cache.py' 2025-12-05T22:27:43.9147698Z 2025-12-05 22:27:43,901 [INFO] adding 'executorch/examples/models/llama/source_transformation/lora.py' 2025-12-05T22:27:43.9149194Z 2025-12-05 22:27:43,901 [INFO] adding 'executorch/examples/models/llama/source_transformation/pre_quantization.py' 2025-12-05T22:27:43.9150591Z 2025-12-05 22:27:43,902 [INFO] adding 'executorch/examples/models/llama/source_transformation/prune_vocab.py' 2025-12-05T22:27:43.9151932Z 2025-12-05 22:27:43,903 [INFO] adding 'executorch/examples/models/llama/source_transformation/quantize.py' 2025-12-05T22:27:43.9153447Z 2025-12-05 22:27:43,903 [INFO] adding 'executorch/examples/models/llama/source_transformation/rms_norm.py' 2025-12-05T22:27:43.9154834Z 2025-12-05 22:27:43,903 [INFO] adding 'executorch/examples/models/llama/source_transformation/rope.py' 2025-12-05T22:27:43.9156084Z 2025-12-05 22:27:43,904 [INFO] adding 'executorch/examples/models/llama/source_transformation/sdpa.py' 2025-12-05T22:27:43.9157466Z 2025-12-05 22:27:43,904 [INFO] adding 'executorch/examples/models/llama/source_transformation/spin_quant.py' 2025-12-05T22:27:43.9397388Z 2025-12-05 22:27:43,904 [INFO] adding 'executorch/examples/models/llama/source_transformation/test_attention_sink.py' 2025-12-05T22:27:43.9398526Z 2025-12-05 22:27:43,905 [INFO] adding 'executorch/examples/models/llama/source_transformation/test_quantized_kv_cache.py' 2025-12-05T22:27:43.9399443Z 2025-12-05 22:27:43,905 [INFO] adding 'executorch/examples/models/llama/source_transformation/test_quantized_sdpa.py' 2025-12-05T22:27:43.9400418Z 2025-12-05 22:27:43,905 [INFO] adding 'executorch/examples/models/llama/source_transformation/test_sdpa_with_quantized_kv_cache.py' 2025-12-05T22:27:43.9401312Z 2025-12-05 22:27:43,905 [INFO] adding 'executorch/examples/models/llama/tests/test_export_llama_lib.py' 2025-12-05T22:27:43.9402124Z 2025-12-05 22:27:43,906 [INFO] adding 'executorch/examples/models/llama/tests/test_pre_quantization_transforms.py' 2025-12-05T22:27:43.9402934Z 2025-12-05 22:27:43,906 [INFO] adding 'executorch/examples/models/llama/tests/test_replace_kv_cache.py' 2025-12-05T22:27:43.9403669Z 2025-12-05 22:27:43,906 [INFO] adding 'executorch/examples/models/llama/tests/test_ring_attention.py' 2025-12-05T22:27:43.9404394Z 2025-12-05 22:27:43,907 [INFO] adding 'executorch/examples/models/llama/tests/test_ring_kv_cache.py' 2025-12-05T22:27:43.9405108Z 2025-12-05 22:27:43,907 [INFO] adding 'executorch/examples/models/llama/tests/test_simple_sdpa.py' 2025-12-05T22:27:43.9405914Z 2025-12-05 22:27:43,908 [INFO] adding 'executorch/examples/models/llama/tests/test_static_attention.py' 2025-12-05T22:27:43.9406636Z 2025-12-05 22:27:43,908 [INFO] adding 'executorch/examples/models/llama/tokenizer/tiktoken.py' 2025-12-05T22:27:43.9407821Z 2025-12-05 22:27:43,908 [INFO] adding 'executorch/examples/models/llama3_2_vision/__init__.py' 2025-12-05T22:27:43.9408544Z 2025-12-05 22:27:43,908 [INFO] adding 'executorch/examples/models/llama3_2_vision/preprocess/__init__.py' 2025-12-05T22:27:43.9409597Z 2025-12-05 22:27:43,909 [INFO] adding 'executorch/examples/models/llama3_2_vision/preprocess/export_preprocess.py' 2025-12-05T22:27:43.9410505Z 2025-12-05 22:27:43,909 [INFO] adding 'executorch/examples/models/llama3_2_vision/preprocess/model.py' 2025-12-05T22:27:43.9411304Z 2025-12-05 22:27:43,909 [INFO] adding 'executorch/examples/models/llama3_2_vision/preprocess/test_preprocess.py' 2025-12-05T22:27:43.9412073Z 2025-12-05 22:27:43,910 [INFO] adding 'executorch/examples/models/llama3_2_vision/runner/eager.py' 2025-12-05T22:27:43.9413071Z 2025-12-05 22:27:43,910 [INFO] adding 'executorch/examples/models/llama3_2_vision/runner/exported.py' 2025-12-05T22:27:43.9413813Z 2025-12-05 22:27:43,910 [INFO] adding 'executorch/examples/models/llama3_2_vision/runner/generation.py' 2025-12-05T22:27:43.9414536Z 2025-12-05 22:27:43,910 [INFO] adding 'executorch/examples/models/llama3_2_vision/runner/native.py' 2025-12-05T22:27:43.9415269Z 2025-12-05 22:27:43,911 [INFO] adding 'executorch/examples/models/llama3_2_vision/text_decoder/model.py' 2025-12-05T22:27:43.9416050Z 2025-12-05 22:27:43,911 [INFO] adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/__init__.py' 2025-12-05T22:27:43.9416915Z 2025-12-05 22:27:43,911 [INFO] adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/test_text_decoder.py' 2025-12-05T22:27:43.9417770Z 2025-12-05 22:27:43,912 [INFO] adding 'executorch/examples/models/llama3_2_vision/vision_encoder/__init__.py' 2025-12-05T22:27:43.9418798Z 2025-12-05 22:27:43,912 [INFO] adding 'executorch/examples/models/llama3_2_vision/vision_encoder/model.py' 2025-12-05T22:27:43.9419726Z 2025-12-05 22:27:43,922 [INFO] adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/__init__.py' 2025-12-05T22:27:43.9420654Z 2025-12-05 22:27:43,923 [INFO] adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/test_vision_encoder.py' 2025-12-05T22:27:43.9421402Z 2025-12-05 22:27:43,923 [INFO] adding 'executorch/examples/models/llava/__init__.py' 2025-12-05T22:27:43.9422000Z 2025-12-05 22:27:43,923 [INFO] adding 'executorch/examples/models/llava/export_llava.py' 2025-12-05T22:27:43.9422621Z 2025-12-05 22:27:43,924 [INFO] adding 'executorch/examples/models/llava/model.py' 2025-12-05T22:27:43.9423219Z 2025-12-05 22:27:43,924 [INFO] adding 'executorch/examples/models/llava/test/test_llava.py' 2025-12-05T22:27:43.9423850Z 2025-12-05 22:27:43,925 [INFO] adding 'executorch/examples/models/llava/test/test_pte.py' 2025-12-05T22:27:43.9424431Z 2025-12-05 22:27:43,925 [INFO] adding 'executorch/examples/models/lstm/__init__.py' 2025-12-05T22:27:43.9424990Z 2025-12-05 22:27:43,925 [INFO] adding 'executorch/examples/models/lstm/model.py' 2025-12-05T22:27:43.9425562Z 2025-12-05 22:27:43,925 [INFO] adding 'executorch/examples/models/mobilebert/__init__.py' 2025-12-05T22:27:43.9426178Z 2025-12-05 22:27:43,926 [INFO] adding 'executorch/examples/models/mobilebert/model.py' 2025-12-05T22:27:43.9426798Z 2025-12-05 22:27:43,926 [INFO] adding 'executorch/examples/models/mobilenet_v2/__init__.py' 2025-12-05T22:27:43.9427414Z 2025-12-05 22:27:43,926 [INFO] adding 'executorch/examples/models/mobilenet_v2/model.py' 2025-12-05T22:27:43.9428038Z 2025-12-05 22:27:43,926 [INFO] adding 'executorch/examples/models/mobilenet_v3/__init__.py' 2025-12-05T22:27:43.9428995Z 2025-12-05 22:27:43,926 [INFO] adding 'executorch/examples/models/mobilenet_v3/model.py' 2025-12-05T22:27:43.9429700Z 2025-12-05 22:27:43,927 [INFO] adding 'executorch/examples/models/moshi/mimi/test_mimi.py' 2025-12-05T22:27:43.9430317Z 2025-12-05 22:27:43,927 [INFO] adding 'executorch/examples/models/phi-3-mini/__init__.py' 2025-12-05T22:27:43.9430991Z 2025-12-05 22:27:43,928 [INFO] adding 'executorch/examples/models/phi-3-mini-lora/export_model.py' 2025-12-05T22:27:43.9431711Z 2025-12-05 22:27:43,928 [INFO] adding 'executorch/examples/models/phi_4_mini/__init__.py' 2025-12-05T22:27:43.9432353Z 2025-12-05 22:27:43,928 [INFO] adding 'executorch/examples/models/phi_4_mini/convert_weights.py' 2025-12-05T22:27:43.9433100Z 2025-12-05 22:27:43,928 [INFO] adding 'executorch/examples/models/phi_4_mini/config/phi_4_mini_xnnpack.yaml' 2025-12-05T22:27:43.9433792Z 2025-12-05 22:27:43,929 [INFO] adding 'executorch/examples/models/qwen2_5/__init__.py' 2025-12-05T22:27:43.9434418Z 2025-12-05 22:27:43,929 [INFO] adding 'executorch/examples/models/qwen2_5/convert_weights.py' 2025-12-05T22:27:43.9435153Z 2025-12-05 22:27:43,929 [INFO] adding 'executorch/examples/models/qwen2_5/config/qwen2_5_xnnpack_q8da4w.yaml' 2025-12-05T22:27:43.9435826Z 2025-12-05 22:27:43,929 [INFO] adding 'executorch/examples/models/qwen3/__init__.py' 2025-12-05T22:27:43.9436437Z 2025-12-05 22:27:43,930 [INFO] adding 'executorch/examples/models/qwen3/convert_weights.py' 2025-12-05T22:27:43.9437137Z 2025-12-05 22:27:43,930 [INFO] adding 'executorch/examples/models/qwen3/config/qwen3_xnnpack_q8da4w.yaml' 2025-12-05T22:27:43.9438011Z 2025-12-05 22:27:43,930 [INFO] adding 'executorch/examples/models/resnet/__init__.py' 2025-12-05T22:27:43.9438633Z 2025-12-05 22:27:43,930 [INFO] adding 'executorch/examples/models/resnet/model.py' 2025-12-05T22:27:43.9439199Z 2025-12-05 22:27:43,930 [INFO] adding 'executorch/examples/models/smollm2/__init__.py' 2025-12-05T22:27:43.9439827Z 2025-12-05 22:27:43,931 [INFO] adding 'executorch/examples/models/smollm2/convert_weights.py' 2025-12-05T22:27:43.9440441Z 2025-12-05 22:27:43,931 [INFO] adding 'executorch/examples/models/smollm3/__init__.py' 2025-12-05T22:27:43.9441284Z 2025-12-05 22:27:43,931 [INFO] adding 'executorch/examples/models/smollm3/convert_weights.py' 2025-12-05T22:27:43.9442013Z 2025-12-05 22:27:43,931 [INFO] adding 'executorch/examples/models/stable_diffusion/__init__.py' 2025-12-05T22:27:43.9442671Z 2025-12-05 22:27:43,932 [INFO] adding 'executorch/examples/models/stable_diffusion/model.py' 2025-12-05T22:27:43.9443275Z 2025-12-05 22:27:43,932 [INFO] adding 'executorch/examples/models/test/__init__.py' 2025-12-05T22:27:43.9443843Z 2025-12-05 22:27:43,932 [INFO] adding 'executorch/examples/models/test/test_export.py' 2025-12-05T22:27:43.9444514Z 2025-12-05 22:27:43,933 [INFO] adding 'executorch/examples/models/torchvision_vit/__init__.py' 2025-12-05T22:27:43.9445169Z 2025-12-05 22:27:43,933 [INFO] adding 'executorch/examples/models/torchvision_vit/model.py' 2025-12-05T22:27:43.9445787Z 2025-12-05 22:27:43,933 [INFO] adding 'executorch/examples/models/toy_model/__init__.py' 2025-12-05T22:27:43.9446442Z 2025-12-05 22:27:43,933 [INFO] adding 'executorch/examples/models/toy_model/model.py' 2025-12-05T22:27:43.9447206Z 2025-12-05 22:27:43,933 [INFO] adding 'executorch/examples/models/wav2letter/__init__.py' 2025-12-05T22:27:43.9447813Z 2025-12-05 22:27:43,934 [INFO] adding 'executorch/examples/models/wav2letter/model.py' 2025-12-05T22:27:43.9448445Z 2025-12-05 22:27:43,934 [INFO] adding 'executorch/examples/models/yolo12/export_and_validate.py' 2025-12-05T22:27:43.9449362Z 2025-12-05 22:27:43,935 [INFO] adding 'executorch/examples/nxp/experimental/cifar_net/cifar_net.py' 2025-12-05T22:27:43.9450000Z 2025-12-05 22:27:43,935 [INFO] adding 'executorch/examples/xnnpack/__init__.py' 2025-12-05T22:27:43.9450543Z 2025-12-05 22:27:43,935 [INFO] adding 'executorch/examples/xnnpack/aot_compiler.py' 2025-12-05T22:27:43.9451156Z 2025-12-05 22:27:43,936 [INFO] adding 'executorch/examples/xnnpack/quantization/example.py' 2025-12-05T22:27:43.9451842Z 2025-12-05 22:27:43,936 [INFO] adding 'executorch/examples/xnnpack/quantization/utils.py' 2025-12-05T22:27:43.9452591Z 2025-12-05 22:27:43,936 [INFO] adding 'executorch/exir/__init__.py' 2025-12-05T22:27:43.9453060Z 2025-12-05 22:27:43,936 [INFO] adding 'executorch/exir/_warnings.py' 2025-12-05T22:27:43.9453509Z 2025-12-05 22:27:43,937 [INFO] adding 'executorch/exir/common.py' 2025-12-05T22:27:43.9454026Z 2025-12-05 22:27:43,937 [INFO] adding 'executorch/exir/control_flow.py' 2025-12-05T22:27:43.9454548Z 2025-12-05 22:27:43,937 [INFO] adding 'executorch/exir/debug_handle_utils.py' 2025-12-05T22:27:43.9455231Z 2025-12-05 22:27:43,938 [INFO] adding 'executorch/exir/delegate.py' 2025-12-05T22:27:43.9455691Z 2025-12-05 22:27:43,938 [INFO] adding 'executorch/exir/delegate.pyi' 2025-12-05T22:27:43.9456181Z 2025-12-05 22:27:43,938 [INFO] adding 'executorch/exir/dim_order_utils.py' 2025-12-05T22:27:43.9456679Z 2025-12-05 22:27:43,938 [INFO] adding 'executorch/exir/dynamic_shape.py' 2025-12-05T22:27:43.9457144Z 2025-12-05 22:27:43,938 [INFO] adding 'executorch/exir/error.py' 2025-12-05T22:27:43.9813392Z 2025-12-05 22:27:43,939 [INFO] adding 'executorch/exir/graph.py' 2025-12-05T22:27:43.9814325Z 2025-12-05 22:27:43,939 [INFO] adding 'executorch/exir/graph_module.py' 2025-12-05T22:27:43.9815283Z 2025-12-05 22:27:43,940 [INFO] adding 'executorch/exir/lowered_backend_module.py' 2025-12-05T22:27:43.9816197Z 2025-12-05 22:27:43,941 [INFO] adding 'executorch/exir/memory.py' 2025-12-05T22:27:43.9817007Z 2025-12-05 22:27:43,942 [INFO] adding 'executorch/exir/memory_planning.py' 2025-12-05T22:27:43.9817877Z 2025-12-05 22:27:43,943 [INFO] adding 'executorch/exir/pass_base.py' 2025-12-05T22:27:43.9818905Z 2025-12-05 22:27:43,943 [INFO] adding 'executorch/exir/pass_manager.py' 2025-12-05T22:27:43.9819837Z 2025-12-05 22:27:43,944 [INFO] adding 'executorch/exir/print_program.py' 2025-12-05T22:27:43.9820740Z 2025-12-05 22:27:43,944 [INFO] adding 'executorch/exir/scalar_type.py' 2025-12-05T22:27:43.9821592Z 2025-12-05 22:27:43,945 [INFO] adding 'executorch/exir/schema.py' 2025-12-05T22:27:43.9822422Z 2025-12-05 22:27:43,945 [INFO] adding 'executorch/exir/sym_util.py' 2025-12-05T22:27:43.9823451Z 2025-12-05 22:27:43,945 [INFO] adding 'executorch/exir/tensor.py' 2025-12-05T22:27:43.9824306Z 2025-12-05 22:27:43,946 [INFO] adding 'executorch/exir/tensor_layout.py' 2025-12-05T22:27:43.9825169Z 2025-12-05 22:27:43,946 [INFO] adding 'executorch/exir/tracer.py' 2025-12-05T22:27:43.9825955Z 2025-12-05 22:27:43,947 [INFO] adding 'executorch/exir/types.py' 2025-12-05T22:27:43.9826765Z 2025-12-05 22:27:43,947 [INFO] adding 'executorch/exir/version.py' 2025-12-05T22:27:43.9827540Z 2025-12-05 22:27:43,947 [INFO] adding 'executorch/exir/wrap.py' 2025-12-05T22:27:43.9828552Z 2025-12-05 22:27:43,947 [INFO] adding 'executorch/exir/_serialize/__init__.py' 2025-12-05T22:27:43.9829464Z 2025-12-05 22:27:43,948 [INFO] adding 'executorch/exir/_serialize/_cord.py' 2025-12-05T22:27:43.9830403Z 2025-12-05 22:27:43,948 [INFO] adding 'executorch/exir/_serialize/_dataclass.py' 2025-12-05T22:27:43.9831365Z 2025-12-05 22:27:43,948 [INFO] adding 'executorch/exir/_serialize/_flatbuffer.py' 2025-12-05T22:27:43.9832374Z 2025-12-05 22:27:43,949 [INFO] adding 'executorch/exir/_serialize/_named_data_store.py' 2025-12-05T22:27:43.9833383Z 2025-12-05 22:27:43,950 [INFO] adding 'executorch/exir/_serialize/_program.py' 2025-12-05T22:27:43.9834318Z 2025-12-05 22:27:43,950 [INFO] adding 'executorch/exir/_serialize/_serialize.py' 2025-12-05T22:27:43.9835324Z 2025-12-05 22:27:43,950 [INFO] adding 'executorch/exir/_serialize/data_serializer.py' 2025-12-05T22:27:43.9836326Z 2025-12-05 22:27:43,951 [INFO] adding 'executorch/exir/_serialize/padding.py' 2025-12-05T22:27:43.9837256Z 2025-12-05 22:27:43,951 [INFO] adding 'executorch/exir/_serialize/program.fbs' 2025-12-05T22:27:43.9838217Z 2025-12-05 22:27:43,951 [INFO] adding 'executorch/exir/_serialize/scalar_type.fbs' 2025-12-05T22:27:43.9839194Z 2025-12-05 22:27:43,952 [INFO] adding 'executorch/exir/_serialize/test/__init__.py' 2025-12-05T22:27:43.9840276Z 2025-12-05 22:27:43,952 [INFO] adding 'executorch/exir/_serialize/test/test_cord.py' 2025-12-05T22:27:43.9841369Z 2025-12-05 22:27:43,952 [INFO] adding 'executorch/exir/_serialize/test/test_flatbuffer.py' 2025-12-05T22:27:43.9842601Z 2025-12-05 22:27:43,953 [INFO] adding 'executorch/exir/_serialize/test/test_named_data_store.py' 2025-12-05T22:27:43.9843736Z 2025-12-05 22:27:43,954 [INFO] adding 'executorch/exir/_serialize/test/test_program.py' 2025-12-05T22:27:43.9844814Z 2025-12-05 22:27:43,954 [INFO] adding 'executorch/exir/_serialize/test/test_serialize.py' 2025-12-05T22:27:43.9845800Z 2025-12-05 22:27:43,955 [INFO] adding 'executorch/exir/backend/backend_api.py' 2025-12-05T22:27:43.9846820Z 2025-12-05 22:27:43,956 [INFO] adding 'executorch/exir/backend/backend_details.py' 2025-12-05T22:27:43.9847919Z 2025-12-05 22:27:43,956 [INFO] adding 'executorch/exir/backend/compile_spec_schema.py' 2025-12-05T22:27:43.9848943Z 2025-12-05 22:27:43,956 [INFO] adding 'executorch/exir/backend/operator_support.py' 2025-12-05T22:27:43.9849899Z 2025-12-05 22:27:43,956 [INFO] adding 'executorch/exir/backend/partitioner.py' 2025-12-05T22:27:43.9850857Z 2025-12-05 22:27:43,957 [INFO] adding 'executorch/exir/backend/utils.py' 2025-12-05T22:27:43.9852089Z 2025-12-05 22:27:43,958 [INFO] adding 'executorch/exir/backend/canonical_partitioners/all_node_partitioner.py' 2025-12-05T22:27:43.9853501Z 2025-12-05 22:27:43,958 [INFO] adding 'executorch/exir/backend/canonical_partitioners/config_partitioner.py' 2025-12-05T22:27:43.9854997Z 2025-12-05 22:27:43,958 [INFO] adding 'executorch/exir/backend/canonical_partitioners/duplicate_constant_node_pass.py' 2025-12-05T22:27:43.9856650Z 2025-12-05 22:27:43,959 [INFO] adding 'executorch/exir/backend/canonical_partitioners/duplicate_dequant_node_pass.py' 2025-12-05T22:27:43.9858217Z 2025-12-05 22:27:43,959 [INFO] adding 'executorch/exir/backend/canonical_partitioners/group_partitioner.py' 2025-12-05T22:27:43.9859730Z 2025-12-05 22:27:43,959 [INFO] adding 'executorch/exir/backend/canonical_partitioners/pattern_op_partitioner.py' 2025-12-05T22:27:43.9861234Z 2025-12-05 22:27:43,960 [INFO] adding 'executorch/exir/backend/test/backend_with_compiler_demo.py' 2025-12-05T22:27:43.9862568Z 2025-12-05 22:27:43,960 [INFO] adding 'executorch/exir/backend/test/backend_with_delegate_mapping_demo.py' 2025-12-05T22:27:43.9863888Z 2025-12-05 22:27:43,960 [INFO] adding 'executorch/exir/backend/test/backend_with_named_data_map.py' 2025-12-05T22:27:43.9865205Z 2025-12-05 22:27:43,961 [INFO] adding 'executorch/exir/backend/test/backend_with_preprocess_all_demo.py' 2025-12-05T22:27:43.9866448Z 2025-12-05 22:27:43,961 [INFO] adding 'executorch/exir/backend/test/demo_backend.py' 2025-12-05T22:27:43.9867509Z 2025-12-05 22:27:43,962 [INFO] adding 'executorch/exir/backend/test/hta_partitioner_demo.py' 2025-12-05T22:27:43.9868732Z 2025-12-05 22:27:43,962 [INFO] adding 'executorch/exir/backend/test/op_partitioner_demo.py' 2025-12-05T22:27:43.9870008Z 2025-12-05 22:27:43,962 [INFO] adding 'executorch/exir/backend/test/test_backend_with_named_data_map.py' 2025-12-05T22:27:43.9871211Z 2025-12-05 22:27:43,963 [INFO] adding 'executorch/exir/backend/test/test_backends.py' 2025-12-05T22:27:43.9872304Z 2025-12-05 22:27:43,964 [INFO] adding 'executorch/exir/backend/test/test_backends_lifted.py' 2025-12-05T22:27:43.9873432Z 2025-12-05 22:27:43,965 [INFO] adding 'executorch/exir/backend/test/test_backends_nested.py' 2025-12-05T22:27:43.9874601Z 2025-12-05 22:27:43,965 [INFO] adding 'executorch/exir/backend/test/test_compatibility.py' 2025-12-05T22:27:43.9875810Z 2025-12-05 22:27:43,965 [INFO] adding 'executorch/exir/backend/test/test_debug_handle_map.py' 2025-12-05T22:27:43.9876956Z 2025-12-05 22:27:43,966 [INFO] adding 'executorch/exir/backend/test/test_delegate_map_builder.py' 2025-12-05T22:27:43.9878209Z 2025-12-05 22:27:43,966 [INFO] adding 'executorch/exir/backend/test/test_graph_partition.py' 2025-12-05T22:27:43.9879496Z 2025-12-05 22:27:43,967 [INFO] adding 'executorch/exir/backend/test/test_group_partitioner.py' 2025-12-05T22:27:43.9880700Z 2025-12-05 22:27:43,967 [INFO] adding 'executorch/exir/backend/test/test_lowered_backend_module.py' 2025-12-05T22:27:43.9881844Z 2025-12-05 22:27:43,968 [INFO] adding 'executorch/exir/backend/test/test_partitioner.py' 2025-12-05T22:27:43.9883078Z 2025-12-05 22:27:43,968 [INFO] adding 'executorch/exir/backend/test/test_passes.py' 2025-12-05T22:27:43.9884277Z 2025-12-05 22:27:43,969 [INFO] adding 'executorch/exir/backend/test/test_to_backend_multi_method.py' 2025-12-05T22:27:43.9885443Z 2025-12-05 22:27:43,969 [INFO] adding 'executorch/exir/backend/test/test_utils.py' 2025-12-05T22:27:43.9886598Z 2025-12-05 22:27:43,969 [INFO] adding 'executorch/exir/backend/test/demos/test_delegate_aten_mode.py' 2025-12-05T22:27:43.9887990Z 2025-12-05 22:27:43,970 [INFO] adding 'executorch/exir/backend/test/demos/rpc/executor_backend_partitioner.py' 2025-12-05T22:27:43.9889504Z 2025-12-05 22:27:43,970 [INFO] adding 'executorch/exir/backend/test/demos/rpc/executor_backend_preprocess.py' 2025-12-05T22:27:43.9890794Z 2025-12-05 22:27:43,970 [INFO] adding 'executorch/exir/backend/test/demos/rpc/test_rpc.py' 2025-12-05T22:27:43.9891814Z 2025-12-05 22:27:43,970 [INFO] adding 'executorch/exir/capture/__init__.py' 2025-12-05T22:27:43.9892749Z 2025-12-05 22:27:43,971 [INFO] adding 'executorch/exir/capture/_capture.py' 2025-12-05T22:27:43.9893621Z 2025-12-05 22:27:43,971 [INFO] adding 'executorch/exir/capture/_config.py' 2025-12-05T22:27:43.9894518Z 2025-12-05 22:27:43,972 [INFO] adding 'executorch/exir/capture/_unlift.py' 2025-12-05T22:27:43.9895396Z 2025-12-05 22:27:43,972 [INFO] adding 'executorch/exir/dialects/__init__.py' 2025-12-05T22:27:43.9896319Z 2025-12-05 22:27:43,972 [INFO] adding 'executorch/exir/dialects/_ops.py' 2025-12-05T22:27:43.9897197Z 2025-12-05 22:27:43,972 [INFO] adding 'executorch/exir/dialects/backend/_ops.py' 2025-12-05T22:27:43.9898292Z 2025-12-05 22:27:43,973 [INFO] adding 'executorch/exir/dialects/backend/test/test_backend_ops.py' 2025-12-05T22:27:43.9899370Z 2025-12-05 22:27:43,973 [INFO] adding 'executorch/exir/dialects/edge/_ops.py' 2025-12-05T22:27:43.9900431Z 2025-12-05 22:27:43,975 [INFO] adding 'executorch/exir/dialects/edge/edge.yaml' 2025-12-05T22:27:43.9901453Z 2025-12-05 22:27:43,976 [INFO] adding 'executorch/exir/dialects/edge/arg/model.py' 2025-12-05T22:27:43.9902456Z 2025-12-05 22:27:43,976 [INFO] adding 'executorch/exir/dialects/edge/arg/type.py' 2025-12-05T22:27:43.9903497Z 2025-12-05 22:27:43,976 [INFO] adding 'executorch/exir/dialects/edge/dtype/runner.py' 2025-12-05T22:27:43.9904641Z 2025-12-05 22:27:43,977 [INFO] adding 'executorch/exir/dialects/edge/dtype/supported.py' 2025-12-05T22:27:43.9905754Z 2025-12-05 22:27:43,977 [INFO] adding 'executorch/exir/dialects/edge/dtype/utils.py' 2025-12-05T22:27:43.9906707Z 2025-12-05 22:27:43,977 [INFO] adding 'executorch/exir/dialects/edge/op/api.py' 2025-12-05T22:27:43.9907741Z 2025-12-05 22:27:43,978 [INFO] adding 'executorch/exir/dialects/edge/op/sample_input.py' 2025-12-05T22:27:43.9908881Z 2025-12-05 22:27:43,978 [INFO] adding 'executorch/exir/dialects/edge/op/test/test_api.py' 2025-12-05T22:27:43.9909893Z 2025-12-05 22:27:43,979 [INFO] adding 'executorch/exir/dialects/edge/spec/gen.py' 2025-12-05T22:27:43.9910927Z 2025-12-05 22:27:43,979 [INFO] adding 'executorch/exir/dialects/edge/spec/utils.py' 2025-12-05T22:27:43.9912014Z 2025-12-05 22:27:43,980 [INFO] adding 'executorch/exir/dialects/edge/test/test_edge_ops.py' 2025-12-05T22:27:43.9913158Z 2025-12-05 22:27:43,980 [INFO] adding 'executorch/exir/dialects/edge/test/test_edge_yaml.py' 2025-12-05T22:27:44.0265253Z 2025-12-05 22:27:43,980 [INFO] adding 'executorch/exir/dialects/test/test_exir_dialect_ops.py' 2025-12-05T22:27:44.0266414Z 2025-12-05 22:27:43,981 [INFO] adding 'executorch/exir/emit/__init__.py' 2025-12-05T22:27:44.0267332Z 2025-12-05 22:27:43,981 [INFO] adding 'executorch/exir/emit/_emit_program.py' 2025-12-05T22:27:44.0268539Z 2025-12-05 22:27:43,984 [INFO] adding 'executorch/exir/emit/_emitter.py' 2025-12-05T22:27:44.0269441Z 2025-12-05 22:27:43,987 [INFO] adding 'executorch/exir/emit/test/test_emit.py' 2025-12-05T22:27:44.0270414Z 2025-12-05 22:27:43,988 [INFO] adding 'executorch/exir/operator/convert.py' 2025-12-05T22:27:44.0271464Z 2025-12-05 22:27:43,989 [INFO] adding 'executorch/exir/operator/manip.py' 2025-12-05T22:27:44.0272330Z 2025-12-05 22:27:43,989 [INFO] adding 'executorch/exir/operator/util.py' 2025-12-05T22:27:44.0273296Z 2025-12-05 22:27:43,989 [INFO] adding 'executorch/exir/operator/test/test_operator.py' 2025-12-05T22:27:44.0274286Z 2025-12-05 22:27:43,990 [INFO] adding 'executorch/exir/passes/__init__.py' 2025-12-05T22:27:44.0275413Z 2025-12-05 22:27:43,991 [INFO] adding 'executorch/exir/passes/_quant_patterns_and_replacements.py' 2025-12-05T22:27:44.0276585Z 2025-12-05 22:27:43,992 [INFO] adding 'executorch/exir/passes/const_prop_pass.py' 2025-12-05T22:27:44.0277568Z 2025-12-05 22:27:43,992 [INFO] adding 'executorch/exir/passes/constant_prop_pass.py' 2025-12-05T22:27:44.0278686Z 2025-12-05 22:27:43,992 [INFO] adding 'executorch/exir/passes/debug_handle_generator_pass.py' 2025-12-05T22:27:44.0279806Z 2025-12-05 22:27:43,993 [INFO] adding 'executorch/exir/passes/dim_order_ops_registry.py' 2025-12-05T22:27:44.0280910Z 2025-12-05 22:27:43,993 [INFO] adding 'executorch/exir/passes/dynamic_shape_prop_pass.py' 2025-12-05T22:27:44.0282040Z 2025-12-05 22:27:43,993 [INFO] adding 'executorch/exir/passes/executorch_prim_ops_registry.py' 2025-12-05T22:27:44.0283237Z 2025-12-05 22:27:43,994 [INFO] adding 'executorch/exir/passes/external_constants_pass.py' 2025-12-05T22:27:44.0284294Z 2025-12-05 22:27:43,994 [INFO] adding 'executorch/exir/passes/init_mutable_pass.py' 2025-12-05T22:27:44.0285442Z 2025-12-05 22:27:43,994 [INFO] adding 'executorch/exir/passes/insert_write_back_for_buffers_pass.py' 2025-12-05T22:27:44.0286681Z 2025-12-05 22:27:43,994 [INFO] adding 'executorch/exir/passes/memory_format_ops_pass.py' 2025-12-05T22:27:44.0287776Z 2025-12-05 22:27:43,995 [INFO] adding 'executorch/exir/passes/memory_planning_pass.py' 2025-12-05T22:27:44.0289056Z 2025-12-05 22:27:43,995 [INFO] adding 'executorch/exir/passes/normalize_transpose_pass.py' 2025-12-05T22:27:44.0290271Z 2025-12-05 22:27:43,995 [INFO] adding 'executorch/exir/passes/normalize_view_copy_base_pass.py' 2025-12-05T22:27:44.0291344Z 2025-12-05 22:27:43,995 [INFO] adding 'executorch/exir/passes/pass_registry.py' 2025-12-05T22:27:44.0292365Z 2025-12-05 22:27:43,996 [INFO] adding 'executorch/exir/passes/prune_empty_tensors_pass.py' 2025-12-05T22:27:44.0293545Z 2025-12-05 22:27:43,996 [INFO] adding 'executorch/exir/passes/quant_fusion_pass.py' 2025-12-05T22:27:44.0294599Z 2025-12-05 22:27:43,996 [INFO] adding 'executorch/exir/passes/quantize_io_pass.py' 2025-12-05T22:27:44.0295531Z 2025-12-05 22:27:43,997 [INFO] adding 'executorch/exir/passes/reinplace.py' 2025-12-05T22:27:44.0296561Z 2025-12-05 22:27:43,997 [INFO] adding 'executorch/exir/passes/remove_graph_asserts_pass.py' 2025-12-05T22:27:44.0297724Z 2025-12-05 22:27:43,997 [INFO] adding 'executorch/exir/passes/remove_mixed_type_operators.py' 2025-12-05T22:27:44.0298786Z 2025-12-05 22:27:43,997 [INFO] adding 'executorch/exir/passes/remove_noop_pass.py' 2025-12-05T22:27:44.0299879Z 2025-12-05 22:27:43,998 [INFO] adding 'executorch/exir/passes/remove_unused_parameters_pass.py' 2025-12-05T22:27:44.0301060Z 2025-12-05 22:27:43,998 [INFO] adding 'executorch/exir/passes/replace_aten_with_edge_pass.py' 2025-12-05T22:27:44.0302351Z 2025-12-05 22:27:43,998 [INFO] adding 'executorch/exir/passes/replace_broken_ops_with_function_ops_pass.py' 2025-12-05T22:27:44.0303694Z 2025-12-05 22:27:43,998 [INFO] adding 'executorch/exir/passes/replace_edge_with_backend_pass.py' 2025-12-05T22:27:44.0304842Z 2025-12-05 22:27:43,998 [INFO] adding 'executorch/exir/passes/replace_sym_size_op_pass.py' 2025-12-05T22:27:44.0306154Z 2025-12-05 22:27:43,999 [INFO] adding 'executorch/exir/passes/replace_view_copy_with_view_pass.py' 2025-12-05T22:27:44.0307328Z 2025-12-05 22:27:43,999 [INFO] adding 'executorch/exir/passes/scalar_to_tensor_pass.py' 2025-12-05T22:27:44.0308371Z 2025-12-05 22:27:43,999 [INFO] adding 'executorch/exir/passes/spec_prop_pass.py' 2025-12-05T22:27:44.0309569Z 2025-12-05 22:27:44,000 [INFO] adding 'executorch/exir/passes/sym_shape_eval_pass.py' 2025-12-05T22:27:44.0310632Z 2025-12-05 22:27:44,000 [INFO] adding 'executorch/exir/passes/sym_to_tensor_pass.py' 2025-12-05T22:27:44.0311729Z 2025-12-05 22:27:44,000 [INFO] adding 'executorch/exir/passes/weights_to_outputs_pass.py' 2025-12-05T22:27:44.0312747Z 2025-12-05 22:27:44,000 [INFO] adding 'executorch/exir/program/__init__.py' 2025-12-05T22:27:44.0313691Z 2025-12-05 22:27:44,001 [INFO] adding 'executorch/exir/program/_fake_program.py' 2025-12-05T22:27:44.0314615Z 2025-12-05 22:27:44,003 [INFO] adding 'executorch/exir/program/_program.py' 2025-12-05T22:27:44.0315516Z 2025-12-05 22:27:44,004 [INFO] adding 'executorch/exir/program/test/__init__.py' 2025-12-05T22:27:44.0316524Z 2025-12-05 22:27:44,004 [INFO] adding 'executorch/exir/program/test/test_fake_program.py' 2025-12-05T22:27:44.0317633Z 2025-12-05 22:27:44,005 [INFO] adding 'executorch/exir/program/test/test_program.py' 2025-12-05T22:27:44.0318841Z 2025-12-05 22:27:44,005 [INFO] adding 'executorch/exir/serde/__init__.py' 2025-12-05T22:27:44.0319766Z 2025-12-05 22:27:44,008 [INFO] adding 'executorch/exir/serde/export_serialize.py' 2025-12-05T22:27:44.0320687Z 2025-12-05 22:27:44,009 [INFO] adding 'executorch/exir/serde/schema.py' 2025-12-05T22:27:44.0321611Z 2025-12-05 22:27:44,009 [INFO] adding 'executorch/exir/serde/schema_check.py' 2025-12-05T22:27:44.0322453Z 2025-12-05 22:27:44,010 [INFO] adding 'executorch/exir/serde/serialize.py' 2025-12-05T22:27:44.0323337Z 2025-12-05 22:27:44,010 [INFO] adding 'executorch/exir/serde/union.py' 2025-12-05T22:27:44.0324174Z 2025-12-05 22:27:44,011 [INFO] adding 'executorch/exir/tests/asr_joiner.py' 2025-12-05T22:27:44.0325030Z 2025-12-05 22:27:44,011 [INFO] adding 'executorch/exir/tests/common.py' 2025-12-05T22:27:44.0326136Z 2025-12-05 22:27:44,011 [INFO] adding 'executorch/exir/tests/control_flow_models.py' 2025-12-05T22:27:44.0327138Z 2025-12-05 22:27:44,011 [INFO] adding 'executorch/exir/tests/dynamic_shape_models.py' 2025-12-05T22:27:44.0328099Z 2025-12-05 22:27:44,012 [INFO] adding 'executorch/exir/tests/models.py' 2025-12-05T22:27:44.0329026Z 2025-12-05 22:27:44,012 [INFO] adding 'executorch/exir/tests/test_arg_validator.py' 2025-12-05T22:27:44.0330026Z 2025-12-05 22:27:44,012 [INFO] adding 'executorch/exir/tests/test_capture.py' 2025-12-05T22:27:44.0331039Z 2025-12-05 22:27:44,012 [INFO] adding 'executorch/exir/tests/test_common.py' 2025-12-05T22:27:44.0331963Z 2025-12-05 22:27:44,013 [INFO] adding 'executorch/exir/tests/test_delegate.py' 2025-12-05T22:27:44.0332972Z 2025-12-05 22:27:44,013 [INFO] adding 'executorch/exir/tests/test_dim_order_utils.py' 2025-12-05T22:27:44.0334140Z 2025-12-05 22:27:44,013 [INFO] adding 'executorch/exir/tests/test_dynamic_shape_propagation.py' 2025-12-05T22:27:44.0335235Z 2025-12-05 22:27:44,013 [INFO] adding 'executorch/exir/tests/test_error.py' 2025-12-05T22:27:44.0336275Z 2025-12-05 22:27:44,013 [INFO] adding 'executorch/exir/tests/test_extract_io_quant_params.py' 2025-12-05T22:27:44.0337394Z 2025-12-05 22:27:44,014 [INFO] adding 'executorch/exir/tests/test_joint_graph.py' 2025-12-05T22:27:44.0338442Z 2025-12-05 22:27:44,014 [INFO] adding 'executorch/exir/tests/test_memory_format_ops_pass.py' 2025-12-05T22:27:44.0339577Z 2025-12-05 22:27:44,014 [INFO] adding 'executorch/exir/tests/test_memory_format_ops_pass_aten.py' 2025-12-05T22:27:44.0340842Z 2025-12-05 22:27:44,015 [INFO] adding 'executorch/exir/tests/test_memory_format_ops_pass_utils.py' 2025-12-05T22:27:44.0342016Z 2025-12-05 22:27:44,016 [INFO] adding 'executorch/exir/tests/test_memory_planning.py' 2025-12-05T22:27:44.0343195Z 2025-12-05 22:27:44,016 [INFO] adding 'executorch/exir/tests/test_op_convert.py' 2025-12-05T22:27:44.0344192Z 2025-12-05 22:27:44,016 [INFO] adding 'executorch/exir/tests/test_pass_infra.py' 2025-12-05T22:27:44.0345118Z 2025-12-05 22:27:44,018 [INFO] adding 'executorch/exir/tests/test_passes.py' 2025-12-05T22:27:44.0346167Z 2025-12-05 22:27:44,019 [INFO] adding 'executorch/exir/tests/test_print_program.py' 2025-12-05T22:27:44.0347237Z 2025-12-05 22:27:44,019 [INFO] adding 'executorch/exir/tests/test_prune_empty_tensors_pass.py' 2025-12-05T22:27:44.0348344Z 2025-12-05 22:27:44,020 [INFO] adding 'executorch/exir/tests/test_quant_fusion_pass.py' 2025-12-05T22:27:44.0348815Z 2025-12-05 22:27:44,020 [INFO] adding 'executorch/exir/tests/test_quantization.py' 2025-12-05T22:27:44.0349231Z 2025-12-05 22:27:44,020 [INFO] adding 'executorch/exir/tests/test_quantize_io_pass.py' 2025-12-05T22:27:44.0349633Z 2025-12-05 22:27:44,021 [INFO] adding 'executorch/exir/tests/test_reinplace_pass.py' 2025-12-05T22:27:44.0350175Z 2025-12-05 22:27:44,021 [INFO] adding 'executorch/exir/tests/test_remove_unused_parameters_pass.py' 2025-12-05T22:27:44.0350596Z 2025-12-05 22:27:44,021 [INFO] adding 'executorch/exir/tests/test_remove_view_copy.py' 2025-12-05T22:27:44.0350956Z 2025-12-05 22:27:44,022 [INFO] adding 'executorch/exir/tests/test_serde.py' 2025-12-05T22:27:44.0351301Z 2025-12-05 22:27:44,022 [INFO] adding 'executorch/exir/tests/test_tensor.py' 2025-12-05T22:27:44.0351618Z 2025-12-05 22:27:44,023 [INFO] adding 'executorch/exir/tests/test_tracer.py' 2025-12-05T22:27:44.0351999Z 2025-12-05 22:27:44,023 [INFO] adding 'executorch/exir/tests/test_verification.py' 2025-12-05T22:27:44.0352347Z 2025-12-05 22:27:44,023 [INFO] adding 'executorch/exir/tests/test_warnings.py' 2025-12-05T22:27:44.0352698Z 2025-12-05 22:27:44,024 [INFO] adding 'executorch/exir/tests/transformer.py' 2025-12-05T22:27:44.0353121Z 2025-12-05 22:27:44,024 [INFO] adding 'executorch/exir/verification/arg_validator.py' 2025-12-05T22:27:44.0353482Z 2025-12-05 22:27:44,024 [INFO] adding 'executorch/exir/verification/dev_html.py' 2025-12-05T22:27:44.0353878Z 2025-12-05 22:27:44,025 [INFO] adding 'executorch/exir/verification/interpreter.py' 2025-12-05T22:27:44.0354351Z 2025-12-05 22:27:44,025 [INFO] adding 'executorch/exir/verification/verifier.py' 2025-12-05T22:27:44.2838832Z 2025-12-05 22:27:44,026 [INFO] adding 'executorch/exir/verification/test/test_verifier.py' 2025-12-05T22:27:44.2839944Z 2025-12-05 22:27:44,026 [INFO] adding 'executorch/export/__init__.py' 2025-12-05T22:27:44.2840786Z 2025-12-05 22:27:44,027 [INFO] adding 'executorch/export/export.py' 2025-12-05T22:27:44.2841612Z 2025-12-05 22:27:44,027 [INFO] adding 'executorch/export/recipe.py' 2025-12-05T22:27:44.2842677Z 2025-12-05 22:27:44,028 [INFO] adding 'executorch/export/recipe_provider.py' 2025-12-05T22:27:44.2843622Z 2025-12-05 22:27:44,028 [INFO] adding 'executorch/export/recipe_registry.py' 2025-12-05T22:27:44.2844507Z 2025-12-05 22:27:44,029 [INFO] adding 'executorch/export/stages.py' 2025-12-05T22:27:44.2845364Z 2025-12-05 22:27:44,029 [INFO] adding 'executorch/export/target_recipes.py' 2025-12-05T22:27:44.2846255Z 2025-12-05 22:27:44,029 [INFO] adding 'executorch/export/types.py' 2025-12-05T22:27:44.2847109Z 2025-12-05 22:27:44,030 [INFO] adding 'executorch/export/utils.py' 2025-12-05T22:27:44.2848107Z 2025-12-05 22:27:44,030 [INFO] adding 'executorch/export/tests/test_executorch_export.py' 2025-12-05T22:27:44.2849178Z 2025-12-05 22:27:44,030 [INFO] adding 'executorch/export/tests/test_export_recipe.py' 2025-12-05T22:27:44.2850210Z 2025-12-05 22:27:44,031 [INFO] adding 'executorch/export/tests/test_export_session.py' 2025-12-05T22:27:44.2851277Z 2025-12-05 22:27:44,032 [INFO] adding 'executorch/export/tests/test_export_stages.py' 2025-12-05T22:27:44.2852345Z 2025-12-05 22:27:44,032 [INFO] adding 'executorch/export/tests/test_recipe_provider.py' 2025-12-05T22:27:44.2853390Z 2025-12-05 22:27:44,032 [INFO] adding 'executorch/export/tests/test_recipe_registry.py' 2025-12-05T22:27:44.2854621Z 2025-12-05 22:27:44,033 [INFO] adding 'executorch/export/tests/test_target_recipes.py' 2025-12-05T22:27:44.2855716Z 2025-12-05 22:27:44,034 [INFO] adding 'executorch/extension/audio/mel_spectrogram.py' 2025-12-05T22:27:44.2856697Z 2025-12-05 22:27:44,034 [INFO] adding 'executorch/extension/export_util/__init__.py' 2025-12-05T22:27:44.2857866Z 2025-12-05 22:27:44,035 [INFO] adding 'executorch/extension/export_util/utils.py' 2025-12-05T22:27:44.2858859Z 2025-12-05 22:27:44,035 [INFO] adding 'executorch/extension/flat_tensor/__init__.py' 2025-12-05T22:27:44.2860017Z 2025-12-05 22:27:44,035 [INFO] adding 'executorch/extension/flat_tensor/serialize/__init__.py' 2025-12-05T22:27:44.2861290Z 2025-12-05 22:27:44,035 [INFO] adding 'executorch/extension/flat_tensor/serialize/flat_tensor.fbs' 2025-12-05T22:27:44.2862641Z 2025-12-05 22:27:44,036 [INFO] adding 'executorch/extension/flat_tensor/serialize/flat_tensor_schema.py' 2025-12-05T22:27:44.2863930Z 2025-12-05 22:27:44,036 [INFO] adding 'executorch/extension/flat_tensor/serialize/scalar_type.fbs' 2025-12-05T22:27:44.2865122Z 2025-12-05 22:27:44,036 [INFO] adding 'executorch/extension/flat_tensor/serialize/serialize.py' 2025-12-05T22:27:44.2866353Z 2025-12-05 22:27:44,037 [INFO] adding 'executorch/extension/flat_tensor/test/test_serialize.py' 2025-12-05T22:27:44.2867507Z 2025-12-05 22:27:44,037 [INFO] adding 'executorch/extension/gguf_util/convert_main.py' 2025-12-05T22:27:44.2868650Z 2025-12-05 22:27:44,037 [INFO] adding 'executorch/extension/gguf_util/converter.py' 2025-12-05T22:27:44.2869704Z 2025-12-05 22:27:44,038 [INFO] adding 'executorch/extension/gguf_util/load_gguf.py' 2025-12-05T22:27:44.2870865Z 2025-12-05 22:27:44,038 [INFO] adding 'executorch/extension/gguf_util/converters/llama_converter.py' 2025-12-05T22:27:44.2872031Z 2025-12-05 22:27:44,038 [INFO] adding 'executorch/extension/llm/custom_ops/__init__.py' 2025-12-05T22:27:44.2873108Z 2025-12-05 22:27:44,038 [INFO] adding 'executorch/extension/llm/custom_ops/custom_ops.py' 2025-12-05T22:27:44.2874333Z 2025-12-05 22:27:44,086 [INFO] adding 'executorch/extension/llm/custom_ops/libcustom_ops_aot_lib.so' 2025-12-05T22:27:44.2875714Z 2025-12-05 22:27:44,092 [INFO] adding 'executorch/extension/llm/custom_ops/model_sharding.py' 2025-12-05T22:27:44.2876903Z 2025-12-05 22:27:44,092 [INFO] adding 'executorch/extension/llm/custom_ops/op_tile_crop_aot.py' 2025-12-05T22:27:44.2878134Z 2025-12-05 22:27:44,092 [INFO] adding 'executorch/extension/llm/custom_ops/preprocess_custom_ops.py' 2025-12-05T22:27:44.2879535Z 2025-12-05 22:27:44,092 [INFO] adding 'executorch/extension/llm/custom_ops/test_preprocess_custom_ops.py' 2025-12-05T22:27:44.2880978Z 2025-12-05 22:27:44,093 [INFO] adding 'executorch/extension/llm/custom_ops/test_quantized_sdpa.py' 2025-12-05T22:27:44.2882326Z 2025-12-05 22:27:44,093 [INFO] adding 'executorch/extension/llm/custom_ops/test_sdpa_with_kv_cache.py' 2025-12-05T22:27:44.2883635Z 2025-12-05 22:27:44,094 [INFO] adding 'executorch/extension/llm/custom_ops/test_update_cache.py' 2025-12-05T22:27:44.2885041Z 2025-12-05 22:27:44,094 [INFO] adding 'executorch/extension/llm/custom_ops/spinquant/special_hadamard_code_gen.py' 2025-12-05T22:27:44.2886595Z 2025-12-05 22:27:44,095 [INFO] adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/example.py' 2025-12-05T22:27:44.2888090Z 2025-12-05 22:27:44,095 [INFO] adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/gen.py' 2025-12-05T22:27:44.2889328Z 2025-12-05 22:27:44,096 [INFO] adding 'executorch/extension/llm/export/__init__.py' 2025-12-05T22:27:44.2890313Z 2025-12-05 22:27:44,096 [INFO] adding 'executorch/extension/llm/export/builder.py' 2025-12-05T22:27:44.2891405Z 2025-12-05 22:27:44,097 [INFO] adding 'executorch/extension/llm/export/export_llm.py' 2025-12-05T22:27:44.2892493Z 2025-12-05 22:27:44,097 [INFO] adding 'executorch/extension/llm/export/export_passes.py' 2025-12-05T22:27:44.2893636Z 2025-12-05 22:27:44,097 [INFO] adding 'executorch/extension/llm/export/partitioner_lib.py' 2025-12-05T22:27:44.2894760Z 2025-12-05 22:27:44,098 [INFO] adding 'executorch/extension/llm/export/quantizer_lib.py' 2025-12-05T22:27:44.2895864Z 2025-12-05 22:27:44,098 [INFO] adding 'executorch/extension/llm/export/test_export_passes.py' 2025-12-05T22:27:44.2897155Z 2025-12-05 22:27:44,099 [INFO] adding 'executorch/extension/llm/export/config/llm_config.py' 2025-12-05T22:27:44.2898240Z 2025-12-05 22:27:44,099 [INFO] adding 'executorch/extension/llm/export/test/__init__.py' 2025-12-05T22:27:44.2899367Z 2025-12-05 22:27:44,100 [INFO] adding 'executorch/extension/llm/export/test/test_builder.py' 2025-12-05T22:27:44.2900607Z 2025-12-05 22:27:44,100 [INFO] adding 'executorch/extension/llm/export/test/test_export_llm.py' 2025-12-05T22:27:44.2901769Z 2025-12-05 22:27:44,100 [INFO] adding 'executorch/extension/llm/modules/__init__.py' 2025-12-05T22:27:44.2902870Z 2025-12-05 22:27:44,101 [INFO] adding 'executorch/extension/llm/modules/_position_embeddings.py' 2025-12-05T22:27:44.2904010Z 2025-12-05 22:27:44,102 [INFO] adding 'executorch/extension/llm/modules/attention.py' 2025-12-05T22:27:44.2905068Z 2025-12-05 22:27:44,102 [INFO] adding 'executorch/extension/llm/modules/kv_cache.py' 2025-12-05T22:27:44.2906118Z 2025-12-05 22:27:44,102 [INFO] adding 'executorch/extension/llm/modules/test/__init__.py' 2025-12-05T22:27:44.2907270Z 2025-12-05 22:27:44,102 [INFO] adding 'executorch/extension/llm/modules/test/test_attention.py' 2025-12-05T22:27:44.2908566Z 2025-12-05 22:27:44,103 [INFO] adding 'executorch/extension/llm/modules/test/test_kv_cache.py' 2025-12-05T22:27:44.2909846Z 2025-12-05 22:27:44,103 [INFO] adding 'executorch/extension/llm/modules/test/test_position_embeddings.py' 2025-12-05T22:27:44.2911065Z 2025-12-05 22:27:44,104 [INFO] adding 'executorch/extension/llm/runner/__init__.py' 2025-12-05T22:27:44.2912355Z 2025-12-05 22:27:44,269 [INFO] adding 'executorch/extension/llm/runner/_llm_runner.cpython-310-x86_64-linux-gnu.so' 2025-12-05T22:27:44.2913655Z 2025-12-05 22:27:44,277 [INFO] adding 'executorch/extension/llm/runner/_llm_runner.pyi' 2025-12-05T22:27:44.2915004Z 2025-12-05 22:27:44,277 [INFO] adding 'executorch/extension/llm/runner/test/test_runner_pybindings.py' 2025-12-05T22:27:44.2916196Z 2025-12-05 22:27:44,278 [INFO] adding 'executorch/extension/llm/tokenizers/setup.py' 2025-12-05T22:27:44.2917429Z 2025-12-05 22:27:44,278 [INFO] adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/__init__.py' 2025-12-05T22:27:44.2919131Z 2025-12-05 22:27:44,278 [INFO] adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/constants.py' 2025-12-05T22:27:44.2920782Z 2025-12-05 22:27:44,279 [INFO] adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/hf_tokenizer.py' 2025-12-05T22:27:44.2922264Z 2025-12-05 22:27:44,279 [INFO] adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/llama2c.py' 2025-12-05T22:27:44.2923645Z 2025-12-05 22:27:44,279 [INFO] adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tiktoken.py' 2025-12-05T22:27:44.2925134Z 2025-12-05 22:27:44,279 [INFO] adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/__init__.py' 2025-12-05T22:27:44.2926713Z 2025-12-05 22:27:44,280 [INFO] adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-12-05T22:27:44.2928420Z 2025-12-05 22:27:44,280 [INFO] adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/convert.py' 2025-12-05T22:27:44.2929941Z 2025-12-05 22:27:44,280 [INFO] adding 'executorch/extension/llm/tokenizers/test/test_hf_tokenizer.py' 2025-12-05T22:27:44.2931308Z 2025-12-05 22:27:44,280 [INFO] adding 'executorch/extension/llm/tokenizers/test/test_python_bindings.py' 2025-12-05T22:27:44.2932673Z 2025-12-05 22:27:44,281 [INFO] adding 'executorch/extension/llm/tokenizers/test/test_tekken_python.py' 2025-12-05T22:27:44.2933953Z 2025-12-05 22:27:44,281 [INFO] adding 'executorch/extension/llm/tokenizers/test/test_tiktoken.py' 2025-12-05T22:27:44.2935507Z 2025-12-05 22:27:44,282 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/conanfile.py' 2025-12-05T22:27:44.2937019Z 2025-12-05 22:27:44,282 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/create_lts.py' 2025-12-05T22:27:44.2938769Z 2025-12-05 22:27:44,282 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py' 2025-12-05T22:27:44.2940492Z 2025-12-05 22:27:44,283 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/copts.py' 2025-12-05T22:27:44.9503080Z 2025-12-05 22:27:44,283 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/generate_copts.py' 2025-12-05T22:27:44.9505070Z 2025-12-05 22:27:44,283 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts/check_structure.py' 2025-12-05T22:27:44.9506906Z 2025-12-05 22:27:44,284 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl/filterbr.py' 2025-12-05T22:27:44.9508812Z 2025-12-05 22:27:44,284 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate/amalgamate.py' 2025-12-05T22:27:44.9510666Z 2025-12-05 22:27:44,285 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py' 2025-12-05T22:27:44.9512596Z 2025-12-05 22:27:44,285 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis/generate_natvis.py' 2025-12-05T22:27:44.9514441Z 2025-12-05 22:27:44,286 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/json/tools/serve_header/serve_header.py' 2025-12-05T22:27:44.9516173Z 2025-12-05 22:27:44,287 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateCommon.py' 2025-12-05T22:27:44.9517789Z 2025-12-05 22:27:44,287 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateTest.py' 2025-12-05T22:27:44.9519579Z 2025-12-05 22:27:44,289 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcd.py' 2025-12-05T22:27:44.9521385Z 2025-12-05 22:27:44,289 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpHeader.py' 2025-12-05T22:27:44.9523103Z 2025-12-05 22:27:44,290 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpTables.py' 2025-12-05T22:27:44.9524695Z 2025-12-05 22:27:44,290 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateCommon.py' 2025-12-05T22:27:44.9526293Z 2025-12-05 22:27:44,290 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateDates.py' 2025-12-05T22:27:44.9528006Z 2025-12-05 22:27:44,291 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateRelease.py' 2025-12-05T22:27:44.9529584Z 2025-12-05 22:27:44,291 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/re2/benchlog/benchplot.py' 2025-12-05T22:27:44.9531070Z 2025-12-05 22:27:44,292 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2.py' 2025-12-05T22:27:44.9532568Z 2025-12-05 22:27:44,293 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2_test.py' 2025-12-05T22:27:44.9534065Z 2025-12-05 22:27:44,293 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/re2/python/setup.py' 2025-12-05T22:27:44.9535649Z 2025-12-05 22:27:44,293 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/re2/python/toolchains/generate.py' 2025-12-05T22:27:44.9537339Z 2025-12-05 22:27:44,294 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_casefold.py' 2025-12-05T22:27:44.9538982Z 2025-12-05 22:27:44,294 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_groups.py' 2025-12-05T22:27:44.9540529Z 2025-12-05 22:27:44,294 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/unicode.py' 2025-12-05T22:27:44.9542139Z 2025-12-05 22:27:44,295 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/setup.py' 2025-12-05T22:27:44.9544008Z 2025-12-05 22:27:44,296 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/__init__.py' 2025-12-05T22:27:44.9546166Z 2025-12-05 22:27:44,296 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/_version.py' 2025-12-05T22:27:44.9548433Z 2025-12-05 22:27:44,297 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_model_pb2.py' 2025-12-05T22:27:44.9550804Z 2025-12-05 22:27:44,297 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_pb2.py' 2025-12-05T22:27:44.9552840Z 2025-12-05 22:27:44,297 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/__init__.py' 2025-12-05T22:27:44.9554741Z 2025-12-05 22:27:44,298 [INFO] adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/sentencepiece_test.py' 2025-12-05T22:27:44.9556421Z 2025-12-05 22:27:44,298 [INFO] adding 'executorch/extension/module/test/resources/gen_bundled_program.py' 2025-12-05T22:27:44.9557911Z 2025-12-05 22:27:44,720 [INFO] adding 'executorch/extension/pybindings/_portable_lib.cpython-310-x86_64-linux-gnu.so' 2025-12-05T22:27:44.9559294Z 2025-12-05 22:27:44,741 [INFO] adding 'executorch/extension/pybindings/portable_lib.py' 2025-12-05T22:27:44.9560412Z 2025-12-05 22:27:44,741 [INFO] adding 'executorch/extension/pybindings/pybindings.pyi' 2025-12-05T22:27:44.9561517Z 2025-12-05 22:27:44,741 [INFO] adding 'executorch/extension/pybindings/test/make_test.py' 2025-12-05T22:27:44.9562755Z 2025-12-05 22:27:44,741 [INFO] adding 'executorch/extension/pybindings/test/test_backend_pybinding.py' 2025-12-05T22:27:44.9564059Z 2025-12-05 22:27:44,742 [INFO] adding 'executorch/extension/pybindings/test/test_pybindings.py' 2025-12-05T22:27:44.9565154Z 2025-12-05 22:27:44,742 [INFO] adding 'executorch/extension/pytree/__init__.py' 2025-12-05T22:27:44.9566106Z 2025-12-05 22:27:44,743 [INFO] adding 'executorch/extension/pytree/test/test.py' 2025-12-05T22:27:44.9567203Z 2025-12-05 22:27:44,743 [INFO] adding 'executorch/extension/training/__init__.py' 2025-12-05T22:27:44.9568347Z 2025-12-05 22:27:44,744 [INFO] adding 'executorch/extension/training/examples/CIFAR/data_utils.py' 2025-12-05T22:27:44.9569573Z 2025-12-05 22:27:44,744 [INFO] adding 'executorch/extension/training/examples/CIFAR/export.py' 2025-12-05T22:27:44.9570779Z 2025-12-05 22:27:44,744 [INFO] adding 'executorch/extension/training/examples/CIFAR/main.py' 2025-12-05T22:27:44.9572073Z 2025-12-05 22:27:44,745 [INFO] adding 'executorch/extension/training/examples/CIFAR/model.py' 2025-12-05T22:27:44.9573256Z 2025-12-05 22:27:44,745 [INFO] adding 'executorch/extension/training/examples/CIFAR/train_utils.py' 2025-12-05T22:27:44.9574610Z 2025-12-05 22:27:44,746 [INFO] adding 'executorch/extension/training/examples/XOR/export_model.py' 2025-12-05T22:27:44.9575830Z 2025-12-05 22:27:44,746 [INFO] adding 'executorch/extension/training/examples/XOR/model.py' 2025-12-05T22:27:44.9577044Z 2025-12-05 22:27:44,746 [INFO] adding 'executorch/extension/training/examples/XOR/test/test_export.py' 2025-12-05T22:27:44.9578585Z 2025-12-05 22:27:44,933 [INFO] adding 'executorch/extension/training/pybindings/_training_lib.cpython-310-x86_64-linux-gnu.so' 2025-12-05T22:27:44.9580095Z 2025-12-05 22:27:44,941 [INFO] adding 'executorch/extension/training/pybindings/_training_lib.pyi' 2025-12-05T22:27:44.9581398Z 2025-12-05 22:27:44,941 [INFO] adding 'executorch/extension/training/pybindings/_training_module.py' 2025-12-05T22:27:44.9582650Z 2025-12-05 22:27:44,941 [INFO] adding 'executorch/extension/training/pybindings/test/test.py' 2025-12-05T22:27:44.9583719Z 2025-12-05 22:27:44,942 [INFO] adding 'executorch/extension/wasm/test/test_model.py' 2025-12-05T22:27:44.9585260Z 2025-12-05 22:27:44,942 [INFO] adding 'executorch/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h' 2025-12-05T22:27:44.9586921Z 2025-12-05 22:27:44,942 [INFO] adding 'executorch/include/executorch/extension/kernel_util/meta_programming.h' 2025-12-05T22:27:44.9588389Z 2025-12-05 22:27:44,943 [INFO] adding 'executorch/include/executorch/extension/kernel_util/type_list.h' 2025-12-05T22:27:44.9589910Z 2025-12-05 22:27:44,943 [INFO] adding 'executorch/include/executorch/extension/tensor/tensor.h' 2025-12-05T22:27:44.9591258Z 2025-12-05 22:27:44,943 [INFO] adding 'executorch/include/executorch/extension/tensor/tensor_accessor.h' 2025-12-05T22:27:44.9592660Z 2025-12-05 22:27:44,944 [INFO] adding 'executorch/include/executorch/extension/tensor/tensor_ptr.h' 2025-12-05T22:27:44.9594064Z 2025-12-05 22:27:44,944 [INFO] adding 'executorch/include/executorch/extension/tensor/tensor_ptr_maker.h' 2025-12-05T22:27:44.9595541Z 2025-12-05 22:27:44,945 [INFO] adding 'executorch/include/executorch/extension/threadpool/cpuinfo_utils.h' 2025-12-05T22:27:44.9597073Z 2025-12-05 22:27:44,945 [INFO] adding 'executorch/include/executorch/extension/threadpool/threadpool.h' 2025-12-05T22:27:44.9598502Z 2025-12-05 22:27:44,945 [INFO] adding 'executorch/include/executorch/extension/threadpool/threadpool_guard.h' 2025-12-05T22:27:44.9599960Z 2025-12-05 22:27:44,945 [INFO] adding 'executorch/include/executorch/runtime/core/array_ref.h' 2025-12-05T22:27:44.9601160Z 2025-12-05 22:27:44,946 [INFO] adding 'executorch/include/executorch/runtime/core/data_loader.h' 2025-12-05T22:27:44.9602355Z 2025-12-05 22:27:44,946 [INFO] adding 'executorch/include/executorch/runtime/core/defines.h' 2025-12-05T22:27:44.9603485Z 2025-12-05 22:27:44,946 [INFO] adding 'executorch/include/executorch/runtime/core/error.h' 2025-12-05T22:27:44.9604571Z 2025-12-05 22:27:44,947 [INFO] adding 'executorch/include/executorch/runtime/core/evalue.h' 2025-12-05T22:27:44.9605764Z 2025-12-05 22:27:44,948 [INFO] adding 'executorch/include/executorch/runtime/core/event_tracer.h' 2025-12-05T22:27:44.9607066Z 2025-12-05 22:27:44,948 [INFO] adding 'executorch/include/executorch/runtime/core/event_tracer_hooks.h' 2025-12-05T22:27:44.9608631Z 2025-12-05 22:27:44,948 [INFO] adding 'executorch/include/executorch/runtime/core/event_tracer_hooks_delegate.h' 2025-12-05T22:27:44.9610045Z 2025-12-05 22:27:44,949 [INFO] adding 'executorch/include/executorch/runtime/core/freeable_buffer.h' 2025-12-05T22:27:44.9611309Z 2025-12-05 22:27:44,949 [INFO] adding 'executorch/include/executorch/runtime/core/function_ref.h' 2025-12-05T22:27:44.9768633Z 2025-12-05 22:27:44,949 [INFO] adding 'executorch/include/executorch/runtime/core/hierarchical_allocator.h' 2025-12-05T22:27:44.9770221Z 2025-12-05 22:27:44,950 [INFO] adding 'executorch/include/executorch/runtime/core/memory_allocator.h' 2025-12-05T22:27:44.9771552Z 2025-12-05 22:27:44,950 [INFO] adding 'executorch/include/executorch/runtime/core/named_data_map.h' 2025-12-05T22:27:44.9772847Z 2025-12-05 22:27:44,951 [INFO] adding 'executorch/include/executorch/runtime/core/result.h' 2025-12-05T22:27:44.9773949Z 2025-12-05 22:27:44,951 [INFO] adding 'executorch/include/executorch/runtime/core/span.h' 2025-12-05T22:27:44.9775057Z 2025-12-05 22:27:44,951 [INFO] adding 'executorch/include/executorch/runtime/core/tag.h' 2025-12-05T22:27:44.9776256Z 2025-12-05 22:27:44,952 [INFO] adding 'executorch/include/executorch/runtime/core/tensor_layout.h' 2025-12-05T22:27:44.9777571Z 2025-12-05 22:27:44,952 [INFO] adding 'executorch/include/executorch/runtime/core/tensor_shape_dynamism.h' 2025-12-05T22:27:44.9778896Z 2025-12-05 22:27:44,952 [INFO] adding 'executorch/include/executorch/runtime/core/exec_aten/exec_aten.h' 2025-12-05T22:27:44.9780391Z 2025-12-05 22:27:44,954 [INFO] adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h' 2025-12-05T22:27:44.9782010Z 2025-12-05 22:27:44,954 [INFO] adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h' 2025-12-05T22:27:44.9783721Z 2025-12-05 22:27:44,955 [INFO] adding 'executorch/include/executorch/runtime/core/exec_aten/util/dim_order_util.h' 2025-12-05T22:27:44.9785247Z 2025-12-05 22:27:44,957 [INFO] adding 'executorch/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h' 2025-12-05T22:27:44.9787042Z 2025-12-05 22:27:44,957 [INFO] adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h' 2025-12-05T22:27:44.9788966Z 2025-12-05 22:27:44,958 [INFO] adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h' 2025-12-05T22:27:44.9790625Z 2025-12-05 22:27:44,959 [INFO] adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_util.h' 2025-12-05T22:27:44.9792184Z 2025-12-05 22:27:44,960 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16.h' 2025-12-05T22:27:44.9793716Z 2025-12-05 22:27:44,960 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16_math.h' 2025-12-05T22:27:44.9795273Z 2025-12-05 22:27:44,960 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/bits_types.h' 2025-12-05T22:27:44.9796770Z 2025-12-05 22:27:44,961 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/complex.h' 2025-12-05T22:27:44.9798189Z 2025-12-05 22:27:44,961 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/device.h' 2025-12-05T22:27:44.9799576Z 2025-12-05 22:27:44,961 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/half.h' 2025-12-05T22:27:44.9801043Z 2025-12-05 22:27:44,961 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/optional.h' 2025-12-05T22:27:44.9802602Z 2025-12-05 22:27:44,962 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/qint_types.h' 2025-12-05T22:27:44.9804114Z 2025-12-05 22:27:44,962 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/scalar.h' 2025-12-05T22:27:44.9805626Z 2025-12-05 22:27:44,962 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/scalar_type.h' 2025-12-05T22:27:44.9807334Z 2025-12-05 22:27:44,962 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/string_view.h' 2025-12-05T22:27:44.9808840Z 2025-12-05 22:27:44,963 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/tensor.h' 2025-12-05T22:27:44.9810392Z 2025-12-05 22:27:44,963 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/tensor_impl.h' 2025-12-05T22:27:44.9812020Z 2025-12-05 22:27:44,963 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/tensor_options.h' 2025-12-05T22:27:44.9813754Z 2025-12-05 22:27:44,964 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h' 2025-12-05T22:27:44.9815484Z 2025-12-05 22:27:44,964 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h' 2025-12-05T22:27:44.9817238Z 2025-12-05 22:27:44,964 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h' 2025-12-05T22:27:44.9819338Z 2025-12-05 22:27:44,964 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h' 2025-12-05T22:27:44.9821162Z 2025-12-05 22:27:44,965 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h' 2025-12-05T22:27:44.9822886Z 2025-12-05 22:27:44,965 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h' 2025-12-05T22:27:44.9824559Z 2025-12-05 22:27:44,965 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h' 2025-12-05T22:27:44.9826324Z 2025-12-05 22:27:44,965 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h' 2025-12-05T22:27:44.9828100Z 2025-12-05 22:27:44,965 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h' 2025-12-05T22:27:44.9829964Z 2025-12-05 22:27:44,965 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h' 2025-12-05T22:27:44.9831661Z 2025-12-05 22:27:44,966 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h' 2025-12-05T22:27:44.9833507Z 2025-12-05 22:27:44,966 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h' 2025-12-05T22:27:44.9835334Z 2025-12-05 22:27:44,966 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h' 2025-12-05T22:27:44.9837123Z 2025-12-05 22:27:44,966 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h' 2025-12-05T22:27:44.9838844Z 2025-12-05 22:27:44,967 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/llvmMathExtras.h' 2025-12-05T22:27:44.9840581Z 2025-12-05 22:27:44,967 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/overflows.h' 2025-12-05T22:27:44.9842333Z 2025-12-05 22:27:44,968 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/safe_numerics.h' 2025-12-05T22:27:44.9844183Z 2025-12-05 22:27:44,968 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros/Export.h' 2025-12-05T22:27:44.9846104Z 2025-12-05 22:27:44,969 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros/Macros.h' 2025-12-05T22:27:44.9848041Z 2025-12-05 22:27:44,969 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/BFloat16.h' 2025-12-05T22:27:44.9849954Z 2025-12-05 22:27:44,970 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/Half.h' 2025-12-05T22:27:44.9851950Z 2025-12-05 22:27:44,970 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/TypeSafeSignMath.h' 2025-12-05T22:27:44.9854203Z 2025-12-05 22:27:44,971 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/bit_cast.h' 2025-12-05T22:27:44.9856311Z 2025-12-05 22:27:44,971 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/complex.h' 2025-12-05T22:27:44.9858407Z 2025-12-05 22:27:44,971 [INFO] adding 'executorch/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/floating_point_utils.h' 2025-12-05T22:27:44.9860255Z 2025-12-05 22:27:44,972 [INFO] adding 'executorch/include/executorch/runtime/core/testing_util/error_matchers.h' 2025-12-05T22:27:44.9861763Z 2025-12-05 22:27:44,972 [INFO] adding 'executorch/include/executorch/runtime/kernel/kernel_includes.h' 2025-12-05T22:27:44.9863199Z 2025-12-05 22:27:44,972 [INFO] adding 'executorch/include/executorch/runtime/kernel/kernel_runtime_context.h' 2025-12-05T22:27:44.9864639Z 2025-12-05 22:27:44,973 [INFO] adding 'executorch/include/executorch/runtime/kernel/operator_registry.h' 2025-12-05T22:27:44.9866125Z 2025-12-05 22:27:44,973 [INFO] adding 'executorch/include/executorch/runtime/kernel/thread_parallel_interface.h' 2025-12-05T22:27:44.9867583Z 2025-12-05 22:27:44,973 [INFO] adding 'executorch/include/executorch/runtime/kernel/test/test_util.h' 2025-12-05T22:27:44.9868899Z 2025-12-05 22:27:44,973 [INFO] adding 'executorch/include/executorch/runtime/platform/abort.h' 2025-12-05T22:27:44.9870113Z 2025-12-05 22:27:44,974 [INFO] adding 'executorch/include/executorch/runtime/platform/assert.h' 2025-12-05T22:27:44.9871344Z 2025-12-05 22:27:44,974 [INFO] adding 'executorch/include/executorch/runtime/platform/clock.h' 2025-12-05T22:27:44.9872623Z 2025-12-05 22:27:44,974 [INFO] adding 'executorch/include/executorch/runtime/platform/compat_unistd.h' 2025-12-05T22:27:44.9873965Z 2025-12-05 22:27:44,974 [INFO] adding 'executorch/include/executorch/runtime/platform/compiler.h' 2025-12-05T22:27:44.9875214Z 2025-12-05 22:27:44,975 [INFO] adding 'executorch/include/executorch/runtime/platform/log.h' 2025-12-05T22:27:44.9876437Z 2025-12-05 22:27:44,975 [INFO] adding 'executorch/include/executorch/runtime/platform/platform.h' 2025-12-05T22:27:44.9877736Z 2025-12-05 22:27:44,975 [INFO] adding 'executorch/include/executorch/runtime/platform/profiler.h' 2025-12-05T22:27:44.9879032Z 2025-12-05 22:27:44,976 [INFO] adding 'executorch/include/executorch/runtime/platform/runtime.h' 2025-12-05T22:27:45.3821654Z 2025-12-05 22:27:44,976 [INFO] adding 'executorch/include/executorch/runtime/platform/system.h' 2025-12-05T22:27:45.3822739Z 2025-12-05 22:27:44,976 [INFO] adding 'executorch/include/executorch/runtime/platform/types.h' 2025-12-05T22:27:45.3823905Z 2025-12-05 22:27:44,976 [INFO] adding 'executorch/include/executorch/runtime/platform/test/pal_spy.h' 2025-12-05T22:27:45.3825244Z 2025-12-05 22:27:44,977 [INFO] adding 'executorch/include/executorch/runtime/platform/test/stub_platform.h' 2025-12-05T22:27:45.3826506Z 2025-12-05 22:27:44,977 [INFO] adding 'executorch/kernels/quantized/__init__.py' 2025-12-05T22:27:45.3827643Z 2025-12-05 22:27:45,001 [INFO] adding 'executorch/kernels/quantized/libquantized_ops_aot_lib.so' 2025-12-05T22:27:45.3828935Z 2025-12-05 22:27:45,003 [INFO] adding 'executorch/kernels/quantized/quantized.yaml' 2025-12-05T22:27:45.3830162Z 2025-12-05 22:27:45,003 [INFO] adding 'executorch/kernels/quantized/test/supported_features_def.yaml' 2025-12-05T22:27:45.3831460Z 2025-12-05 22:27:45,003 [INFO] adding 'executorch/kernels/quantized/test/test_out_variants.py' 2025-12-05T22:27:45.3832771Z 2025-12-05 22:27:45,004 [INFO] adding 'executorch/kernels/quantized/test/test_quant_dequant_per_token.py' 2025-12-05T22:27:45.3833960Z 2025-12-05 22:27:45,004 [INFO] adding 'executorch/runtime/__init__.py' 2025-12-05T22:27:45.3834912Z 2025-12-05 22:27:45,005 [INFO] adding 'executorch/runtime/kernel/test/functions.yaml' 2025-12-05T22:27:45.3835927Z 2025-12-05 22:27:45,005 [INFO] adding 'executorch/runtime/test/test_runtime.py' 2025-12-05T22:27:45.3836553Z 2025-12-05 22:27:45,005 [INFO] adding 'executorch/runtime/test/test_runtime_etdump_gen.py' 2025-12-05T22:27:45.3839826Z 2025-12-05 22:27:45,006 [INFO] adding 'executorch/schema/program.fbs' 2025-12-05T22:27:45.3840336Z 2025-12-05 22:27:45,006 [INFO] adding 'executorch/schema/scalar_type.fbs' 2025-12-05T22:27:45.3840896Z 2025-12-05 22:27:45,006 [INFO] adding 'executorch/share/cmake/executorch-config.cmake' 2025-12-05T22:27:45.3841501Z 2025-12-05 22:27:45,007 [INFO] adding 'executorch/util/activation_memory_profiler.py' 2025-12-05T22:27:45.3842047Z 2025-12-05 22:27:45,008 [INFO] adding 'executorch/util/collect_env.py' 2025-12-05T22:27:45.3842610Z 2025-12-05 22:27:45,008 [INFO] adding 'executorch/util/python_profiler.py' 2025-12-05T22:27:45.3843200Z 2025-12-05 22:27:45,008 [INFO] adding 'executorch-1.1.0a0+42e3222.dist-info/licenses/LICENSE' 2025-12-05T22:27:45.3843811Z 2025-12-05 22:27:45,009 [INFO] adding 'executorch-1.1.0a0+42e3222.dist-info/METADATA' 2025-12-05T22:27:45.3844394Z 2025-12-05 22:27:45,009 [INFO] adding 'executorch-1.1.0a0+42e3222.dist-info/WHEEL' 2025-12-05T22:27:45.3844999Z 2025-12-05 22:27:45,009 [INFO] adding 'executorch-1.1.0a0+42e3222.dist-info/entry_points.txt' 2025-12-05T22:27:45.3845648Z 2025-12-05 22:27:45,009 [INFO] adding 'executorch-1.1.0a0+42e3222.dist-info/top_level.txt' 2025-12-05T22:27:45.3846255Z 2025-12-05 22:27:45,024 [INFO] adding 'executorch-1.1.0a0+42e3222.dist-info/RECORD' 2025-12-05T22:27:45.3846783Z 2025-12-05 22:27:45,031 [INFO] removing pip-out/bdist.linux-x86_64/wheel 2025-12-05T22:27:45.3847558Z Building wheel for executorch (pyproject.toml) ... [?25l[?25hdone 2025-12-05T22:27:45.3848578Z Created wheel for executorch: filename=executorch-1.1.0a0+42e3222-cp310-cp310-linux_x86_64.whl size=12687712 sha256=7e6eb4256881db5f63d3b5b03d1a26ec090ebeb7afc6d2979834bbd5dd4b231b 2025-12-05T22:27:45.3849880Z Stored in directory: /tmp/pip-ephem-wheel-cache-88a6vsay/wheels/9e/f0/2b/6a778c77421b91e006bef425e288a1e5c7c35b04c51317756b 2025-12-05T22:27:45.3852855Z  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-12-05T22:27:45.3855163Z  Running command python setup.py bdist_wheel 2025-12-05T22:27:45.3855500Z running bdist_wheel 2025-12-05T22:27:45.3855750Z running build 2025-12-05T22:27:45.3855967Z running build_py 2025-12-05T22:27:45.3856210Z creating build/lib/antlr4 2025-12-05T22:27:45.3856585Z copying src/antlr4/BufferedTokenStream.py -> build/lib/antlr4 2025-12-05T22:27:45.3857111Z copying src/antlr4/CommonTokenFactory.py -> build/lib/antlr4 2025-12-05T22:27:45.3857672Z copying src/antlr4/CommonTokenStream.py -> build/lib/antlr4 2025-12-05T22:27:45.3858128Z copying src/antlr4/FileStream.py -> build/lib/antlr4 2025-12-05T22:27:45.3858570Z copying src/antlr4/InputStream.py -> build/lib/antlr4 2025-12-05T22:27:45.3859011Z copying src/antlr4/IntervalSet.py -> build/lib/antlr4 2025-12-05T22:27:45.3859428Z copying src/antlr4/LL1Analyzer.py -> build/lib/antlr4 2025-12-05T22:27:45.3859840Z copying src/antlr4/Lexer.py -> build/lib/antlr4 2025-12-05T22:27:45.3860261Z copying src/antlr4/ListTokenSource.py -> build/lib/antlr4 2025-12-05T22:27:45.3860705Z copying src/antlr4/Parser.py -> build/lib/antlr4 2025-12-05T22:27:45.3861147Z copying src/antlr4/ParserInterpreter.py -> build/lib/antlr4 2025-12-05T22:27:45.3861645Z copying src/antlr4/ParserRuleContext.py -> build/lib/antlr4 2025-12-05T22:27:45.3862140Z copying src/antlr4/PredictionContext.py -> build/lib/antlr4 2025-12-05T22:27:45.3862592Z copying src/antlr4/Recognizer.py -> build/lib/antlr4 2025-12-05T22:27:45.3863022Z copying src/antlr4/RuleContext.py -> build/lib/antlr4 2025-12-05T22:27:45.3863442Z copying src/antlr4/StdinStream.py -> build/lib/antlr4 2025-12-05T22:27:45.3863901Z copying src/antlr4/Token.py -> build/lib/antlr4 2025-12-05T22:27:45.3864348Z copying src/antlr4/TokenStreamRewriter.py -> build/lib/antlr4 2025-12-05T22:27:45.3864807Z copying src/antlr4/Utils.py -> build/lib/antlr4 2025-12-05T22:27:45.3865193Z copying src/antlr4/__init__.py -> build/lib/antlr4 2025-12-05T22:27:45.3865557Z creating build/lib/antlr4/atn 2025-12-05T22:27:45.3865904Z copying src/antlr4/atn/ATN.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3866385Z copying src/antlr4/atn/ATNConfig.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3866895Z copying src/antlr4/atn/ATNConfigSet.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3867478Z copying src/antlr4/atn/ATNDeserializationOptions.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3868098Z copying src/antlr4/atn/ATNDeserializer.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3868716Z copying src/antlr4/atn/ATNSimulator.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3869220Z copying src/antlr4/atn/ATNState.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3869704Z copying src/antlr4/atn/ATNType.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3870219Z copying src/antlr4/atn/LexerATNSimulator.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3870767Z copying src/antlr4/atn/LexerAction.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3871307Z copying src/antlr4/atn/LexerActionExecutor.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3871903Z copying src/antlr4/atn/ParserATNSimulator.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3872457Z copying src/antlr4/atn/PredictionMode.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3873002Z copying src/antlr4/atn/SemanticContext.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3873526Z copying src/antlr4/atn/Transition.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3874048Z copying src/antlr4/atn/__init__.py -> build/lib/antlr4/atn 2025-12-05T22:27:45.3874445Z creating build/lib/antlr4/dfa 2025-12-05T22:27:45.3874781Z copying src/antlr4/dfa/DFA.py -> build/lib/antlr4/dfa 2025-12-05T22:27:45.3875258Z copying src/antlr4/dfa/DFASerializer.py -> build/lib/antlr4/dfa 2025-12-05T22:27:45.3875789Z copying src/antlr4/dfa/DFAState.py -> build/lib/antlr4/dfa 2025-12-05T22:27:45.3886171Z copying src/antlr4/dfa/__init__.py -> build/lib/antlr4/dfa 2025-12-05T22:27:45.3886584Z creating build/lib/antlr4/tree 2025-12-05T22:27:45.3886951Z copying src/antlr4/tree/Chunk.py -> build/lib/antlr4/tree 2025-12-05T22:27:45.3887478Z copying src/antlr4/tree/ParseTreeMatch.py -> build/lib/antlr4/tree 2025-12-05T22:27:45.3888060Z copying src/antlr4/tree/ParseTreePattern.py -> build/lib/antlr4/tree 2025-12-05T22:27:45.3888697Z copying src/antlr4/tree/ParseTreePatternMatcher.py -> build/lib/antlr4/tree 2025-12-05T22:27:45.3889300Z copying src/antlr4/tree/RuleTagToken.py -> build/lib/antlr4/tree 2025-12-05T22:27:45.3889862Z copying src/antlr4/tree/TokenTagToken.py -> build/lib/antlr4/tree 2025-12-05T22:27:45.3890377Z copying src/antlr4/tree/Tree.py -> build/lib/antlr4/tree 2025-12-05T22:27:45.3890834Z copying src/antlr4/tree/Trees.py -> build/lib/antlr4/tree 2025-12-05T22:27:45.3891317Z copying src/antlr4/tree/__init__.py -> build/lib/antlr4/tree 2025-12-05T22:27:45.3891716Z creating build/lib/antlr4/error 2025-12-05T22:27:45.3892204Z copying src/antlr4/error/DiagnosticErrorListener.py -> build/lib/antlr4/error 2025-12-05T22:27:45.3892824Z copying src/antlr4/error/ErrorListener.py -> build/lib/antlr4/error 2025-12-05T22:27:45.3893387Z copying src/antlr4/error/ErrorStrategy.py -> build/lib/antlr4/error 2025-12-05T22:27:45.3893924Z copying src/antlr4/error/Errors.py -> build/lib/antlr4/error 2025-12-05T22:27:45.3894416Z copying src/antlr4/error/__init__.py -> build/lib/antlr4/error 2025-12-05T22:27:45.3894836Z creating build/lib/antlr4/xpath 2025-12-05T22:27:45.3895216Z copying src/antlr4/xpath/XPath.py -> build/lib/antlr4/xpath 2025-12-05T22:27:45.3895709Z copying src/antlr4/xpath/__init__.py -> build/lib/antlr4/xpath 2025-12-05T22:27:45.3896104Z running build_scripts 2025-12-05T22:27:45.3896598Z creating build/scripts-3.10 2025-12-05T22:27:45.3896951Z copying and adjusting bin/pygrun -> build/scripts-3.10 2025-12-05T22:27:45.3897418Z changing mode of build/scripts-3.10/pygrun from 644 to 755 2025-12-05T22:27:45.3898314Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/_distutils/cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-12-05T22:27:45.3899092Z !! 2025-12-05T22:27:45.3899218Z 2025-12-05T22:27:45.3899388Z ******************************************************************************** 2025-12-05T22:27:45.3899768Z Please avoid running ``setup.py`` directly. 2025-12-05T22:27:45.3900172Z Instead, use pypa/build, pypa/installer or other 2025-12-05T22:27:45.3900539Z standards-based tools. 2025-12-05T22:27:45.3900746Z 2025-12-05T22:27:45.3901005Z This deprecation is overdue, please update your project and remove deprecated 2025-12-05T22:27:45.3901511Z calls to avoid build errors in the future. 2025-12-05T22:27:45.3901769Z 2025-12-05T22:27:45.3902075Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-12-05T22:27:45.3902608Z ******************************************************************************** 2025-12-05T22:27:45.3902850Z 2025-12-05T22:27:45.3902929Z !! 2025-12-05T22:27:45.3903151Z self.initialize_options() 2025-12-05T22:27:45.3903468Z installing to build/bdist.linux-x86_64/wheel 2025-12-05T22:27:45.3903811Z running install 2025-12-05T22:27:45.3904038Z running install_lib 2025-12-05T22:27:45.3904312Z creating build/bdist.linux-x86_64/wheel 2025-12-05T22:27:45.4566621Z creating build/bdist.linux-x86_64/wheel/antlr4 2025-12-05T22:27:45.4567562Z copying build/lib/antlr4/BufferedTokenStream.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4568364Z copying build/lib/antlr4/CommonTokenFactory.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4569138Z copying build/lib/antlr4/CommonTokenStream.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4570042Z copying build/lib/antlr4/FileStream.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4570802Z copying build/lib/antlr4/InputStream.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4571490Z copying build/lib/antlr4/IntervalSet.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4572225Z copying build/lib/antlr4/LL1Analyzer.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4572937Z copying build/lib/antlr4/Lexer.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4573624Z copying build/lib/antlr4/ListTokenSource.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4574318Z copying build/lib/antlr4/Parser.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4575012Z copying build/lib/antlr4/ParserInterpreter.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4575780Z copying build/lib/antlr4/ParserRuleContext.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4576534Z copying build/lib/antlr4/PredictionContext.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4577258Z copying build/lib/antlr4/Recognizer.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4577933Z copying build/lib/antlr4/RuleContext.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4578624Z copying build/lib/antlr4/StdinStream.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4579282Z copying build/lib/antlr4/Token.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4579977Z copying build/lib/antlr4/TokenStreamRewriter.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4580688Z copying build/lib/antlr4/Utils.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4581300Z copying build/lib/antlr4/__init__.py -> build/bdist.linux-x86_64/wheel/./antlr4 2025-12-05T22:27:45.4581901Z creating build/bdist.linux-x86_64/wheel/antlr4/atn 2025-12-05T22:27:45.4582441Z copying build/lib/antlr4/atn/ATN.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4583186Z copying build/lib/antlr4/atn/ATNConfig.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4584003Z copying build/lib/antlr4/atn/ATNConfigSet.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4584858Z copying build/lib/antlr4/atn/ATNDeserializationOptions.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4585809Z copying build/lib/antlr4/atn/ATNDeserializer.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4586652Z copying build/lib/antlr4/atn/ATNSimulator.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4587446Z copying build/lib/antlr4/atn/ATNState.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4588211Z copying build/lib/antlr4/atn/ATNType.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4589161Z copying build/lib/antlr4/atn/LexerATNSimulator.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4589974Z copying build/lib/antlr4/atn/LexerAction.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4590818Z copying build/lib/antlr4/atn/LexerActionExecutor.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4591846Z copying build/lib/antlr4/atn/ParserATNSimulator.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4592686Z copying build/lib/antlr4/atn/PredictionMode.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4593480Z copying build/lib/antlr4/atn/SemanticContext.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4594427Z copying build/lib/antlr4/atn/Transition.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4595159Z copying build/lib/antlr4/atn/__init__.py -> build/bdist.linux-x86_64/wheel/./antlr4/atn 2025-12-05T22:27:45.4595722Z creating build/bdist.linux-x86_64/wheel/antlr4/dfa 2025-12-05T22:27:45.4596354Z copying build/lib/antlr4/dfa/DFA.py -> build/bdist.linux-x86_64/wheel/./antlr4/dfa 2025-12-05T22:27:45.4597140Z copying build/lib/antlr4/dfa/DFASerializer.py -> build/bdist.linux-x86_64/wheel/./antlr4/dfa 2025-12-05T22:27:45.4597966Z copying build/lib/antlr4/dfa/DFAState.py -> build/bdist.linux-x86_64/wheel/./antlr4/dfa 2025-12-05T22:27:45.4598716Z copying build/lib/antlr4/dfa/__init__.py -> build/bdist.linux-x86_64/wheel/./antlr4/dfa 2025-12-05T22:27:45.4599276Z creating build/bdist.linux-x86_64/wheel/antlr4/tree 2025-12-05T22:27:45.4599893Z copying build/lib/antlr4/tree/Chunk.py -> build/bdist.linux-x86_64/wheel/./antlr4/tree 2025-12-05T22:27:45.4600738Z copying build/lib/antlr4/tree/ParseTreeMatch.py -> build/bdist.linux-x86_64/wheel/./antlr4/tree 2025-12-05T22:27:45.4601651Z copying build/lib/antlr4/tree/ParseTreePattern.py -> build/bdist.linux-x86_64/wheel/./antlr4/tree 2025-12-05T22:27:45.4602789Z copying build/lib/antlr4/tree/ParseTreePatternMatcher.py -> build/bdist.linux-x86_64/wheel/./antlr4/tree 2025-12-05T22:27:45.4603719Z copying build/lib/antlr4/tree/RuleTagToken.py -> build/bdist.linux-x86_64/wheel/./antlr4/tree 2025-12-05T22:27:45.4604598Z copying build/lib/antlr4/tree/TokenTagToken.py -> build/bdist.linux-x86_64/wheel/./antlr4/tree 2025-12-05T22:27:45.4605471Z copying build/lib/antlr4/tree/Tree.py -> build/bdist.linux-x86_64/wheel/./antlr4/tree 2025-12-05T22:27:45.4606255Z copying build/lib/antlr4/tree/Trees.py -> build/bdist.linux-x86_64/wheel/./antlr4/tree 2025-12-05T22:27:45.4607033Z copying build/lib/antlr4/tree/__init__.py -> build/bdist.linux-x86_64/wheel/./antlr4/tree 2025-12-05T22:27:45.4607698Z creating build/bdist.linux-x86_64/wheel/antlr4/error 2025-12-05T22:27:45.4608489Z copying build/lib/antlr4/error/DiagnosticErrorListener.py -> build/bdist.linux-x86_64/wheel/./antlr4/error 2025-12-05T22:27:45.4609520Z copying build/lib/antlr4/error/ErrorListener.py -> build/bdist.linux-x86_64/wheel/./antlr4/error 2025-12-05T22:27:45.4610452Z copying build/lib/antlr4/error/ErrorStrategy.py -> build/bdist.linux-x86_64/wheel/./antlr4/error 2025-12-05T22:27:45.4611365Z copying build/lib/antlr4/error/Errors.py -> build/bdist.linux-x86_64/wheel/./antlr4/error 2025-12-05T22:27:45.4612169Z copying build/lib/antlr4/error/__init__.py -> build/bdist.linux-x86_64/wheel/./antlr4/error 2025-12-05T22:27:45.4612822Z creating build/bdist.linux-x86_64/wheel/antlr4/xpath 2025-12-05T22:27:45.4613462Z copying build/lib/antlr4/xpath/XPath.py -> build/bdist.linux-x86_64/wheel/./antlr4/xpath 2025-12-05T22:27:45.4614391Z copying build/lib/antlr4/xpath/__init__.py -> build/bdist.linux-x86_64/wheel/./antlr4/xpath 2025-12-05T22:27:45.4614918Z running install_egg_info 2025-12-05T22:27:45.4615265Z running egg_info 2025-12-05T22:27:45.4615682Z writing src/antlr4_python3_runtime.egg-info/PKG-INFO 2025-12-05T22:27:45.4616327Z writing dependency_links to src/antlr4_python3_runtime.egg-info/dependency_links.txt 2025-12-05T22:27:45.4617050Z writing requirements to src/antlr4_python3_runtime.egg-info/requires.txt 2025-12-05T22:27:45.4617716Z writing top-level names to src/antlr4_python3_runtime.egg-info/top_level.txt 2025-12-05T22:27:45.4618541Z reading manifest file 'src/antlr4_python3_runtime.egg-info/SOURCES.txt' 2025-12-05T22:27:45.4619020Z reading manifest template 'MANIFEST.in' 2025-12-05T22:27:45.4619504Z warning: no files found matching '*.py' under directory 'test' 2025-12-05T22:27:45.4620052Z warning: no files found matching '*.c' under directory 'test' 2025-12-05T22:27:45.4620600Z writing manifest file 'src/antlr4_python3_runtime.egg-info/SOURCES.txt' 2025-12-05T22:27:45.4621601Z Copying src/antlr4_python3_runtime.egg-info to build/bdist.linux-x86_64/wheel/./antlr4_python3_runtime-4.9.3-py3.10.egg-info 2025-12-05T22:27:45.4622364Z running install_scripts 2025-12-05T22:27:45.4622813Z creating build/bdist.linux-x86_64/wheel/antlr4_python3_runtime-4.9.3.data/scripts 2025-12-05T22:27:45.4623587Z copying build/scripts-3.10/pygrun -> build/bdist.linux-x86_64/wheel/antlr4_python3_runtime-4.9.3.data/scripts 2025-12-05T22:27:45.4624784Z changing mode of build/bdist.linux-x86_64/wheel/antlr4_python3_runtime-4.9.3.data/scripts/pygrun to 755 2025-12-05T22:27:45.4625621Z creating build/bdist.linux-x86_64/wheel/antlr4_python3_runtime-4.9.3.dist-info/WHEEL 2025-12-05T22:27:45.4626578Z creating '/tmp/pip-wheel-e1yy01a8/antlr4_python3_runtime-4.9.3-py3-none-any.whl' and adding 'build/bdist.linux-x86_64/wheel' to it 2025-12-05T22:27:45.4627425Z adding 'antlr4/BufferedTokenStream.py' 2025-12-05T22:27:45.4627870Z adding 'antlr4/CommonTokenFactory.py' 2025-12-05T22:27:45.4628221Z adding 'antlr4/CommonTokenStream.py' 2025-12-05T22:27:45.4628661Z adding 'antlr4/FileStream.py' 2025-12-05T22:27:45.4628970Z adding 'antlr4/InputStream.py' 2025-12-05T22:27:45.4629266Z adding 'antlr4/IntervalSet.py' 2025-12-05T22:27:45.4629642Z adding 'antlr4/LL1Analyzer.py' 2025-12-05T22:27:45.4629944Z adding 'antlr4/Lexer.py' 2025-12-05T22:27:45.4630315Z adding 'antlr4/ListTokenSource.py' 2025-12-05T22:27:45.4630733Z adding 'antlr4/Parser.py' 2025-12-05T22:27:45.4631086Z adding 'antlr4/ParserInterpreter.py' 2025-12-05T22:27:45.4631432Z adding 'antlr4/ParserRuleContext.py' 2025-12-05T22:27:45.4631867Z adding 'antlr4/PredictionContext.py' 2025-12-05T22:27:45.4632327Z adding 'antlr4/Recognizer.py' 2025-12-05T22:27:45.4632677Z adding 'antlr4/RuleContext.py' 2025-12-05T22:27:45.4633028Z adding 'antlr4/StdinStream.py' 2025-12-05T22:27:45.4633375Z adding 'antlr4/Token.py' 2025-12-05T22:27:45.4633756Z adding 'antlr4/TokenStreamRewriter.py' 2025-12-05T22:27:45.4634140Z adding 'antlr4/Utils.py' 2025-12-05T22:27:45.4634404Z adding 'antlr4/__init__.py' 2025-12-05T22:27:45.4634719Z adding 'antlr4/atn/ATN.py' 2025-12-05T22:27:45.4635038Z adding 'antlr4/atn/ATNConfig.py' 2025-12-05T22:27:45.4635358Z adding 'antlr4/atn/ATNConfigSet.py' 2025-12-05T22:27:45.4635902Z adding 'antlr4/atn/ATNDeserializationOptions.py' 2025-12-05T22:27:45.4636297Z adding 'antlr4/atn/ATNDeserializer.py' 2025-12-05T22:27:45.4636697Z adding 'antlr4/atn/ATNSimulator.py' 2025-12-05T22:27:45.4637075Z adding 'antlr4/atn/ATNState.py' 2025-12-05T22:27:45.4637485Z adding 'antlr4/atn/ATNType.py' 2025-12-05T22:27:45.4637794Z adding 'antlr4/atn/LexerATNSimulator.py' 2025-12-05T22:27:45.4638215Z adding 'antlr4/atn/LexerAction.py' 2025-12-05T22:27:45.4638544Z adding 'antlr4/atn/LexerActionExecutor.py' 2025-12-05T22:27:45.4638985Z adding 'antlr4/atn/ParserATNSimulator.py' 2025-12-05T22:27:45.4639365Z adding 'antlr4/atn/PredictionMode.py' 2025-12-05T22:27:45.4639807Z adding 'antlr4/atn/SemanticContext.py' 2025-12-05T22:27:45.4640192Z adding 'antlr4/atn/Transition.py' 2025-12-05T22:27:45.4640507Z adding 'antlr4/atn/__init__.py' 2025-12-05T22:27:45.4640791Z adding 'antlr4/dfa/DFA.py' 2025-12-05T22:27:45.4641089Z adding 'antlr4/dfa/DFASerializer.py' 2025-12-05T22:27:45.4641414Z adding 'antlr4/dfa/DFAState.py' 2025-12-05T22:27:51.3764202Z adding 'antlr4/dfa/__init__.py' 2025-12-05T22:27:51.3764644Z adding 'antlr4/error/DiagnosticErrorListener.py' 2025-12-05T22:27:51.3765039Z adding 'antlr4/error/ErrorListener.py' 2025-12-05T22:27:51.3765370Z adding 'antlr4/error/ErrorStrategy.py' 2025-12-05T22:27:51.3765699Z adding 'antlr4/error/Errors.py' 2025-12-05T22:27:51.3765991Z adding 'antlr4/error/__init__.py' 2025-12-05T22:27:51.3766298Z adding 'antlr4/tree/Chunk.py' 2025-12-05T22:27:51.3766616Z adding 'antlr4/tree/ParseTreeMatch.py' 2025-12-05T22:27:51.3766954Z adding 'antlr4/tree/ParseTreePattern.py' 2025-12-05T22:27:51.3767342Z adding 'antlr4/tree/ParseTreePatternMatcher.py' 2025-12-05T22:27:51.3767705Z adding 'antlr4/tree/RuleTagToken.py' 2025-12-05T22:27:51.3768293Z adding 'antlr4/tree/TokenTagToken.py' 2025-12-05T22:27:51.3768608Z adding 'antlr4/tree/Tree.py' 2025-12-05T22:27:51.3768901Z adding 'antlr4/tree/Trees.py' 2025-12-05T22:27:51.3769184Z adding 'antlr4/tree/__init__.py' 2025-12-05T22:27:51.3769500Z adding 'antlr4/xpath/XPath.py' 2025-12-05T22:27:51.3769864Z adding 'antlr4/xpath/__init__.py' 2025-12-05T22:27:51.3770250Z adding 'antlr4_python3_runtime-4.9.3.data/scripts/pygrun' 2025-12-05T22:27:51.3770721Z adding 'antlr4_python3_runtime-4.9.3.dist-info/METADATA' 2025-12-05T22:27:51.3771157Z adding 'antlr4_python3_runtime-4.9.3.dist-info/WHEEL' 2025-12-05T22:27:51.3771628Z adding 'antlr4_python3_runtime-4.9.3.dist-info/top_level.txt' 2025-12-05T22:27:51.3772091Z adding 'antlr4_python3_runtime-4.9.3.dist-info/RECORD' 2025-12-05T22:27:51.3772488Z removing build/bdist.linux-x86_64/wheel 2025-12-05T22:27:51.3773204Z Building wheel for antlr4-python3-runtime (setup.py) ... [?25l[?25hdone 2025-12-05T22:27:51.3774286Z Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.9.3-py3-none-any.whl size=144591 sha256=880bf237437064d2a70613979e4d38b2f394db3385fd40e5d455720e411d30ff 2025-12-05T22:27:51.3775531Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/12/93/dd/1f6a127edc45659556564c5730f6d4e300888f4bca2d4c5a88 2025-12-05T22:27:51.3776242Z Successfully built executorch antlr4-python3-runtime 2025-12-05T22:27:51.3777694Z Installing collected packages: flatbuffers, antlr4-python3-runtime, threadpoolctl, tabulate, scipy, pyaml, protobuf, omegaconf, kgb, joblib, execnet, scikit-learn, pytest, hydra-core, cattrs, pytest-xdist, pytest-rerunfailures, pytest-metadata, coremltools, pytest-json-report, executorch 2025-12-05T22:27:51.3779113Z [?25l 2025-12-05T22:27:51.3779477Z  changing mode of /opt/conda/envs/py_3.10/bin/tabulate to 755 2025-12-05T22:27:51.3779792Z 2025-12-05T22:27:51.3780147Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3782593Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3783212Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3783931Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3784539Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3785142Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3785735Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3786405Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3787013Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3787614Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3788215Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3788907Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3789525Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3790127Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3790723Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3791334Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3791924Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3792581Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3793180Z  ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3793733Z  changing mode of /opt/conda/envs/py_3.10/bin/pyaml to 755 2025-12-05T22:27:51.3794372Z ━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/21 [scipy] 2025-12-05T22:27:51.3794978Z  ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━  7/21 [omegaconf] 2025-12-05T22:27:51.3795597Z  ━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━  9/21 [joblib] 2025-12-05T22:27:51.3796237Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:51.3796865Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:51.3797502Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:51.3798135Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:51.3798807Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:51.3799443Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:51.3800073Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:51.3800703Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:51.3801364Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:51.3801999Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:51.3802503Z  Attempting uninstall: pytest 2025-12-05T22:27:51.3803019Z ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:51.3803532Z  Found existing installation: pytest 7.2.0 2025-12-05T22:27:51.3804078Z ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:51.3804587Z  Uninstalling pytest-7.2.0: 2025-12-05T22:27:56.2846051Z ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-12-05T22:27:56.2846776Z  ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2847379Z  Removing file or directory /opt/conda/envs/py_3.10/bin/py.test 2025-12-05T22:27:56.2847992Z ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2848554Z  Removing file or directory /opt/conda/envs/py_3.10/bin/pytest 2025-12-05T22:27:56.2849155Z ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2849979Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/__pycache__/py.cpython-310.pyc 2025-12-05T22:27:56.2850790Z ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2851387Z  ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2852076Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/_pytest/ 2025-12-05T22:27:56.2852953Z ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2853633Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/py.py 2025-12-05T22:27:56.2854317Z ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2855087Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pytest-7.2.0.dist-info/ 2025-12-05T22:27:56.2855925Z ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2856605Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pytest/ 2025-12-05T22:27:56.2857306Z ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2857777Z  Successfully uninstalled pytest-7.2.0 2025-12-05T22:27:56.2858306Z ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2858910Z  ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2859459Z  changing mode of /opt/conda/envs/py_3.10/bin/py.test to 755 2025-12-05T22:27:56.2860039Z ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2860643Z  changing mode of /opt/conda/envs/py_3.10/bin/pytest to 755 2025-12-05T22:27:56.2861228Z ━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━ 12/21 [pytest] 2025-12-05T22:27:56.2861808Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 14/21 [cattrs] 2025-12-05T22:27:56.2862485Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 18/21 [coremltools] 2025-12-05T22:27:56.2863097Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 18/21 [coremltools] 2025-12-05T22:27:56.2863706Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 18/21 [coremltools] 2025-12-05T22:27:56.2864317Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 18/21 [coremltools] 2025-12-05T22:27:56.2864915Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 18/21 [coremltools] 2025-12-05T22:27:56.2865541Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 18/21 [coremltools] 2025-12-05T22:27:56.2866208Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 18/21 [coremltools] 2025-12-05T22:27:56.2866819Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 18/21 [coremltools] 2025-12-05T22:27:56.2867422Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2868009Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2868758Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2869366Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2869965Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2870570Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2871168Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2871805Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2872402Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2872986Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2873590Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2874176Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2874811Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2875419Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2876004Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2876608Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2877191Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:56.2877735Z  changing mode of /opt/conda/envs/py_3.10/bin/flatc to 755 2025-12-05T22:27:59.6852831Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:59.6853520Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 20/21 [executorch] 2025-12-05T22:27:59.6854104Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21/21 [executorch] 2025-12-05T22:27:59.6854492Z [?25h 2025-12-05T22:27:59.6856719Z Successfully installed antlr4-python3-runtime-4.9.3 cattrs-25.3.0 coremltools-9.0 execnet-2.1.2 executorch-1.1.0a0+42e3222 flatbuffers-25.9.23 hydra-core-1.3.2 joblib-1.5.2 kgb-7.2 omegaconf-2.3.0 protobuf-6.33.1 pyaml-25.7.0 pytest-8.4.2 pytest-json-report-1.5.0 pytest-metadata-3.1.1 pytest-rerunfailures-15.1 pytest-xdist-3.8.0 scikit-learn-1.7.1 scipy-1.15.3 tabulate-0.9.0 threadpoolctl-3.6.0 2025-12-05T22:27:59.6858518Z Installing torch domain libraries 2025-12-05T22:27:59.6859052Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-12-05T22:27:59.6859982Z Requirement already satisfied: torchvision in /var/lib/ci-user/.local/lib/python3.10/site-packages (0.25.0a0+1752fe6) 2025-12-05T22:27:59.6860923Z Requirement already satisfied: torchaudio in /var/lib/ci-user/.local/lib/python3.10/site-packages (2.10.0a0+69bbe73) 2025-12-05T22:27:59.6861941Z Requirement already satisfied: numpy in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchvision) (2.2.6) 2025-12-05T22:27:59.6862958Z Requirement already satisfied: torch in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchvision) (2.10.0a0+gitb31bad1) 2025-12-05T22:27:59.6864068Z Requirement already satisfied: pillow!=8.3.*,>=5.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchvision) (12.0.0) 2025-12-05T22:27:59.6865111Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch->torchvision) (3.20.0) 2025-12-05T22:27:59.6866229Z Requirement already satisfied: typing-extensions>=4.10.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch->torchvision) (4.15.0) 2025-12-05T22:27:59.6867342Z Requirement already satisfied: sympy>=1.13.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch->torchvision) (1.14.0) 2025-12-05T22:27:59.6868505Z Requirement already satisfied: networkx>=2.5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch->torchvision) (3.4.2) 2025-12-05T22:27:59.6869553Z Requirement already satisfied: jinja2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch->torchvision) (3.1.6) 2025-12-05T22:27:59.6870612Z Requirement already satisfied: fsspec>=0.8.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch->torchvision) (2025.10.0) 2025-12-05T22:27:59.6871741Z 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->torchvision) (1.3.0) 2025-12-05T22:27:59.6872926Z Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from jinja2->torch->torchvision) (3.0.3) 2025-12-05T22:27:59.6873714Z Installing packages in requirements-examples.txt 2025-12-05T22:27:59.6874276Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-12-05T22:27:59.6874945Z Collecting datasets==3.6.0 (from -r requirements-examples.txt (line 3)) 2025-12-05T22:27:59.6875484Z Downloading datasets-3.6.0-py3-none-any.whl.metadata (19 kB) 2025-12-05T22:27:59.6876049Z Collecting timm==1.0.7 (from -r requirements-examples.txt (line 4)) 2025-12-05T22:27:59.6876556Z Downloading timm-1.0.7-py3-none-any.whl.metadata (47 kB) 2025-12-05T22:27:59.6877408Z 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 5)) (1.0.4) 2025-12-05T22:27:59.6878349Z Collecting torchtune>=0.6.1 (from -r requirements-examples.txt (line 6)) 2025-12-05T22:27:59.6878898Z Downloading torchtune-0.6.1-py3-none-any.whl.metadata (24 kB) 2025-12-05T22:27:59.6879859Z Requirement already satisfied: transformers==4.56.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-examples.txt (line 7)) (4.56.1) 2025-12-05T22:27:59.6881198Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets==3.6.0->-r requirements-examples.txt (line 3)) (3.20.0) 2025-12-05T22:27:59.6882540Z Requirement already satisfied: numpy>=1.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets==3.6.0->-r requirements-examples.txt (line 3)) (2.2.6) 2025-12-05T22:27:59.6883548Z Collecting pyarrow>=15.0.0 (from datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:27:59.6884216Z Downloading pyarrow-22.0.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (3.2 kB) 2025-12-05T22:27:59.6884869Z Collecting dill<0.3.9,>=0.3.0 (from datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:27:59.6885585Z Downloading https://download.pytorch.org/whl/nightly/dill-0.3.8-py3-none-any.whl (116 kB) 2025-12-05T22:27:59.6886629Z Requirement already satisfied: pandas in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets==3.6.0->-r requirements-examples.txt (line 3)) (2.3.3) 2025-12-05T22:27:59.6888025Z Requirement already satisfied: requests>=2.32.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets==3.6.0->-r requirements-examples.txt (line 3)) (2.32.5) 2025-12-05T22:27:59.6889385Z Requirement already satisfied: tqdm>=4.66.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets==3.6.0->-r requirements-examples.txt (line 3)) (4.67.1) 2025-12-05T22:27:59.6890392Z Collecting xxhash (from datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:27:59.6891209Z Downloading xxhash-3.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (13 kB) 2025-12-05T22:27:59.6892057Z Collecting multiprocess<0.70.17 (from datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:27:59.6892883Z Downloading https://download.pytorch.org/whl/nightly/multiprocess-0.70.16-py310-none-any.whl (134 kB) 2025-12-05T22:27:59.6893795Z Collecting fsspec<=2025.3.0,>=2023.1.0 (from fsspec[http]<=2025.3.0,>=2023.1.0->datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:27:59.6894513Z Downloading fsspec-2025.3.0-py3-none-any.whl.metadata (11 kB) 2025-12-05T22:27:59.6895505Z Requirement already satisfied: huggingface-hub>=0.24.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets==3.6.0->-r requirements-examples.txt (line 3)) (0.36.0) 2025-12-05T22:27:59.6896910Z Requirement already satisfied: packaging in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets==3.6.0->-r requirements-examples.txt (line 3)) (25.0) 2025-12-05T22:27:59.6898247Z Requirement already satisfied: pyyaml>=5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets==3.6.0->-r requirements-examples.txt (line 3)) (6.0.1) 2025-12-05T22:27:59.6899611Z Requirement already satisfied: torch in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from timm==1.0.7->-r requirements-examples.txt (line 4)) (2.10.0a0+gitb31bad1) 2025-12-05T22:27:59.6900998Z Requirement already satisfied: torchvision in /var/lib/ci-user/.local/lib/python3.10/site-packages (from timm==1.0.7->-r requirements-examples.txt (line 4)) (0.25.0a0+1752fe6) 2025-12-05T22:27:59.6902635Z 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 4)) (0.6.2) 2025-12-05T22:27:59.6904041Z Requirement already satisfied: regex!=2019.12.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.56.1->-r requirements-examples.txt (line 7)) (2025.11.3) 2025-12-05T22:27:59.6905518Z Requirement already satisfied: tokenizers<=0.23.0,>=0.22.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.56.1->-r requirements-examples.txt (line 7)) (0.22.1) 2025-12-05T22:27:59.6906746Z Collecting aiohttp!=4.0.0a0,!=4.0.0a1 (from fsspec[http]<=2025.3.0,>=2023.1.0->datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:27:59.6907726Z Downloading aiohttp-3.13.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (8.1 kB) 2025-12-05T22:27:59.6909149Z Requirement already satisfied: typing-extensions>=3.7.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub>=0.24.0->datasets==3.6.0->-r requirements-examples.txt (line 3)) (4.15.0) 2025-12-05T22:27:59.6910764Z Requirement already satisfied: hf-xet<2.0.0,>=1.1.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub>=0.24.0->datasets==3.6.0->-r requirements-examples.txt (line 3)) (1.2.0) 2025-12-05T22:27:59.6911888Z Collecting torchdata==0.11.0 (from torchtune>=0.6.1->-r requirements-examples.txt (line 6)) 2025-12-05T22:27:59.6912512Z Downloading torchdata-0.11.0-py3-none-any.whl.metadata (6.3 kB) 2025-12-05T22:27:59.6913127Z Collecting kagglehub (from torchtune>=0.6.1->-r requirements-examples.txt (line 6)) 2025-12-05T22:27:59.6913782Z Downloading kagglehub-0.3.13-py3-none-any.whl.metadata (38 kB) 2025-12-05T22:27:59.6914835Z Requirement already satisfied: sentencepiece in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchtune>=0.6.1->-r requirements-examples.txt (line 6)) (0.2.1) 2025-12-05T22:28:01.5167569Z Requirement already satisfied: tiktoken in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchtune>=0.6.1->-r requirements-examples.txt (line 6)) (0.12.0) 2025-12-05T22:28:01.5168654Z Collecting blobfile>=2 (from torchtune>=0.6.1->-r requirements-examples.txt (line 6)) 2025-12-05T22:28:01.5169442Z Downloading blobfile-3.1.0-py3-none-any.whl.metadata (15 kB) 2025-12-05T22:28:01.5170386Z Requirement already satisfied: omegaconf in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchtune>=0.6.1->-r requirements-examples.txt (line 6)) (2.3.0) 2025-12-05T22:28:01.5171410Z Collecting psutil (from torchtune>=0.6.1->-r requirements-examples.txt (line 6)) 2025-12-05T22:28:01.5172214Z Downloading psutil-7.1.3-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl.metadata (23 kB) 2025-12-05T22:28:01.5173391Z Requirement already satisfied: Pillow>=9.4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchtune>=0.6.1->-r requirements-examples.txt (line 6)) (12.0.0) 2025-12-05T22:28:01.5174833Z 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 6)) (2.5.0) 2025-12-05T22:28:01.5176142Z Collecting aiohappyeyeballs>=2.5.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:28:01.5177023Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-12-05T22:28:01.5177859Z Collecting aiosignal>=1.4.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:28:01.5178846Z Downloading https://download.pytorch.org/whl/nightly/aiosignal-1.4.0-py3-none-any.whl.metadata (3.7 kB) 2025-12-05T22:28:01.5179848Z Collecting async-timeout<6.0,>=4.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:28:01.5180666Z Downloading async_timeout-5.0.1-py3-none-any.whl.metadata (5.1 kB) 2025-12-05T22:28:01.5181866Z 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==3.6.0->-r requirements-examples.txt (line 3)) (25.4.0) 2025-12-05T22:28:01.5183357Z Collecting frozenlist>=1.1.1 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:28:01.5184453Z Downloading frozenlist-1.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.metadata (20 kB) 2025-12-05T22:28:01.5185481Z Collecting multidict<7.0,>=4.5 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:28:01.5186531Z Downloading multidict-6.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (5.3 kB) 2025-12-05T22:28:01.5187551Z Collecting propcache>=0.2.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:28:01.5188655Z Downloading propcache-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (13 kB) 2025-12-05T22:28:01.5189650Z Collecting yarl<2.0,>=1.17.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets==3.6.0->-r requirements-examples.txt (line 3)) 2025-12-05T22:28:01.5190630Z Downloading yarl-1.22.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (75 kB) 2025-12-05T22:28:01.5191997Z 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==3.6.0->-r requirements-examples.txt (line 3)) (3.11) 2025-12-05T22:28:01.5193346Z Collecting pycryptodomex>=3.8 (from blobfile>=2->torchtune>=0.6.1->-r requirements-examples.txt (line 6)) 2025-12-05T22:28:01.5194438Z Downloading https://download.pytorch.org/whl/nightly/pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.4 kB) 2025-12-05T22:28:01.5195842Z 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 6)) (6.0.2) 2025-12-05T22:28:01.5197338Z Requirement already satisfied: charset_normalizer<4,>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests>=2.32.2->datasets==3.6.0->-r requirements-examples.txt (line 3)) (3.4.4) 2025-12-05T22:28:01.5198919Z Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests>=2.32.2->datasets==3.6.0->-r requirements-examples.txt (line 3)) (2025.11.12) 2025-12-05T22:28:01.5200372Z Requirement already satisfied: sympy>=1.13.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch->timm==1.0.7->-r requirements-examples.txt (line 4)) (1.14.0) 2025-12-05T22:28:01.5201745Z Requirement already satisfied: networkx>=2.5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch->timm==1.0.7->-r requirements-examples.txt (line 4)) (3.4.2) 2025-12-05T22:28:01.5203108Z Requirement already satisfied: jinja2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch->timm==1.0.7->-r requirements-examples.txt (line 4)) (3.1.6) 2025-12-05T22:28:01.5204509Z 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->timm==1.0.7->-r requirements-examples.txt (line 4)) (1.3.0) 2025-12-05T22:28:01.5205712Z Collecting hf-transfer>=0.1.4 (from huggingface_hub[hf_transfer]->torchtune>=0.6.1->-r requirements-examples.txt (line 6)) 2025-12-05T22:28:01.5206609Z Downloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.7 kB) 2025-12-05T22:28:01.5207797Z Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from jinja2->torch->timm==1.0.7->-r requirements-examples.txt (line 4)) (3.0.3) 2025-12-05T22:28:01.5209330Z Requirement already satisfied: antlr4-python3-runtime==4.9.* in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from omegaconf->torchtune>=0.6.1->-r requirements-examples.txt (line 6)) (4.9.3) 2025-12-05T22:28:01.5210943Z Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas->datasets==3.6.0->-r requirements-examples.txt (line 3)) (2.9.0.post0) 2025-12-05T22:28:01.5212427Z Requirement already satisfied: pytz>=2020.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas->datasets==3.6.0->-r requirements-examples.txt (line 3)) (2025.2) 2025-12-05T22:28:01.5213842Z Requirement already satisfied: tzdata>=2022.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas->datasets==3.6.0->-r requirements-examples.txt (line 3)) (2025.2) 2025-12-05T22:28:01.5215355Z 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==3.6.0->-r requirements-examples.txt (line 3)) (1.17.0) 2025-12-05T22:28:01.5216348Z Downloading datasets-3.6.0-py3-none-any.whl (491 kB) 2025-12-05T22:28:01.5216759Z Downloading timm-1.0.7-py3-none-any.whl (2.3 MB) 2025-12-05T22:28:01.5217540Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-12-05T22:28:01.5218574Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 150.7 MB/s 0:00:00 2025-12-05T22:28:01.5219221Z [?25hDownloading fsspec-2025.3.0-py3-none-any.whl (193 kB) 2025-12-05T22:28:01.5219663Z Downloading torchtune-0.6.1-py3-none-any.whl (910 kB) 2025-12-05T22:28:01.5220677Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/910.7 kB ? eta -:--:-- 2025-12-05T22:28:01.5221371Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 910.7/910.7 kB 77.5 MB/s 0:00:00 2025-12-05T22:28:01.5221949Z [?25hDownloading torchdata-0.11.0-py3-none-any.whl (61 kB) 2025-12-05T22:28:01.5222716Z Downloading aiohttp-3.13.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB) 2025-12-05T22:28:01.5223561Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.7 MB ? eta -:--:-- 2025-12-05T22:28:01.5224233Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 108.6 MB/s 0:00:00 2025-12-05T22:28:01.5224828Z [?25hDownloading async_timeout-5.0.1-py3-none-any.whl (6.2 kB) 2025-12-05T22:28:01.5225544Z Downloading multidict-6.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (241 kB) 2025-12-05T22:28:01.5226477Z Downloading yarl-1.22.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (346 kB) 2025-12-05T22:28:05.8237383Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-12-05T22:28:05.8238234Z Downloading https://download.pytorch.org/whl/nightly/aiosignal-1.4.0-py3-none-any.whl (7.5 kB) 2025-12-05T22:28:05.8238884Z Downloading blobfile-3.1.0-py3-none-any.whl (75 kB) 2025-12-05T22:28:05.8239552Z Downloading frozenlist-1.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (219 kB) 2025-12-05T22:28:05.8240506Z Downloading propcache-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (196 kB) 2025-12-05T22:28:05.8241289Z Downloading pyarrow-22.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (47.6 MB) 2025-12-05T22:28:05.8242161Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/47.6 MB ? eta -:--:-- 2025-12-05T22:28:05.8242856Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 47.6/47.6 MB 256.9 MB/s 0:00:00 2025-12-05T22:28:05.8244050Z [?25hDownloading https://download.pytorch.org/whl/nightly/pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB) 2025-12-05T22:28:05.8245085Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-12-05T22:28:05.8245746Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 211.9 MB/s 0:00:00 2025-12-05T22:28:05.8246499Z [?25hDownloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB) 2025-12-05T22:28:05.8247345Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.6 MB ? eta -:--:-- 2025-12-05T22:28:05.8247992Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 134.7 MB/s 0:00:00 2025-12-05T22:28:05.8248572Z [?25hDownloading kagglehub-0.3.13-py3-none-any.whl (68 kB) 2025-12-05T22:28:05.8249260Z Downloading psutil-7.1.3-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl (263 kB) 2025-12-05T22:28:05.8250151Z Downloading xxhash-3.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193 kB) 2025-12-05T22:28:05.8251786Z Installing collected packages: xxhash, pycryptodomex, pyarrow, psutil, propcache, multidict, hf-transfer, fsspec, frozenlist, dill, async-timeout, aiohappyeyeballs, yarl, multiprocess, kagglehub, blobfile, aiosignal, torchdata, aiohttp, timm, datasets, torchtune 2025-12-05T22:28:05.8253068Z [?25l 2025-12-05T22:28:05.8253529Z  ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  1/22 [pycryptodomex] 2025-12-05T22:28:05.8254179Z  ━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  1/22 [pycryptodomex] 2025-12-05T22:28:05.8254794Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/22 [pyarrow] 2025-12-05T22:28:05.8255470Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/22 [pyarrow] 2025-12-05T22:28:05.8256074Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/22 [pyarrow] 2025-12-05T22:28:05.8256688Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/22 [pyarrow] 2025-12-05T22:28:05.8257289Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/22 [pyarrow] 2025-12-05T22:28:05.8257883Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/22 [pyarrow] 2025-12-05T22:28:05.8258499Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/22 [pyarrow] 2025-12-05T22:28:05.8259101Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/22 [hf-transfer] 2025-12-05T22:28:05.8259571Z  Attempting uninstall: fsspec 2025-12-05T22:28:05.8260089Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/22 [hf-transfer] 2025-12-05T22:28:05.8260588Z  Found existing installation: fsspec 2025.10.0 2025-12-05T22:28:05.8261181Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/22 [hf-transfer] 2025-12-05T22:28:05.8261651Z  Uninstalling fsspec-2025.10.0: 2025-12-05T22:28:05.8262162Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/22 [hf-transfer] 2025-12-05T22:28:05.8262646Z  Successfully uninstalled fsspec-2025.10.0 2025-12-05T22:28:05.8263198Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/22 [hf-transfer] 2025-12-05T22:28:05.8263925Z  ━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━  7/22 [fsspec] 2025-12-05T22:28:05.8264796Z  ━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━ 12/22 [yarl] 2025-12-05T22:28:05.8265646Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 15/22 [blobfile] 2025-12-05T22:28:05.8266240Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 18/22 [aiohttp] 2025-12-05T22:28:05.8266712Z  Attempting uninstall: timm 2025-12-05T22:28:05.8267246Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 18/22 [aiohttp] 2025-12-05T22:28:05.8267727Z  Found existing installation: timm 0.6.13 2025-12-05T22:28:05.8268254Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 18/22 [aiohttp] 2025-12-05T22:28:05.8268779Z  Uninstalling timm-0.6.13: 2025-12-05T22:28:05.8269276Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 18/22 [aiohttp] 2025-12-05T22:28:05.8269736Z  Successfully uninstalled timm-0.6.13 2025-12-05T22:28:05.8270256Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━ 18/22 [aiohttp] 2025-12-05T22:28:05.8270845Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 19/22 [timm] 2025-12-05T22:28:05.8271406Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 19/22 [timm] 2025-12-05T22:28:05.8271987Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━ 19/22 [timm] 2025-12-05T22:28:05.8272566Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 20/22 [datasets] 2025-12-05T22:28:05.8273166Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 20/22 [datasets] 2025-12-05T22:28:05.8273750Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━ 21/22 [torchtune] 2025-12-05T22:28:05.8274354Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 22/22 [torchtune] 2025-12-05T22:28:05.8274737Z [?25h 2025-12-05T22:28:12.8600189Z Successfully installed aiohappyeyeballs-2.6.1 aiohttp-3.13.2 aiosignal-1.4.0 async-timeout-5.0.1 blobfile-3.1.0 datasets-3.6.0 dill-0.3.8 frozenlist-1.8.0 fsspec-2025.3.0 hf-transfer-0.1.9 kagglehub-0.3.13 multidict-6.7.0 multiprocess-0.70.16 propcache-0.4.1 psutil-7.1.3 pyarrow-22.0.0 pycryptodomex-3.23.0 timm-1.0.7 torchdata-0.11.0 torchtune-0.6.1 xxhash-3.6.0 yarl-1.22.0 2025-12-05T22:28:12.8601885Z + pip list 2025-12-05T22:28:12.8602152Z Package Version Build 2025-12-05T22:28:12.8602535Z ----------------------------- ------------------- ----- 2025-12-05T22:28:12.8602870Z accessible-pygments 0.0.5 2025-12-05T22:28:12.8603179Z aiohappyeyeballs 2.6.1 2025-12-05T22:28:12.8603464Z aiohttp 3.13.2 2025-12-05T22:28:12.8603752Z aiosignal 1.4.0 2025-12-05T22:28:12.8604031Z alabaster 0.7.16 2025-12-05T22:28:12.8604336Z antlr4-python3-runtime 4.9.3 2025-12-05T22:28:12.8604623Z async-timeout 5.0.1 2025-12-05T22:28:12.8604909Z attrs 25.4.0 2025-12-05T22:28:12.8605236Z babel 2.17.0 2025-12-05T22:28:12.8605523Z beautifulsoup4 4.14.2 2025-12-05T22:28:12.8605813Z blinker 1.9.0 2025-12-05T22:28:12.8606086Z blobfile 3.1.0 2025-12-05T22:28:12.8606408Z breathe 4.36.0 2025-12-05T22:28:12.8606762Z cattrs 25.3.0 2025-12-05T22:28:12.8607034Z certifi 2025.11.12 2025-12-05T22:28:12.8607345Z charset-normalizer 3.4.4 2025-12-05T22:28:12.8607624Z click 8.3.0 2025-12-05T22:28:12.8607906Z cmake 3.31.10 2025-12-05T22:28:12.8608199Z contourpy 1.3.2 2025-12-05T22:28:12.8608481Z coremltools 9.0 2025-12-05T22:28:12.8608764Z coverage 7.11.3 2025-12-05T22:28:12.8609035Z cycler 0.12.1 2025-12-05T22:28:12.8609317Z datasets 3.6.0 2025-12-05T22:28:12.8609585Z dill 0.3.8 2025-12-05T22:28:12.8609860Z docutils 0.18.1 2025-12-05T22:28:12.8610139Z exceptiongroup 1.3.0 2025-12-05T22:28:12.8610426Z execnet 2.1.2 2025-12-05T22:28:12.8610715Z executorch 1.1.0a0+42e3222 2025-12-05T22:28:12.8611036Z exhale 0.3.7 2025-12-05T22:28:12.8611316Z expecttest 0.1.6 2025-12-05T22:28:12.8611588Z filelock 3.20.0 2025-12-05T22:28:12.8611868Z Flask 3.1.2 2025-12-05T22:28:12.8612136Z flatbuffers 25.9.23 2025-12-05T22:28:12.8612425Z fonttools 4.60.1 2025-12-05T22:28:12.8612699Z frozenlist 1.8.0 2025-12-05T22:28:12.8612987Z fsspec 2025.3.0 2025-12-05T22:28:12.8613272Z hf_transfer 0.1.9 2025-12-05T22:28:12.8613552Z hf-xet 1.2.0 2025-12-05T22:28:12.8613823Z huggingface-hub 0.36.0 2025-12-05T22:28:12.8614117Z hydra-core 1.3.2 2025-12-05T22:28:12.8614406Z hypothesis 6.84.2 2025-12-05T22:28:12.8614676Z idna 3.11 2025-12-05T22:28:12.8614986Z imagesize 1.4.1 2025-12-05T22:28:12.8615257Z iniconfig 2.3.0 2025-12-05T22:28:12.8615542Z itsdangerous 2.2.0 2025-12-05T22:28:12.8615809Z Jinja2 3.1.6 2025-12-05T22:28:12.8616083Z joblib 1.5.2 2025-12-05T22:28:12.8616349Z kagglehub 0.3.13 2025-12-05T22:28:12.8616633Z kgb 7.2 2025-12-05T22:28:12.8616907Z kiwisolver 1.4.9 2025-12-05T22:28:12.8617177Z lintrunner 0.12.7 2025-12-05T22:28:12.8617541Z lintrunner-adapters 0.12.6 2025-12-05T22:28:12.8617827Z lxml 6.0.2 2025-12-05T22:28:12.8618113Z markdown-it-py 3.0.0 2025-12-05T22:28:12.8618579Z MarkupSafe 3.0.3 2025-12-05T22:28:12.8618864Z matplotlib 3.10.7 2025-12-05T22:28:12.8619150Z mdit-py-plugins 0.5.0 2025-12-05T22:28:12.8619438Z mdurl 0.1.2 2025-12-05T22:28:12.8619705Z mpmath 1.3.0 2025-12-05T22:28:12.8619995Z multidict 6.7.0 2025-12-05T22:28:12.8620289Z multiprocess 0.70.16 2025-12-05T22:28:12.8620574Z myst-parser 3.0.1 2025-12-05T22:28:12.8620858Z networkx 3.4.2 2025-12-05T22:28:12.8621125Z numpy 2.2.6 2025-12-05T22:28:12.8621417Z nvidia-cublas-cu12 12.1.3.1 2025-12-05T22:28:12.8621722Z nvidia-cuda-cupti-cu12 12.1.105 2025-12-05T22:28:12.8622039Z nvidia-cuda-nvrtc-cu12 12.1.105 2025-12-05T22:28:12.8622392Z nvidia-cuda-runtime-cu12 12.1.105 2025-12-05T22:28:12.8622708Z nvidia-cudnn-cu12 9.1.0.70 2025-12-05T22:28:12.8623044Z nvidia-cufft-cu12 11.0.2.54 2025-12-05T22:28:12.8623417Z nvidia-curand-cu12 10.3.2.106 2025-12-05T22:28:12.8623742Z nvidia-cusolver-cu12 11.4.5.107 2025-12-05T22:28:12.8624057Z nvidia-cusparse-cu12 12.1.0.106 2025-12-05T22:28:12.8624384Z nvidia-nccl-cu12 2.20.5 2025-12-05T22:28:12.8624685Z nvidia-nvjitlink-cu12 12.9.86 2025-12-05T22:28:12.8625040Z nvidia-nvtx-cu12 12.1.105 2025-12-05T22:28:12.8625330Z omegaconf 2.3.0 2025-12-05T22:28:12.8625616Z packaging 25.0 2025-12-05T22:28:12.8625889Z pandas 2.3.3 2025-12-05T22:28:12.8626182Z parameterized 0.9.0 2025-12-05T22:28:12.8626467Z pillow 12.0.0 2025-12-05T22:28:12.8626739Z pip 25.2 2025-12-05T22:28:12.8627017Z pluggy 1.6.0 2025-12-05T22:28:12.8627358Z propcache 0.4.1 2025-12-05T22:28:12.8627657Z protobuf 6.33.1 2025-12-05T22:28:12.8627937Z psutil 7.1.3 2025-12-05T22:28:12.8628293Z pyaml 25.7.0 2025-12-05T22:28:12.8628750Z pyarrow 22.0.0 2025-12-05T22:28:12.8629229Z pycryptodomex 3.23.0 2025-12-05T22:28:12.8629773Z pydata-sphinx-theme 0.15.4 2025-12-05T22:28:12.8630074Z Pygments 2.19.2 2025-12-05T22:28:12.8630365Z pyparsing 3.2.5 2025-12-05T22:28:12.8630643Z pytest 8.4.2 2025-12-05T22:28:12.8630930Z pytest-cov 4.1.0 2025-12-05T22:28:12.8631216Z pytest-json-report 1.5.0 2025-12-05T22:28:12.8631523Z pytest-metadata 3.1.1 2025-12-05T22:28:12.8631815Z pytest-rerunfailures 15.1 2025-12-05T22:28:12.8632118Z pytest-xdist 3.8.0 2025-12-05T22:28:12.8632425Z python-dateutil 2.9.0.post0 2025-12-05T22:28:12.8632737Z pytorch_sphinx_theme2 0.2.0 2025-12-05T22:28:12.8633038Z pytorch_tokenizers 1.0.1 2025-12-05T22:28:12.8633318Z pytz 2025.2 2025-12-05T22:28:12.8633600Z PyYAML 6.0.1 2025-12-05T22:28:12.8633872Z regex 2025.11.3 2025-12-05T22:28:12.8634265Z requests 2.32.5 2025-12-05T22:28:12.8634543Z ruamel.yaml 0.18.15 2025-12-05T22:28:12.8634845Z ruamel.yaml.clib 0.2.14 2025-12-05T22:28:12.8635145Z safetensors 0.6.2 2025-12-05T22:28:12.8635418Z scikit-learn 1.7.1 2025-12-05T22:28:12.8635700Z scipy 1.15.3 2025-12-05T22:28:12.8635977Z sentencepiece 0.2.1 2025-12-05T22:28:12.8636261Z setuptools 80.9.0 2025-12-05T22:28:12.8636527Z six 1.17.0 2025-12-05T22:28:12.8636862Z snowballstemmer 3.0.1 2025-12-05T22:28:12.8637147Z sortedcontainers 2.4.0 2025-12-05T22:28:12.8637439Z soupsieve 2.8 2025-12-05T22:28:12.8637703Z Sphinx 7.2.6 2025-12-05T22:28:12.8637993Z sphinx-copybutton 0.5.2 2025-12-05T22:28:12.8638287Z sphinx_design 0.6.1 2025-12-05T22:28:12.8638563Z sphinx-gallery 0.14.0 2025-12-05T22:28:12.8638877Z sphinx-last-updated-by-git 0.3.8 2025-12-05T22:28:12.8639172Z sphinx_reredirects 0.1.4 2025-12-05T22:28:12.8639469Z sphinx-sitemap 2.7.1 2025-12-05T22:28:12.8639762Z sphinxcontrib-applehelp 2.0.0 2025-12-05T22:28:12.8640073Z sphinxcontrib-devhelp 2.0.0 2025-12-05T22:28:12.8640370Z sphinxcontrib-htmlhelp 2.1.0 2025-12-05T22:28:12.8640675Z sphinxcontrib-jsmath 1.0.1 2025-12-05T22:28:12.8640965Z sphinxcontrib-katex 0.9.10 2025-12-05T22:28:12.8641273Z sphinxcontrib-mermaid 1.0.0 2025-12-05T22:28:12.8641577Z sphinxcontrib-qthelp 2.0.0 2025-12-05T22:28:12.8641879Z sphinxcontrib-serializinghtml 2.0.0 2025-12-05T22:28:12.8642181Z sympy 1.14.0 2025-12-05T22:28:12.8642484Z tabulate 0.9.0 2025-12-05T22:28:12.8642761Z termcolor 2.3.0 2025-12-05T22:28:12.8643035Z threadpoolctl 3.6.0 2025-12-05T22:28:12.8643321Z tiktoken 0.12.0 2025-12-05T22:28:12.8643591Z timm 1.0.7 2025-12-05T22:28:12.8643904Z tokenizers 0.22.1 2025-12-05T22:28:12.8644186Z tomli 2.0.1 2025-12-05T22:28:12.8644476Z torch 2.10.0a0+gitb31bad1 2025-12-05T22:28:12.8644821Z torchao 0.14.0+git01849b2 2025-12-05T22:28:12.8645153Z torchaudio 2.10.0a0+69bbe73 2025-12-05T22:28:12.8645469Z torchdata 0.11.0 2025-12-05T22:28:12.8645742Z torchsr 1.0.4 2025-12-05T22:28:12.8646023Z torchtune 0.6.1 2025-12-05T22:28:12.8646316Z torchvision 0.25.0a0+1752fe6 2025-12-05T22:28:12.8646630Z tqdm 4.67.1 2025-12-05T22:28:12.8646903Z transformers 4.56.1 2025-12-05T22:28:12.8647209Z triton 3.0.0 1 2025-12-05T22:28:12.8647535Z typing_extensions 4.15.0 2025-12-05T22:28:12.8647812Z tzdata 2025.2 2025-12-05T22:28:12.8648090Z urllib3 2.5.0 2025-12-05T22:28:12.8648358Z Werkzeug 3.1.3 2025-12-05T22:28:12.8648634Z wheel 0.45.1 2025-12-05T22:28:12.8648900Z xxhash 3.6.0 2025-12-05T22:28:12.8649172Z yarl 1.22.0 2025-12-05T22:28:12.8649437Z yaspin 3.1.0 2025-12-05T22:28:12.8649712Z zstd 1.5.5.1 2025-12-05T22:28:12.8650133Z + .ci/scripts/setup-arm-baremetal-tools.sh --target-toolchain zephyr 2025-12-05T22:28:12.8650588Z [Arm Setup/main] Checking platform and OS 2025-12-05T22:28:12.8651090Z [Arm Setup/main] Prepared root dir at /pytorch/executorch/examples/arm/ethos-u-scratch 2025-12-05T22:28:12.8652254Z [Arm Setup/options] root=/pytorch/executorch/examples/arm/ethos-u-scratch, target-toolchain=zephyr, mlsdk-dir=/pytorch/executorch/examples/arm/ethos-u-scratch/ml-sdk-for-vulkan-manifest 2025-12-05T22:28:12.8653576Z [Arm Setup/options] ethos-u: fvps=1, toolchain=1, vela=1 | mlsdk: model-converter=0, vgf-lib=0, emu-layer=0, vulkan-sdk=0 2025-12-05T22:28:12.8654285Z [Arm Setup/toolchain] Configuring baremetal toolchain (zephyr) 2025-12-05T22:28:12.8654775Z [Arm Setup/toolchain] Selected arm-zephyr-eabi for x86_64/Linux 2025-12-05T22:28:12.8655263Z [Arm Setup/toolchain] Downloading arm-zephyr-eabi toolchain 2025-12-05T22:28:12.8655757Z % Total % Received % Xferd Average Speed Time Time Time Current 2025-12-05T22:28:12.8656266Z Dload Upload Total Spent Left Speed 2025-12-05T22:28:12.8656528Z 2025-12-05T22:28:12.8656658Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-12-05T22:28:12.8657033Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-12-05T22:28:12.8657278Z 2025-12-05T22:28:12.8657454Z 100 108M 100 108M 0 0 192M 0 --:--:-- --:--:-- --:--:-- 192M 2025-12-05T22:28:12.8657913Z [Arm Setup/toolchain] Installing arm-zephyr-eabi toolchain 2025-12-05T22:28:12.8658360Z [Arm Setup/fvp] Setting up Arm Fixed Virtual Platforms 2025-12-05T22:28:12.8658741Z [Arm Setup/fvp] Downloading FVP corstone300 2025-12-05T22:28:12.8659187Z % Total % Received % Xferd Average Speed Time Time Time Current 2025-12-05T22:28:12.8659648Z Dload Upload Total Spent Left Speed 2025-12-05T22:28:12.8659915Z 2025-12-05T22:28:12.8660038Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-12-05T22:28:12.8660422Z 0 80.1M 0 996 0 0 2484 0 9:23:54 --:--:-- 9:23:54 2483 2025-12-05T22:28:12.8660811Z 26 80.1M 26 20.9M 0 0 15.6M 0 0:00:05 0:00:01 0:00:04 15.6M 2025-12-05T22:28:12.8661247Z 54 80.1M 54 43.7M 0 0 18.5M 0 0:00:04 0:00:02 0:00:02 18.5M 2025-12-05T22:28:12.8661634Z 83 80.1M 83 67.0M 0 0 19.9M 0 0:00:04 0:00:03 0:00:01 19.9M 2025-12-05T22:28:25.6371737Z 100 80.1M 100 80.1M 0 0 20.6M 0 0:00:03 0:00:03 --:--:-- 20.6M 2025-12-05T22:28:25.6372494Z [Arm Setup/fvp] Installing FVP corstone300 2025-12-05T22:28:25.6372841Z [Arm Setup/fvp] Downloading FVP corstone320 2025-12-05T22:28:25.6373358Z % Total % Received % Xferd Average Speed Time Time Time Current 2025-12-05T22:28:25.6373821Z Dload Upload Total Spent Left Speed 2025-12-05T22:28:25.6374092Z 2025-12-05T22:28:25.6374226Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-12-05T22:28:25.6374660Z 9 113M 9 11.2M 0 0 13.3M 0 0:00:08 --:--:-- 0:00:08 13.3M 2025-12-05T22:28:25.6375074Z 31 113M 31 36.0M 0 0 19.3M 0 0:00:05 0:00:01 0:00:04 19.3M 2025-12-05T22:28:25.6375478Z 53 113M 53 60.9M 0 0 21.4M 0 0:00:05 0:00:02 0:00:03 21.4M 2025-12-05T22:28:25.6375887Z 66 113M 66 75.2M 0 0 19.5M 0 0:00:05 0:00:03 0:00:02 19.5M 2025-12-05T22:28:25.6376291Z 90 113M 90 102M 0 0 21.1M 0 0:00:05 0:00:04 0:00:01 21.1M 2025-12-05T22:28:25.6376725Z 100 113M 100 113M 0 0 22.0M 0 0:00:05 0:00:05 --:--:-- 23.7M 2025-12-05T22:28:25.6377128Z [Arm Setup/fvp] Installing FVP corstone320 2025-12-05T22:28:25.6377742Z [Arm Setup/path] Generating setup path scripts at /pytorch/executorch/examples/arm/ethos-u-scratch/setup_path 2025-12-05T22:28:25.6378652Z [Arm Setup/path] Update PATH by sourcing /pytorch/executorch/examples/arm/ethos-u-scratch/setup_path.{sh|fish} 2025-12-05T22:28:25.6379345Z [Arm Setup/deps] Installing TOSA reference model dependencies 2025-12-05T22:28:25.6380015Z Collecting ml_dtypes==0.5.1 (from -r /pytorch/executorch/backends/arm/requirements-arm-tosa.txt (line 6)) 2025-12-05T22:28:25.6380862Z Downloading ml_dtypes-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB) 2025-12-05T22:28:25.6381800Z Collecting flatbuffers==24.3.25 (from -r /pytorch/executorch/backends/arm/requirements-arm-tosa.txt (line 7)) 2025-12-05T22:28:25.6382580Z Downloading flatbuffers-24.3.25-py2.py3-none-any.whl.metadata (850 bytes) 2025-12-05T22:28:25.6383424Z Collecting tosa-adapter-model-explorer==0.1.0 (from -r /pytorch/executorch/backends/arm/requirements-arm-tosa.txt (line 8)) 2025-12-05T22:28:25.6384301Z Downloading tosa_adapter_model_explorer-0.1.0-py3-none-any.whl.metadata (2.4 kB) 2025-12-05T22:28:25.6385149Z Collecting ai-edge-model-explorer>=0.1.16 (from -r /pytorch/executorch/backends/arm/requirements-arm-tosa.txt (line 9)) 2025-12-05T22:28:25.6386005Z Downloading ai_edge_model_explorer-0.1.31-py3-none-any.whl.metadata (2.4 kB) 2025-12-05T22:28:25.6386705Z Downloading ml_dtypes-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) 2025-12-05T22:28:25.6387733Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/4.7 MB ? eta -:--:-- 2025-12-05T22:28:25.6388421Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 125.5 MB/s 0:00:00 2025-12-05T22:28:25.6389122Z [?25hDownloading flatbuffers-24.3.25-py2.py3-none-any.whl (26 kB) 2025-12-05T22:28:25.6389681Z Downloading tosa_adapter_model_explorer-0.1.0-py3-none-any.whl (44 kB) 2025-12-05T22:28:25.6390243Z Downloading ai_edge_model_explorer-0.1.31-py3-none-any.whl (2.1 MB) 2025-12-05T22:28:25.6390887Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.1 MB ? eta -:--:-- 2025-12-05T22:28:25.6391556Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 101.1 MB/s 0:00:00 2025-12-05T22:28:25.6392383Z [?25hInstalling collected packages: flatbuffers, tosa-adapter-model-explorer, ml_dtypes, ai-edge-model-explorer 2025-12-05T22:28:25.6393111Z [?25l 2025-12-05T22:28:25.6393383Z  Attempting uninstall: flatbuffers 2025-12-05T22:28:25.6393597Z 2025-12-05T22:28:25.6393805Z  Found existing installation: flatbuffers 25.9.23 2025-12-05T22:28:25.6394078Z 2025-12-05T22:28:25.6394246Z  Uninstalling flatbuffers-25.9.23: 2025-12-05T22:28:25.6394468Z 2025-12-05T22:28:25.6394735Z  Successfully uninstalled flatbuffers-25.9.23 2025-12-05T22:28:25.6395006Z 2025-12-05T22:28:25.6395326Z  ━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━ 2/4 [ml_dtypes] 2025-12-05T22:28:25.6395927Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4/4 [ai-edge-model-explorer] 2025-12-05T22:28:25.6396317Z [?25h 2025-12-05T22:28:25.6397029Z Successfully installed ai-edge-model-explorer-0.1.31 flatbuffers-24.3.25 ml_dtypes-0.5.1 tosa-adapter-model-explorer-0.1.0 2025-12-05T22:28:25.6397999Z /pytorch/executorch/examples/arm/ethos-u-scratch /pytorch/executorch/examples/arm/ethos-u-scratch 2025-12-05T22:28:25.6398604Z Cloning into 'tosa-tools'... 2025-12-05T22:28:25.6398949Z remote: Enumerating objects: 14669, done. 2025-12-05T22:28:25.6399342Z remote: Counting objects: 0% (1/821) 2025-12-05T22:28:25.6399720Z remote: Counting objects: 1% (9/821) 2025-12-05T22:28:25.6400084Z remote: Counting objects: 2% (17/821) 2025-12-05T22:28:25.6400469Z remote: Counting objects: 3% (25/821) 2025-12-05T22:28:25.6400834Z remote: Counting objects: 4% (33/821) 2025-12-05T22:28:25.6401207Z remote: Counting objects: 5% (42/821) 2025-12-05T22:28:25.6401574Z remote: Counting objects: 6% (50/821) 2025-12-05T22:28:25.6401949Z remote: Counting objects: 7% (58/821) 2025-12-05T22:28:25.6402311Z remote: Counting objects: 8% (66/821) 2025-12-05T22:28:25.6402688Z remote: Counting objects: 9% (74/821) 2025-12-05T22:28:25.6403064Z remote: Counting objects: 10% (83/821) 2025-12-05T22:28:25.6403429Z remote: Counting objects: 11% (91/821) 2025-12-05T22:28:25.6403805Z remote: Counting objects: 12% (99/821) 2025-12-05T22:28:25.6404175Z remote: Counting objects: 13% (107/821) 2025-12-05T22:28:25.6404560Z remote: Counting objects: 14% (115/821) 2025-12-05T22:28:25.6404931Z remote: Counting objects: 15% (124/821) 2025-12-05T22:28:25.6405351Z remote: Counting objects: 16% (132/821) 2025-12-05T22:28:25.6405727Z remote: Counting objects: 17% (140/821) 2025-12-05T22:28:25.6406107Z remote: Counting objects: 18% (148/821) 2025-12-05T22:28:25.6406488Z remote: Counting objects: 19% (156/821) 2025-12-05T22:28:25.6406859Z remote: Counting objects: 20% (165/821) 2025-12-05T22:28:25.6407241Z remote: Counting objects: 21% (173/821) 2025-12-05T22:28:25.6407607Z remote: Counting objects: 22% (181/821) 2025-12-05T22:28:25.6408022Z remote: Counting objects: 23% (189/821) 2025-12-05T22:28:25.6408396Z remote: Counting objects: 24% (198/821) 2025-12-05T22:28:25.6408778Z remote: Counting objects: 25% (206/821) 2025-12-05T22:28:25.6409151Z remote: Counting objects: 26% (214/821) 2025-12-05T22:28:25.6409536Z remote: Counting objects: 27% (222/821) 2025-12-05T22:28:25.6409918Z remote: Counting objects: 28% (230/821) 2025-12-05T22:28:25.6410289Z remote: Counting objects: 29% (239/821) 2025-12-05T22:28:25.6410678Z remote: Counting objects: 30% (247/821) 2025-12-05T22:28:25.6411049Z remote: Counting objects: 31% (255/821) 2025-12-05T22:28:25.6411430Z remote: Counting objects: 32% (263/821) 2025-12-05T22:28:25.6411799Z remote: Counting objects: 33% (271/821) 2025-12-05T22:28:25.6412179Z remote: Counting objects: 34% (280/821) 2025-12-05T22:28:25.6412545Z remote: Counting objects: 35% (288/821) 2025-12-05T22:28:25.6412925Z remote: Counting objects: 36% (296/821) 2025-12-05T22:28:25.6413308Z remote: Counting objects: 37% (304/821) 2025-12-05T22:28:25.6413676Z remote: Counting objects: 38% (312/821) 2025-12-05T22:28:25.6414055Z remote: Counting objects: 39% (321/821) 2025-12-05T22:28:25.6414423Z remote: Counting objects: 40% (329/821) 2025-12-05T22:28:25.6414840Z remote: Counting objects: 41% (337/821) 2025-12-05T22:28:25.6415208Z remote: Counting objects: 42% (345/821) 2025-12-05T22:28:25.6415587Z remote: Counting objects: 43% (354/821) 2025-12-05T22:28:25.6415956Z remote: Counting objects: 44% (362/821) 2025-12-05T22:28:25.6416371Z remote: Counting objects: 45% (370/821) 2025-12-05T22:28:25.6416750Z remote: Counting objects: 46% (378/821) 2025-12-05T22:28:25.6417133Z remote: Counting objects: 47% (386/821) 2025-12-05T22:28:25.6417514Z remote: Counting objects: 48% (395/821) 2025-12-05T22:28:25.6417885Z remote: Counting objects: 49% (403/821) 2025-12-05T22:28:25.6418465Z remote: Counting objects: 50% (411/821) 2025-12-05T22:28:25.6418862Z remote: Counting objects: 51% (419/821) 2025-12-05T22:28:25.6419235Z remote: Counting objects: 52% (427/821) 2025-12-05T22:28:25.6419620Z remote: Counting objects: 53% (436/821) 2025-12-05T22:28:25.6419992Z remote: Counting objects: 54% (444/821) 2025-12-05T22:28:25.6420383Z remote: Counting objects: 55% (452/821) 2025-12-05T22:28:25.6420759Z remote: Counting objects: 56% (460/821) 2025-12-05T22:28:25.6421146Z remote: Counting objects: 57% (468/821) 2025-12-05T22:28:25.6421520Z remote: Counting objects: 58% (477/821) 2025-12-05T22:28:25.6421910Z remote: Counting objects: 59% (485/821) 2025-12-05T22:28:25.6422298Z remote: Counting objects: 60% (493/821) 2025-12-05T22:28:25.6422672Z remote: Counting objects: 61% (501/821) 2025-12-05T22:28:25.6423061Z remote: Counting objects: 62% (510/821) 2025-12-05T22:28:25.6423432Z remote: Counting objects: 63% (518/821) 2025-12-05T22:28:25.6423814Z remote: Counting objects: 64% (526/821) 2025-12-05T22:28:25.6424186Z remote: Counting objects: 65% (534/821) 2025-12-05T22:28:25.6424571Z remote: Counting objects: 66% (542/821) 2025-12-05T22:28:25.6424940Z remote: Counting objects: 67% (551/821) 2025-12-05T22:28:25.6425320Z remote: Counting objects: 68% (559/821) 2025-12-05T22:28:25.6425693Z remote: Counting objects: 69% (567/821) 2025-12-05T22:28:25.6426072Z remote: Counting objects: 70% (575/821) 2025-12-05T22:28:25.6426452Z remote: Counting objects: 71% (583/821) 2025-12-05T22:28:25.6426896Z remote: Counting objects: 72% (592/821) 2025-12-05T22:28:25.6427284Z remote: Counting objects: 73% (600/821) 2025-12-05T22:28:25.6427651Z remote: Counting objects: 74% (608/821) 2025-12-05T22:28:25.6428032Z remote: Counting objects: 75% (616/821) 2025-12-05T22:28:25.6428398Z remote: Counting objects: 76% (624/821) 2025-12-05T22:28:25.6428867Z remote: Counting objects: 77% (633/821) 2025-12-05T22:28:25.6429234Z remote: Counting objects: 78% (641/821) 2025-12-05T22:28:25.6429675Z remote: Counting objects: 79% (649/821) 2025-12-05T22:28:25.6430060Z remote: Counting objects: 80% (657/821) 2025-12-05T22:28:25.6430431Z remote: Counting objects: 81% (666/821) 2025-12-05T22:28:25.6430815Z remote: Counting objects: 82% (674/821) 2025-12-05T22:28:25.6431186Z remote: Counting objects: 83% (682/821) 2025-12-05T22:28:25.6431572Z remote: Counting objects: 84% (690/821) 2025-12-05T22:28:25.6431941Z remote: Counting objects: 85% (698/821) 2025-12-05T22:28:25.6432326Z remote: Counting objects: 86% (707/821) 2025-12-05T22:28:25.6432700Z remote: Counting objects: 87% (715/821) 2025-12-05T22:28:25.6433083Z remote: Counting objects: 88% (723/821) 2025-12-05T22:28:25.6433464Z remote: Counting objects: 89% (731/821) 2025-12-05T22:28:25.6433832Z remote: Counting objects: 90% (739/821) 2025-12-05T22:28:25.6434215Z remote: Counting objects: 91% (748/821) 2025-12-05T22:28:25.6434583Z remote: Counting objects: 92% (756/821) 2025-12-05T22:28:25.6434967Z remote: Counting objects: 93% (764/821) 2025-12-05T22:28:26.3115685Z remote: Counting objects: 94% (772/821) 2025-12-05T22:28:26.3116498Z remote: Counting objects: 95% (780/821) 2025-12-05T22:28:26.3117219Z remote: Counting objects: 96% (789/821) 2025-12-05T22:28:26.3118121Z remote: Counting objects: 97% (797/821) 2025-12-05T22:28:26.3119032Z remote: Counting objects: 98% (805/821) 2025-12-05T22:28:26.3119755Z remote: Counting objects: 99% (813/821) 2025-12-05T22:28:26.3120466Z remote: Counting objects: 100% (821/821) 2025-12-05T22:28:26.3121663Z remote: Counting objects: 100% (821/821), done. 2025-12-05T22:28:26.3122454Z remote: Compressing objects: 0% (1/296) 2025-12-05T22:28:26.3123186Z remote: Compressing objects: 1% (3/296) 2025-12-05T22:28:26.3123936Z remote: Compressing objects: 2% (6/296) 2025-12-05T22:28:26.3124662Z remote: Compressing objects: 3% (9/296) 2025-12-05T22:28:26.3125421Z remote: Compressing objects: 4% (12/296) 2025-12-05T22:28:26.3126166Z remote: Compressing objects: 5% (15/296) 2025-12-05T22:28:26.3126922Z remote: Compressing objects: 6% (18/296) 2025-12-05T22:28:26.3127603Z remote: Compressing objects: 7% (21/296) 2025-12-05T22:28:26.3128340Z remote: Compressing objects: 8% (24/296) 2025-12-05T22:28:26.3129103Z remote: Compressing objects: 9% (27/296) 2025-12-05T22:28:26.3129819Z remote: Compressing objects: 10% (30/296) 2025-12-05T22:28:26.3130594Z remote: Compressing objects: 11% (33/296) 2025-12-05T22:28:26.3131337Z remote: Compressing objects: 12% (36/296) 2025-12-05T22:28:26.3132082Z remote: Compressing objects: 13% (39/296) 2025-12-05T22:28:26.3132836Z remote: Compressing objects: 14% (42/296) 2025-12-05T22:28:26.3133581Z remote: Compressing objects: 15% (45/296) 2025-12-05T22:28:26.3134306Z remote: Compressing objects: 16% (48/296) 2025-12-05T22:28:26.3135067Z remote: Compressing objects: 17% (51/296) 2025-12-05T22:28:26.3135823Z remote: Compressing objects: 18% (54/296) 2025-12-05T22:28:26.3136633Z remote: Compressing objects: 19% (57/296) 2025-12-05T22:28:26.3137375Z remote: Compressing objects: 20% (60/296) 2025-12-05T22:28:26.3138071Z remote: Compressing objects: 21% (63/296) 2025-12-05T22:28:26.3138829Z remote: Compressing objects: 22% (66/296) 2025-12-05T22:28:26.3139593Z remote: Compressing objects: 23% (69/296) 2025-12-05T22:28:26.3140342Z remote: Compressing objects: 24% (72/296) 2025-12-05T22:28:26.3141230Z remote: Compressing objects: 25% (74/296) 2025-12-05T22:28:26.3142003Z remote: Compressing objects: 26% (77/296) 2025-12-05T22:28:26.3142763Z remote: Compressing objects: 27% (80/296) 2025-12-05T22:28:26.3143514Z remote: Compressing objects: 28% (83/296) 2025-12-05T22:28:26.3144237Z remote: Compressing objects: 29% (86/296) 2025-12-05T22:28:26.3145002Z remote: Compressing objects: 30% (89/296) 2025-12-05T22:28:26.3145753Z remote: Compressing objects: 31% (92/296) 2025-12-05T22:28:26.3146590Z remote: Compressing objects: 32% (95/296) 2025-12-05T22:28:26.3147310Z remote: Compressing objects: 33% (98/296) 2025-12-05T22:28:26.3148059Z remote: Compressing objects: 34% (101/296) 2025-12-05T22:28:26.3148903Z remote: Compressing objects: 35% (104/296) 2025-12-05T22:28:26.3149666Z remote: Compressing objects: 36% (107/296) 2025-12-05T22:28:26.3150445Z remote: Compressing objects: 37% (110/296) 2025-12-05T22:28:26.3151200Z remote: Compressing objects: 38% (113/296) 2025-12-05T22:28:26.3151978Z remote: Compressing objects: 39% (116/296) 2025-12-05T22:28:26.3152739Z remote: Compressing objects: 40% (119/296) 2025-12-05T22:28:26.3153601Z remote: Compressing objects: 41% (122/296) 2025-12-05T22:28:26.3154360Z remote: Compressing objects: 42% (125/296) 2025-12-05T22:28:26.3166032Z remote: Compressing objects: 43% (128/296) 2025-12-05T22:28:26.3166942Z remote: Compressing objects: 44% (131/296) 2025-12-05T22:28:26.3167696Z remote: Compressing objects: 45% (134/296) 2025-12-05T22:28:26.3168486Z remote: Compressing objects: 46% (137/296) 2025-12-05T22:28:26.3169273Z remote: Compressing objects: 47% (140/296) 2025-12-05T22:28:26.3170049Z remote: Compressing objects: 48% (143/296) 2025-12-05T22:28:26.3170920Z remote: Compressing objects: 49% (146/296) 2025-12-05T22:28:26.3171688Z remote: Compressing objects: 50% (148/296) 2025-12-05T22:28:26.3172452Z remote: Compressing objects: 51% (151/296) 2025-12-05T22:28:26.3173207Z remote: Compressing objects: 52% (154/296) 2025-12-05T22:28:26.3173966Z remote: Compressing objects: 53% (157/296) 2025-12-05T22:28:26.3174801Z remote: Compressing objects: 54% (160/296) 2025-12-05T22:28:26.3175555Z remote: Compressing objects: 55% (163/296) 2025-12-05T22:28:26.3176326Z remote: Compressing objects: 56% (166/296) 2025-12-05T22:28:26.3177035Z remote: Compressing objects: 57% (169/296) 2025-12-05T22:28:26.3177820Z remote: Compressing objects: 58% (172/296) 2025-12-05T22:28:26.3178603Z remote: Compressing objects: 59% (175/296) 2025-12-05T22:28:26.3179373Z remote: Compressing objects: 60% (178/296) 2025-12-05T22:28:26.3180159Z remote: Compressing objects: 61% (181/296) 2025-12-05T22:28:26.3181103Z remote: Compressing objects: 62% (184/296) 2025-12-05T22:28:26.3181992Z remote: Compressing objects: 63% (187/296) 2025-12-05T22:28:26.3182734Z remote: Compressing objects: 64% (190/296) 2025-12-05T22:28:26.3183494Z remote: Compressing objects: 65% (193/296) 2025-12-05T22:28:26.3184262Z remote: Compressing objects: 66% (196/296) 2025-12-05T22:28:26.3185031Z remote: Compressing objects: 67% (199/296) 2025-12-05T22:28:26.3185803Z remote: Compressing objects: 68% (202/296) 2025-12-05T22:28:26.3186559Z remote: Compressing objects: 69% (205/296) 2025-12-05T22:28:26.3187322Z remote: Compressing objects: 70% (208/296) 2025-12-05T22:28:26.3188073Z remote: Compressing objects: 71% (211/296) 2025-12-05T22:28:26.3188911Z remote: Compressing objects: 72% (214/296) 2025-12-05T22:28:26.3189669Z remote: Compressing objects: 73% (217/296) 2025-12-05T22:28:26.3190445Z remote: Compressing objects: 74% (220/296) 2025-12-05T22:28:26.3191206Z remote: Compressing objects: 75% (222/296) 2025-12-05T22:28:26.3191964Z remote: Compressing objects: 76% (225/296) 2025-12-05T22:28:26.3192727Z remote: Compressing objects: 77% (228/296) 2025-12-05T22:28:26.3193461Z remote: Compressing objects: 78% (231/296) 2025-12-05T22:28:26.3194321Z remote: Compressing objects: 79% (234/296) 2025-12-05T22:28:26.3195076Z remote: Compressing objects: 80% (237/296) 2025-12-05T22:28:26.3195822Z remote: Compressing objects: 81% (240/296) 2025-12-05T22:28:26.3196609Z remote: Compressing objects: 82% (243/296) 2025-12-05T22:28:26.3197376Z remote: Compressing objects: 83% (246/296) 2025-12-05T22:28:26.3198147Z remote: Compressing objects: 84% (249/296) 2025-12-05T22:28:26.3198881Z remote: Compressing objects: 85% (252/296) 2025-12-05T22:28:26.3199724Z remote: Compressing objects: 86% (255/296) 2025-12-05T22:28:26.3200491Z remote: Compressing objects: 87% (258/296) 2025-12-05T22:28:26.3201238Z remote: Compressing objects: 88% (261/296) 2025-12-05T22:28:26.3201997Z remote: Compressing objects: 89% (264/296) 2025-12-05T22:28:26.3202782Z remote: Compressing objects: 90% (267/296) 2025-12-05T22:28:26.3203537Z remote: Compressing objects: 91% (270/296) 2025-12-05T22:28:26.3204280Z remote: Compressing objects: 92% (273/296) 2025-12-05T22:28:26.3205069Z remote: Compressing objects: 93% (276/296) 2025-12-05T22:28:26.3205835Z remote: Compressing objects: 94% (279/296) 2025-12-05T22:28:26.3206593Z remote: Compressing objects: 95% (282/296) 2025-12-05T22:28:26.3207337Z remote: Compressing objects: 96% (285/296) 2025-12-05T22:28:26.3208084Z remote: Compressing objects: 97% (288/296) 2025-12-05T22:28:26.3208831Z remote: Compressing objects: 98% (291/296) 2025-12-05T22:28:26.3209589Z remote: Compressing objects: 99% (294/296) 2025-12-05T22:28:26.3210372Z remote: Compressing objects: 100% (296/296) 2025-12-05T22:28:26.3211178Z remote: Compressing objects: 100% (296/296), done. 2025-12-05T22:28:26.3211837Z Receiving objects: 0% (1/14669) 2025-12-05T22:28:26.3212422Z Receiving objects: 1% (147/14669) 2025-12-05T22:28:26.3213046Z Receiving objects: 2% (294/14669) 2025-12-05T22:28:26.3213586Z Receiving objects: 3% (441/14669) 2025-12-05T22:28:26.3214130Z Receiving objects: 4% (587/14669) 2025-12-05T22:28:26.3214648Z Receiving objects: 5% (734/14669) 2025-12-05T22:28:26.3215251Z Receiving objects: 6% (881/14669) 2025-12-05T22:28:26.3215793Z Receiving objects: 7% (1027/14669) 2025-12-05T22:28:26.3216321Z Receiving objects: 8% (1174/14669) 2025-12-05T22:28:26.3216883Z Receiving objects: 9% (1321/14669) 2025-12-05T22:28:26.3217417Z Receiving objects: 10% (1467/14669) 2025-12-05T22:28:26.3217954Z Receiving objects: 11% (1614/14669) 2025-12-05T22:28:26.3218652Z Receiving objects: 12% (1761/14669) 2025-12-05T22:28:26.3219187Z Receiving objects: 13% (1907/14669) 2025-12-05T22:28:26.3219713Z Receiving objects: 14% (2054/14669) 2025-12-05T22:28:26.3220257Z Receiving objects: 15% (2201/14669) 2025-12-05T22:28:26.3220807Z Receiving objects: 16% (2348/14669) 2025-12-05T22:28:26.3221332Z Receiving objects: 17% (2494/14669) 2025-12-05T22:28:26.3221868Z Receiving objects: 18% (2641/14669) 2025-12-05T22:28:26.3222400Z Receiving objects: 19% (2788/14669) 2025-12-05T22:28:26.3222951Z Receiving objects: 20% (2934/14669) 2025-12-05T22:28:26.3223457Z Receiving objects: 21% (3081/14669) 2025-12-05T22:28:26.3224004Z Receiving objects: 22% (3228/14669) 2025-12-05T22:28:26.3224540Z Receiving objects: 23% (3374/14669) 2025-12-05T22:28:26.3225084Z Receiving objects: 24% (3521/14669) 2025-12-05T22:28:26.3225614Z Receiving objects: 25% (3668/14669) 2025-12-05T22:28:26.3226157Z Receiving objects: 26% (3814/14669) 2025-12-05T22:28:26.3226700Z Receiving objects: 27% (3961/14669) 2025-12-05T22:28:26.3227248Z Receiving objects: 28% (4108/14669) 2025-12-05T22:28:26.3227804Z Receiving objects: 29% (4255/14669) 2025-12-05T22:28:26.3228336Z Receiving objects: 30% (4401/14669) 2025-12-05T22:28:26.3228956Z Receiving objects: 31% (4548/14669) 2025-12-05T22:28:26.3229483Z Receiving objects: 32% (4695/14669) 2025-12-05T22:28:26.3230028Z Receiving objects: 33% (4841/14669) 2025-12-05T22:28:26.3230553Z Receiving objects: 34% (4988/14669) 2025-12-05T22:28:26.3231109Z Receiving objects: 35% (5135/14669) 2025-12-05T22:28:26.3231733Z Receiving objects: 36% (5281/14669) 2025-12-05T22:28:26.3232277Z Receiving objects: 37% (5428/14669) 2025-12-05T22:28:26.3232829Z Receiving objects: 38% (5575/14669) 2025-12-05T22:28:26.3233442Z Receiving objects: 39% (5721/14669) 2025-12-05T22:28:26.3233985Z Receiving objects: 40% (5868/14669) 2025-12-05T22:28:26.3234517Z Receiving objects: 41% (6015/14669) 2025-12-05T22:28:26.3235059Z Receiving objects: 42% (6161/14669) 2025-12-05T22:28:26.3235585Z Receiving objects: 43% (6308/14669) 2025-12-05T22:28:26.3236205Z Receiving objects: 44% (6455/14669) 2025-12-05T22:28:26.3236728Z Receiving objects: 45% (6602/14669) 2025-12-05T22:28:26.3237275Z Receiving objects: 46% (6748/14669) 2025-12-05T22:28:26.3237813Z Receiving objects: 47% (6895/14669) 2025-12-05T22:28:26.3238355Z Receiving objects: 48% (7042/14669) 2025-12-05T22:28:26.3238887Z Receiving objects: 49% (7188/14669) 2025-12-05T22:28:26.3239409Z Receiving objects: 50% (7335/14669) 2025-12-05T22:28:26.3239953Z Receiving objects: 51% (7482/14669) 2025-12-05T22:28:26.3240473Z Receiving objects: 52% (7628/14669) 2025-12-05T22:28:26.3241023Z Receiving objects: 53% (7775/14669) 2025-12-05T22:28:26.3241551Z Receiving objects: 54% (7922/14669) 2025-12-05T22:28:26.3242184Z Receiving objects: 55% (8068/14669) 2025-12-05T22:28:26.3242717Z Receiving objects: 56% (8215/14669) 2025-12-05T22:28:26.3243252Z Receiving objects: 57% (8362/14669) 2025-12-05T22:28:26.3243788Z Receiving objects: 58% (8509/14669) 2025-12-05T22:28:26.3244326Z Receiving objects: 59% (8655/14669) 2025-12-05T22:28:26.3244866Z Receiving objects: 60% (8802/14669) 2025-12-05T22:28:26.3245401Z Receiving objects: 61% (8949/14669) 2025-12-05T22:28:26.3245948Z Receiving objects: 62% (9095/14669) 2025-12-05T22:28:26.3246544Z Receiving objects: 63% (9242/14669) 2025-12-05T22:28:26.3247095Z Receiving objects: 64% (9389/14669) 2025-12-05T22:28:26.3247621Z Receiving objects: 65% (9535/14669) 2025-12-05T22:28:26.3248161Z Receiving objects: 66% (9682/14669) 2025-12-05T22:28:26.3248705Z Receiving objects: 67% (9829/14669) 2025-12-05T22:28:26.3249317Z Receiving objects: 68% (9975/14669) 2025-12-05T22:28:26.3249870Z Receiving objects: 69% (10122/14669) 2025-12-05T22:28:26.3250414Z Receiving objects: 70% (10269/14669) 2025-12-05T22:28:26.3250959Z Receiving objects: 71% (10415/14669) 2025-12-05T22:28:26.3251507Z Receiving objects: 72% (10562/14669) 2025-12-05T22:28:26.3252066Z Receiving objects: 73% (10709/14669) 2025-12-05T22:28:26.3252596Z Receiving objects: 74% (10856/14669) 2025-12-05T22:28:26.3253162Z Receiving objects: 75% (11002/14669) 2025-12-05T22:28:26.3253699Z Receiving objects: 76% (11149/14669) 2025-12-05T22:28:26.3254251Z Receiving objects: 77% (11296/14669) 2025-12-05T22:28:26.3254797Z Receiving objects: 78% (11442/14669) 2025-12-05T22:28:26.3255329Z Receiving objects: 79% (11589/14669) 2025-12-05T22:28:26.3255883Z Receiving objects: 80% (11736/14669) 2025-12-05T22:28:26.3256397Z Receiving objects: 81% (11882/14669) 2025-12-05T22:29:35.8347792Z Receiving objects: 82% (12029/14669) 2025-12-05T22:29:35.8348168Z Receiving objects: 83% (12176/14669) 2025-12-05T22:29:35.8348556Z Receiving objects: 84% (12322/14669) 2025-12-05T22:29:35.8348852Z Receiving objects: 85% (12469/14669) 2025-12-05T22:29:35.8349156Z Receiving objects: 86% (12616/14669) 2025-12-05T22:29:35.8349450Z Receiving objects: 87% (12763/14669) 2025-12-05T22:29:35.8349804Z Receiving objects: 88% (12909/14669) 2025-12-05T22:29:35.8350096Z Receiving objects: 89% (13056/14669) 2025-12-05T22:29:35.8350410Z Receiving objects: 90% (13203/14669) 2025-12-05T22:29:35.8350708Z Receiving objects: 91% (13349/14669) 2025-12-05T22:29:35.8350994Z Receiving objects: 92% (13496/14669) 2025-12-05T22:29:35.8351293Z Receiving objects: 93% (13643/14669) 2025-12-05T22:29:35.8351584Z Receiving objects: 94% (13789/14669) 2025-12-05T22:29:35.8351884Z Receiving objects: 95% (13936/14669) 2025-12-05T22:29:35.8352169Z Receiving objects: 96% (14083/14669) 2025-12-05T22:29:35.8353029Z Receiving objects: 97% (14229/14669) 2025-12-05T22:29:35.8353324Z Receiving objects: 98% (14376/14669) 2025-12-05T22:29:35.8353633Z Receiving objects: 99% (14523/14669) 2025-12-05T22:29:35.8378036Z remote: Total 14669 (delta 657), reused 523 (delta 523), pack-reused 13848 (from 1) 2025-12-05T22:29:35.8378607Z Receiving objects: 100% (14669/14669) 2025-12-05T22:29:35.8378995Z Receiving objects: 100% (14669/14669), 4.63 MiB | 9.58 MiB/s, done. 2025-12-05T22:29:35.8379408Z Resolving deltas: 0% (0/11165) 2025-12-05T22:29:35.8379854Z Resolving deltas: 1% (112/11165) 2025-12-05T22:29:35.8380155Z Resolving deltas: 2% (224/11165) 2025-12-05T22:29:35.8380437Z Resolving deltas: 3% (335/11165) 2025-12-05T22:29:35.8380731Z Resolving deltas: 4% (447/11165) 2025-12-05T22:29:35.8381010Z Resolving deltas: 5% (559/11165) 2025-12-05T22:29:35.8381300Z Resolving deltas: 6% (670/11165) 2025-12-05T22:29:35.8381595Z Resolving deltas: 7% (782/11165) 2025-12-05T22:29:35.8381870Z Resolving deltas: 8% (894/11165) 2025-12-05T22:29:35.8382172Z Resolving deltas: 9% (1005/11165) 2025-12-05T22:29:35.8382453Z Resolving deltas: 10% (1117/11165) 2025-12-05T22:29:35.8382749Z Resolving deltas: 11% (1229/11165) 2025-12-05T22:29:35.8383025Z Resolving deltas: 12% (1340/11165) 2025-12-05T22:29:35.8383312Z Resolving deltas: 13% (1452/11165) 2025-12-05T22:29:35.8383598Z Resolving deltas: 14% (1564/11165) 2025-12-05T22:29:35.8383872Z Resolving deltas: 15% (1675/11165) 2025-12-05T22:29:35.8384160Z Resolving deltas: 16% (1787/11165) 2025-12-05T22:29:35.8384438Z Resolving deltas: 17% (1899/11165) 2025-12-05T22:29:35.8384725Z Resolving deltas: 18% (2010/11165) 2025-12-05T22:29:35.8385004Z Resolving deltas: 19% (2122/11165) 2025-12-05T22:29:35.8385293Z Resolving deltas: 20% (2233/11165) 2025-12-05T22:29:35.8385639Z Resolving deltas: 21% (2345/11165) 2025-12-05T22:29:35.8385930Z Resolving deltas: 22% (2457/11165) 2025-12-05T22:29:35.8386222Z Resolving deltas: 23% (2569/11165) 2025-12-05T22:29:35.8386502Z Resolving deltas: 24% (2680/11165) 2025-12-05T22:29:35.8386797Z Resolving deltas: 25% (2792/11165) 2025-12-05T22:29:35.8387147Z Resolving deltas: 26% (2903/11165) 2025-12-05T22:29:35.8387442Z Resolving deltas: 27% (3015/11165) 2025-12-05T22:29:35.8387723Z Resolving deltas: 28% (3127/11165) 2025-12-05T22:29:35.8388017Z Resolving deltas: 29% (3238/11165) 2025-12-05T22:29:35.8388296Z Resolving deltas: 30% (3350/11165) 2025-12-05T22:29:35.8388669Z Resolving deltas: 31% (3462/11165) 2025-12-05T22:29:35.8388945Z Resolving deltas: 32% (3573/11165) 2025-12-05T22:29:35.8389240Z Resolving deltas: 33% (3685/11165) 2025-12-05T22:29:35.8389528Z Resolving deltas: 34% (3797/11165) 2025-12-05T22:29:35.8389807Z Resolving deltas: 35% (3908/11165) 2025-12-05T22:29:35.8390099Z Resolving deltas: 36% (4020/11165) 2025-12-05T22:29:35.8390378Z Resolving deltas: 37% (4132/11165) 2025-12-05T22:29:35.8390666Z Resolving deltas: 38% (4243/11165) 2025-12-05T22:29:35.8390941Z Resolving deltas: 39% (4355/11165) 2025-12-05T22:29:35.8391239Z Resolving deltas: 40% (4466/11165) 2025-12-05T22:29:35.8391516Z Resolving deltas: 41% (4578/11165) 2025-12-05T22:29:35.8391808Z Resolving deltas: 42% (4690/11165) 2025-12-05T22:29:35.8392088Z Resolving deltas: 43% (4801/11165) 2025-12-05T22:29:35.8392379Z Resolving deltas: 44% (4913/11165) 2025-12-05T22:29:35.8392668Z Resolving deltas: 45% (5025/11165) 2025-12-05T22:29:35.8392948Z Resolving deltas: 46% (5136/11165) 2025-12-05T22:29:35.8393239Z Resolving deltas: 47% (5248/11165) 2025-12-05T22:29:35.8393517Z Resolving deltas: 48% (5360/11165) 2025-12-05T22:29:35.8393809Z Resolving deltas: 49% (5471/11165) 2025-12-05T22:29:35.8394084Z Resolving deltas: 50% (5583/11165) 2025-12-05T22:29:35.8394373Z Resolving deltas: 51% (5695/11165) 2025-12-05T22:29:35.8394649Z Resolving deltas: 52% (5806/11165) 2025-12-05T22:29:35.8394937Z Resolving deltas: 53% (5918/11165) 2025-12-05T22:29:35.8395224Z Resolving deltas: 54% (6030/11165) 2025-12-05T22:29:35.8395498Z Resolving deltas: 55% (6141/11165) 2025-12-05T22:29:35.8395826Z Resolving deltas: 56% (6253/11165) 2025-12-05T22:29:35.8396104Z Resolving deltas: 57% (6365/11165) 2025-12-05T22:29:35.8396398Z Resolving deltas: 58% (6476/11165) 2025-12-05T22:29:35.8396675Z Resolving deltas: 59% (6588/11165) 2025-12-05T22:29:35.8396965Z Resolving deltas: 60% (6699/11165) 2025-12-05T22:29:35.8397241Z Resolving deltas: 61% (6811/11165) 2025-12-05T22:29:35.8397533Z Resolving deltas: 62% (6923/11165) 2025-12-05T22:29:35.8397807Z Resolving deltas: 63% (7034/11165) 2025-12-05T22:29:35.8398093Z Resolving deltas: 64% (7146/11165) 2025-12-05T22:29:35.8398411Z Resolving deltas: 65% (7258/11165) 2025-12-05T22:29:35.8398689Z Resolving deltas: 66% (7369/11165) 2025-12-05T22:29:35.8398977Z Resolving deltas: 67% (7481/11165) 2025-12-05T22:29:35.8399256Z Resolving deltas: 68% (7593/11165) 2025-12-05T22:29:35.8399543Z Resolving deltas: 69% (7704/11165) 2025-12-05T22:29:35.8399818Z Resolving deltas: 70% (7816/11165) 2025-12-05T22:29:35.8400105Z Resolving deltas: 71% (7928/11165) 2025-12-05T22:29:35.8400383Z Resolving deltas: 72% (8039/11165) 2025-12-05T22:29:35.8400670Z Resolving deltas: 73% (8151/11165) 2025-12-05T22:29:35.8400949Z Resolving deltas: 74% (8263/11165) 2025-12-05T22:29:35.8401240Z Resolving deltas: 75% (8374/11165) 2025-12-05T22:29:35.8401529Z Resolving deltas: 76% (8486/11165) 2025-12-05T22:29:35.8401806Z Resolving deltas: 77% (8598/11165) 2025-12-05T22:29:35.8402097Z Resolving deltas: 78% (8709/11165) 2025-12-05T22:29:35.8402374Z Resolving deltas: 79% (8821/11165) 2025-12-05T22:29:35.8402667Z Resolving deltas: 80% (8932/11165) 2025-12-05T22:29:35.8402946Z Resolving deltas: 81% (9044/11165) 2025-12-05T22:29:35.8403235Z Resolving deltas: 82% (9156/11165) 2025-12-05T22:29:35.8403513Z Resolving deltas: 83% (9267/11165) 2025-12-05T22:29:35.8403845Z Resolving deltas: 84% (9379/11165) 2025-12-05T22:29:35.8404135Z Resolving deltas: 85% (9491/11165) 2025-12-05T22:29:35.8404414Z Resolving deltas: 86% (9602/11165) 2025-12-05T22:29:35.8404707Z Resolving deltas: 87% (9714/11165) 2025-12-05T22:29:35.8404988Z Resolving deltas: 88% (9826/11165) 2025-12-05T22:29:35.8405319Z Resolving deltas: 89% (9937/11165) 2025-12-05T22:29:35.8405601Z Resolving deltas: 90% (10049/11165) 2025-12-05T22:29:35.8405902Z Resolving deltas: 91% (10161/11165) 2025-12-05T22:29:35.8406183Z Resolving deltas: 92% (10272/11165) 2025-12-05T22:29:35.8406478Z Resolving deltas: 93% (10384/11165) 2025-12-05T22:29:35.8406760Z Resolving deltas: 94% (10496/11165) 2025-12-05T22:29:35.8407056Z Resolving deltas: 95% (10607/11165) 2025-12-05T22:29:35.8407350Z Resolving deltas: 96% (10719/11165) 2025-12-05T22:29:35.8407630Z Resolving deltas: 97% (10831/11165) 2025-12-05T22:29:35.8407922Z Resolving deltas: 98% (10942/11165) 2025-12-05T22:29:35.8408200Z Resolving deltas: 99% (11054/11165) 2025-12-05T22:29:35.8408491Z Resolving deltas: 100% (11165/11165) 2025-12-05T22:29:35.8408780Z Resolving deltas: 100% (11165/11165), done. 2025-12-05T22:29:35.8409691Z /pytorch/executorch/examples/arm/ethos-u-scratch/tosa-tools /pytorch/executorch/examples/arm/ethos-u-scratch /pytorch/executorch/examples/arm/ethos-u-scratch 2025-12-05T22:29:35.8410628Z From https://git.gitlab.arm.com/tosa/tosa-tools 2025-12-05T22:29:35.8411001Z * branch main -> FETCH_HEAD 2025-12-05T22:29:35.8411397Z Note: switching to '8468d041c50c6d806f3c1c18c66d7ef641e46580'. 2025-12-05T22:29:35.8411690Z 2025-12-05T22:29:35.8411902Z You are in 'detached HEAD' state. You can look around, make experimental 2025-12-05T22:29:35.8412454Z changes and commit them, and you can discard any commits you make in this 2025-12-05T22:29:35.8412996Z state without impacting any branches by switching back to a branch. 2025-12-05T22:29:35.8413331Z 2025-12-05T22:29:35.8413536Z If you want to create a new branch to retain commits you create, you may 2025-12-05T22:29:35.8414043Z do so (now or later) by using -c with the switch command. Example: 2025-12-05T22:29:35.8414332Z 2025-12-05T22:29:35.8414437Z git switch -c 2025-12-05T22:29:35.8414629Z 2025-12-05T22:29:35.8414775Z Or undo this operation with: 2025-12-05T22:29:35.8414952Z 2025-12-05T22:29:35.8415037Z git switch - 2025-12-05T22:29:35.8415173Z 2025-12-05T22:29:35.8415405Z Turn off this advice by setting config variable advice.detachedHead to false 2025-12-05T22:29:35.8415755Z 2025-12-05T22:29:35.8415992Z HEAD is now at 8468d04 feat(sl): Add python bindings to Serialization library 2025-12-05T22:29:35.8416519Z Auto-merging serialization/src/tosa_serialization_handler.cpp 2025-12-05T22:29:35.8417110Z [detached HEAD bf07e60] fix(sl): Fix alignment mask when userBufferOffset is true 2025-12-05T22:29:35.8417580Z Author: Ryan OShea 2025-12-05T22:29:35.8417897Z Date: Mon Nov 3 13:04:37 2025 +0000 2025-12-05T22:29:35.8418436Z 1 file changed, 3 insertions(+), 4 deletions(-) 2025-12-05T22:29:35.8418796Z Processing ./reference_model 2025-12-05T22:29:35.8419348Z Installing build dependencies ... [?25l- \ | / - \ | / - \ | done 2025-12-05T22:29:35.8419978Z [?25h Getting requirements to build wheel ... [?25l- \ done 2025-12-05T22:29:35.8420523Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2025-12-05T22:29:35.8421023Z [?25hBuilding wheels for collected packages: tosa-tools 2025-12-05T22:29:35.8422203Z Building wheel for tosa-tools (pyproject.toml) ... [?25l- \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / done 2025-12-05T22:29:35.8423838Z [?25h Created wheel for tosa-tools: filename=tosa_tools-0.0.post1.dev1349+gbf07e60dc-py3-none-any.whl size=6497855 sha256=7811e04f1d4d9e3b46b987b02e1fc4565ac3be1df117225ef6a85551d9d106c1 2025-12-05T22:29:35.8425184Z Stored in directory: /tmp/pip-ephem-wheel-cache-_q3agrhv/wheels/20/62/2a/a302b878631d17f967b5639729a10e7d102bbd93a3a7e91a92 2025-12-05T22:29:35.8425872Z Successfully built tosa-tools 2025-12-05T22:29:35.8426184Z Installing collected packages: tosa-tools 2025-12-05T22:29:35.8426611Z Successfully installed tosa-tools-0.0.post1.dev1349+gbf07e60dc 2025-12-05T22:29:35.8427035Z Processing ./serialization 2025-12-05T22:29:35.8427460Z Installing build dependencies ... [?25l- \ | / - done 2025-12-05T22:29:35.8427997Z [?25h Getting requirements to build wheel ... [?25l- done 2025-12-05T22:29:35.8428596Z [?25h Installing backend dependencies ... [?25l- \ | done 2025-12-05T22:29:35.8429127Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2025-12-05T22:29:35.8429690Z [?25hBuilding wheels for collected packages: tosa_serialization_lib 2025-12-05T22:29:35.8430575Z Building wheel for tosa_serialization_lib (pyproject.toml) ... [?25l- \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / - \ | / done 2025-12-05T22:29:35.8432023Z [?25h Created wheel for tosa_serialization_lib: filename=tosa_serialization_lib-0.0.0-cp310-cp310-linux_x86_64.whl size=3473774 sha256=b365263f66b9be70e8172786082d973029375c0af41680bbcb59d30ac6bd53e4 2025-12-05T22:29:35.8433362Z Stored in directory: /tmp/pip-ephem-wheel-cache-itormwtn/wheels/75/bd/43/4780dfa8e390257537a7df1ebe1a5ff362d37644fa6a576c4d 2025-12-05T22:29:35.8434078Z Successfully built tosa_serialization_lib 2025-12-05T22:29:35.8434472Z Installing collected packages: tosa_serialization_lib 2025-12-05T22:29:35.8434892Z Successfully installed tosa_serialization_lib-0.0.0 2025-12-05T22:29:38.6122239Z /pytorch/executorch/examples/arm/ethos-u-scratch /pytorch/executorch/examples/arm/ethos-u-scratch 2025-12-05T22:29:38.6122947Z /pytorch/executorch/examples/arm/ethos-u-scratch 2025-12-05T22:29:38.6123732Z [Arm Setup/deps] Installing Ethos-U Vela compiler 2025-12-05T22:29:38.6124402Z [Arm Setup/ethos-u-tools] Installing Ethos-U Python tooling 2025-12-05T22:29:38.6125597Z Collecting ethos-u-vela==4.4.1 (from -r /pytorch/executorch/backends/arm/requirements-arm-ethos-u.txt (line 6)) 2025-12-05T22:29:38.6126525Z Downloading ethos_u_vela-4.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.4 kB) 2025-12-05T22:29:38.6127449Z Downloading ethos_u_vela-4.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB) 2025-12-05T22:29:38.6128446Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.9 MB ? eta -:--:-- 2025-12-05T22:29:38.6129121Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.9/1.9 MB 71.7 MB/s 0:00:00 2025-12-05T22:29:38.6129653Z [?25hInstalling collected packages: ethos-u-vela 2025-12-05T22:29:38.6130041Z Successfully installed ethos-u-vela-4.4.1 2025-12-05T22:29:38.6130373Z [Arm Setup/main] Setup complete 2025-12-05T22:29:38.6130715Z + source examples/arm/ethos-u-scratch/setup_path.sh 2025-12-05T22:29:38.6132054Z ++ 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:/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone300/models/Linux64_GCC-9.3 2025-12-05T22:29:38.6134374Z ++ 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:/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone300/models/Linux64_GCC-9.3 2025-12-05T22:29:38.6136999Z ++ 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:/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone300/models/Linux64_GCC-9.3:/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone320/models/Linux64_GCC-9.3 2025-12-05T22:29:38.6140186Z ++ 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:/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone300/models/Linux64_GCC-9.3:/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone320/models/Linux64_GCC-9.3 2025-12-05T22:29:38.6142137Z ++ export LD_LIBRARY_PATH=:/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone320/python/lib/ 2025-12-05T22:29:38.6142955Z ++ LD_LIBRARY_PATH=:/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone320/python/lib/ 2025-12-05T22:29:38.6143531Z ++ hash FVP_Corstone_SSE-300_Ethos-U55 2025-12-05T22:29:38.6143845Z ++ hash FVP_Corstone_SSE-300_Ethos-U65 2025-12-05T22:29:38.6144153Z ++ hash FVP_Corstone_SSE-320 2025-12-05T22:29:38.6146211Z ++ 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:/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone300/models/Linux64_GCC-9.3:/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone320/models/Linux64_GCC-9.3:/pytorch/executorch/examples/arm/ethos-u-scratch/arm-zephyr-eabi/bin 2025-12-05T22:29:38.6150046Z ++ 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:/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone300/models/Linux64_GCC-9.3:/pytorch/executorch/examples/arm/ethos-u-scratch/FVP-corstone320/models/Linux64_GCC-9.3:/pytorch/executorch/examples/arm/ethos-u-scratch/arm-zephyr-eabi/bin 2025-12-05T22:29:38.6152047Z + arm-zephyr-eabi-c++ --version 2025-12-05T22:29:38.6152376Z arm-zephyr-eabi-c++ (Zephyr SDK 0.17.2) 12.2.0 2025-12-05T22:29:38.6152749Z Copyright (C) 2022 Free Software Foundation, Inc. 2025-12-05T22:29:38.6153299Z This is free software; see the source for copying conditions. There is NO 2025-12-05T22:29:38.6153897Z warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 2025-12-05T22:29:38.6154261Z 2025-12-05T22:29:38.6154475Z ++ realpath examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake 2025-12-05T22:29:38.6155147Z + toolchain_cmake=/pytorch/executorch/examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake 2025-12-05T22:29:38.6155717Z + [[ zephyr-preset == \b\a\r\e\_\m\e\t\a\l ]] 2025-12-05T22:29:38.6156126Z + [[ zephyr-preset == \z\e\p\h\y\r\-\p\r\e\s\e\t ]] 2025-12-05T22:29:38.6156700Z + CXXFLAGS='-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0' 2025-12-05T22:29:38.6157778Z + cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . 2025-12-05T22:29:38.6158645Z Preset CMake variables: 2025-12-05T22:29:38.6158805Z 2025-12-05T22:29:38.6159167Z CMAKE_TOOLCHAIN_FILE="/pytorch/executorch/examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake" 2025-12-05T22:29:38.6159937Z EXECUTORCH_BUILD_PRESET_FILE="/pytorch/executorch/tools/cmake/preset/zephyr.cmake" 2025-12-05T22:29:38.6160332Z 2025-12-05T22:29:38.6160475Z -- The C compiler identification is GNU 12.2.0 2025-12-05T22:29:38.6160841Z -- The CXX compiler identification is GNU 12.2.0 2025-12-05T22:29:38.6161191Z -- Detecting C compiler ABI info 2025-12-05T22:29:38.6161488Z -- Detecting C compiler ABI info - done 2025-12-05T22:29:38.6162216Z -- Check for working C compiler: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc - skipped 2025-12-05T22:29:38.6162934Z -- Detecting C compile features 2025-12-05T22:29:38.6163292Z -- Detecting C compile features - done 2025-12-05T22:29:38.6163600Z -- Detecting CXX compiler ABI info 2025-12-05T22:29:38.6163918Z -- Detecting CXX compiler ABI info - done 2025-12-05T22:29:38.6164660Z -- Check for working CXX compiler: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-zephyr-eabi/bin/arm-zephyr-eabi-g++ - skipped 2025-12-05T22:29:38.6165446Z -- Detecting CXX compile features 2025-12-05T22:29:38.6165784Z -- Detecting CXX compile features - done 2025-12-05T22:29:38.6166243Z -- Loading build preset: /pytorch/executorch/tools/cmake/preset/zephyr.cmake 2025-12-05T22:29:38.6166744Z -- ccache not found, builds will not be cached 2025-12-05T22:29:38.6167235Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-12-05T22:29:38.6168099Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-12-05T22:29:38.6168772Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-12-05T22:29:38.6169207Z CMake. 2025-12-05T22:29:38.6169321Z 2025-12-05T22:29:38.6169563Z Update the VERSION argument value. Or, use the ... syntax 2025-12-05T22:29:38.6170128Z to tell CMake that the project requires at least but has been updated 2025-12-05T22:29:38.6170629Z to work with policies introduced by or earlier. 2025-12-05T22:29:38.6170891Z 2025-12-05T22:29:38.6170992Z  2025-12-05T22:29:38.6171209Z -- Looking for C++ include unistd.h 2025-12-05T22:29:38.6171525Z -- Looking for C++ include unistd.h - found 2025-12-05T22:29:38.6171862Z -- Looking for C++ include stdint.h 2025-12-05T22:29:38.6172186Z -- Looking for C++ include stdint.h - found 2025-12-05T22:29:38.6172511Z -- Looking for C++ include inttypes.h 2025-12-05T22:29:38.6172854Z -- Looking for C++ include inttypes.h - found 2025-12-05T22:29:38.6173186Z -- Looking for C++ include sys/types.h 2025-12-05T22:29:38.6173523Z -- Looking for C++ include sys/types.h - found 2025-12-05T22:29:38.6173853Z -- Looking for C++ include sys/stat.h 2025-12-05T22:29:38.6174187Z -- Looking for C++ include sys/stat.h - found 2025-12-05T22:29:38.6174509Z -- Looking for C++ include fnmatch.h 2025-12-05T22:29:38.6174834Z -- Looking for C++ include fnmatch.h - found 2025-12-05T22:29:38.6175213Z -- Looking for C++ include stddef.h 2025-12-05T22:29:38.6175520Z -- Looking for C++ include stddef.h - found 2025-12-05T22:29:38.6175844Z -- Check size of uint32_t 2025-12-05T22:29:38.6176100Z -- Check size of uint32_t - done 2025-12-05T22:29:38.6176378Z -- Looking for strtoll 2025-12-05T22:29:38.6176620Z -- Looking for strtoll - found 2025-12-05T22:29:38.6177257Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-12-05T22:29:38.6177959Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-12-05T22:29:38.6178390Z CMake. 2025-12-05T22:29:38.6178503Z 2025-12-05T22:29:38.6178738Z Update the VERSION argument value. Or, use the ... syntax 2025-12-05T22:29:38.6179298Z to tell CMake that the project requires at least but has been updated 2025-12-05T22:29:38.6179793Z to work with policies introduced by or earlier. 2025-12-05T22:29:38.6180053Z 2025-12-05T22:29:38.6180152Z  2025-12-05T22:29:38.6180439Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-12-05T22:29:38.6180893Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-12-05T22:29:38.6181341Z -- Setting GNU C compiler options with c11 and Posix 2025-12-05T22:29:38.6181719Z -- Disabling -pedantic for GCC >= 8.0 2025-12-05T22:29:38.6182182Z -- Disabling GNU C compiler warnings: -Wstringop-truncation -Wno-format-overflow 2025-12-05T22:29:38.6182655Z -- GCC_VERSION: 12.2.0 2025-12-05T22:29:38.6182805Z 2025-12-05T22:29:38.6183681Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -std=c11 -Wall -Wextra -Wno-stringop-truncation -Wno-format-overflow -Wno-misleading-indentation -DPORTABLE_POSIX_MEMALIGN=1 -Werror -Wno-unused-function -Wsign-conversion 2025-12-05T22:29:38.6185215Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-12-05T22:29:38.6185971Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-12-05T22:29:38.6186390Z CMake. 2025-12-05T22:29:38.6186500Z 2025-12-05T22:29:38.6186742Z Update the VERSION argument value. Or, use the ... syntax 2025-12-05T22:29:38.6187337Z to tell CMake that the project requires at least but has been updated 2025-12-05T22:29:38.6187831Z to work with policies introduced by or earlier. 2025-12-05T22:29:38.6188091Z 2025-12-05T22:29:38.6188190Z  2025-12-05T22:29:38.6188409Z -- Generating selected operator lib: 2025-12-05T22:29:38.6188835Z -- LIB_NAME: portable_ops_lib 2025-12-05T22:29:38.6189243Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-12-05T22:29:38.6189675Z -- ROOT_OPS: 2025-12-05T22:29:38.6189892Z -- INCLUDE_ALL_OPS: 2025-12-05T22:29:38.6190145Z -- OPS_FROM_MODEL: 2025-12-05T22:29:38.6190384Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:29:39.3943391Z 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-12-05T22:29:39.3945589Z -- Generating kernel bindings: 2025-12-05T22:29:39.3946113Z -- LIB_NAME: portable_ops_lib 2025-12-05T22:29:39.3946823Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-12-05T22:29:39.3947604Z -- CUSTOM_OPS_YAML: 2025-12-05T22:29:39.3948087Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-12-05T22:29:39.3948742Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:29:39.3952126Z 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-12-05T22:29:39.3954894Z -- Generating operator lib: 2025-12-05T22:29:39.3955387Z -- LIB_NAME: portable_ops_lib 2025-12-05T22:29:39.3955870Z -- KERNEL_LIBS: portable_kernels 2025-12-05T22:29:39.3956979Z -- DEPS: executorch_core 2025-12-05T22:29:39.3957441Z -- DTYPE_SELECTIVE_BUILD: 2025-12-05T22:29:39.3957953Z -- Looking for sys/mman.h 2025-12-05T22:29:39.3958467Z -- Looking for sys/mman.h - not found 2025-12-05T22:29:39.3959071Z -- --- Configured Options --- 2025-12-05T22:29:39.3959404Z 2025-12-05T22:29:39.3959632Z -- BUILD_TESTING : OFF 2025-12-05T22:29:39.3960403Z -- CCACHE_PROGRAM : CCACHE_PROGRAM-NOTFOUND 2025-12-05T22:29:39.3961331Z -- CMAKE_BUILD_TYPE : Release 2025-12-05T22:29:39.3961987Z -- CMAKE_CXX_COMPILER_ID : GNU 2025-12-05T22:29:39.3962624Z -- CMAKE_CXX_STANDARD : 17 2025-12-05T22:29:39.3963296Z -- CMAKE_SYSTEM_PROCESSOR : cortex-m55 2025-12-05T22:29:39.3964503Z -- CMAKE_TOOLCHAIN_FILE : /pytorch/executorch/examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake 2025-12-05T22:29:39.3965655Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-12-05T22:29:39.3966345Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-12-05T22:29:39.3967041Z -- EXECUTORCH_BUILD_COREML : OFF 2025-12-05T22:29:39.3967698Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-12-05T22:29:39.3968387Z -- EXECUTORCH_BUILD_CPUINFO : OFF 2025-12-05T22:29:39.3969105Z -- EXECUTORCH_BUILD_CUDA : OFF 2025-12-05T22:29:39.3969863Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-12-05T22:29:39.3970547Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : OFF 2025-12-05T22:29:39.3971303Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-12-05T22:29:39.3972054Z -- EXECUTORCH_BUILD_EXTENSION_ASR_RUNNER : OFF 2025-12-05T22:29:39.3972960Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : ON 2025-12-05T22:29:39.3973717Z -- EXECUTORCH_BUILD_EXTENSION_EVALUE_UTIL : OFF 2025-12-05T22:29:39.3974459Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : OFF 2025-12-05T22:29:39.3975204Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-12-05T22:29:39.3976058Z -- EXECUTORCH_BUILD_EXTENSION_LLM_APPLE : OFF 2025-12-05T22:29:39.3976815Z -- EXECUTORCH_BUILD_EXTENSION_LLM_RUNNER : OFF 2025-12-05T22:29:39.3977550Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : OFF 2025-12-05T22:29:39.3978293Z -- EXECUTORCH_BUILD_EXTENSION_NAMED_DATA_MAP : OFF 2025-12-05T22:29:39.3979055Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : OFF 2025-12-05T22:29:39.3979786Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : OFF 2025-12-05T22:29:39.3980482Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-12-05T22:29:39.3981164Z -- EXECUTORCH_BUILD_KERNELS_LLM : OFF 2025-12-05T22:29:39.3981859Z -- EXECUTORCH_BUILD_KERNELS_LLM_AOT : OFF 2025-12-05T22:29:39.3982553Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : OFF 2025-12-05T22:29:39.3983267Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : OFF 2025-12-05T22:29:39.3983973Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : OFF 2025-12-05T22:29:39.3984618Z -- EXECUTORCH_BUILD_METAL : OFF 2025-12-05T22:29:39.3985276Z -- EXECUTORCH_BUILD_MPS : OFF 2025-12-05T22:29:39.3985936Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-12-05T22:29:39.3986616Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-12-05T22:29:39.3987291Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-12-05T22:29:39.3988224Z -- EXECUTORCH_BUILD_PRESET_FILE : /pytorch/executorch/tools/cmake/preset/zephyr.cmake 2025-12-05T22:29:39.3989370Z -- EXECUTORCH_BUILD_PTHREADPOOL : OFF 2025-12-05T22:29:39.3990080Z -- EXECUTORCH_BUILD_PYBIND : OFF 2025-12-05T22:29:39.3990789Z -- EXECUTORCH_BUILD_QNN : OFF 2025-12-05T22:29:39.3991486Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-12-05T22:29:39.3992196Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-12-05T22:29:39.3993021Z -- EXECUTORCH_BUILD_TOKENIZERS_WASM : OFF 2025-12-05T22:29:39.3993745Z -- EXECUTORCH_BUILD_VGF : OFF 2025-12-05T22:29:39.3994444Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-12-05T22:29:39.3995148Z -- EXECUTORCH_BUILD_WASM : OFF 2025-12-05T22:29:39.3995854Z -- EXECUTORCH_BUILD_WHEEL_DO_NOT_USE : FALSE 2025-12-05T22:29:39.3996580Z -- EXECUTORCH_BUILD_XNNPACK : OFF 2025-12-05T22:29:39.3997285Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-12-05T22:29:39.3998084Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-12-05T22:29:39.3998814Z -- EXECUTORCH_ENABLE_BUNDLE_IO : OFF 2025-12-05T22:29:39.3999547Z -- EXECUTORCH_ENABLE_DTYPE_SELECTIVE_BUILD : FALSE 2025-12-05T22:29:39.4000312Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-12-05T22:29:39.4001024Z -- EXECUTORCH_ENABLE_LOGGING : OFF 2025-12-05T22:29:39.4001709Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-12-05T22:29:39.4002475Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-12-05T22:29:39.4003203Z -- EXECUTORCH_LOG_LEVEL : Info 2025-12-05T22:29:39.4003854Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-12-05T22:29:39.4004465Z -- EXECUTORCH_OPTIMIZE_SIZE : ON 2025-12-05T22:29:39.4005109Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-12-05T22:29:39.4006079Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-12-05T22:29:39.4007066Z -- EXECUTORCH_SELECT_OPS_LIST : 2025-12-05T22:29:39.4007720Z -- EXECUTORCH_SELECT_OPS_MODEL : 2025-12-05T22:29:39.4008328Z -- EXECUTORCH_SELECT_OPS_YAML : 2025-12-05T22:29:39.4009081Z -- EXECUTORCH_THREADPOOL_USE_ALL_LOGICAL_CORES : OFF 2025-12-05T22:29:39.4009782Z -- EXECUTORCH_THREADPOOL_USE_PERFORMANCE_CORES : OFF 2025-12-05T22:29:39.4010486Z -- EXECUTORCH_USE_CPP_CODE_COVERAGE : OFF 2025-12-05T22:29:39.4011153Z -- EXECUTORCH_USE_DL : ON 2025-12-05T22:29:39.4011935Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : ON 2025-12-05T22:29:39.4012694Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-12-05T22:29:39.4013423Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-12-05T22:29:39.4014137Z -- PYTHON_EXECUTABLE : python 2025-12-05T22:29:39.4014772Z -- -------------------------- 2025-12-05T22:29:39.4015280Z -- Configuring done (1.9s) 2025-12-05T22:29:39.4015773Z -- Generating done (0.1s) 2025-12-05T22:29:39.4016452Z -- Build files have been written to: /pytorch/executorch/cmake-out 2025-12-05T22:29:39.4017368Z + cmake --build cmake-out -j9 --target install --config Release 2025-12-05T22:29:39.4018807Z [ 0%] Creating directories for 'flatcc_ep' 2025-12-05T22:29:39.4020107Z [ 0%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.obj 2025-12-05T22:29:39.4021447Z [ 0%] Creating directories for 'flatbuffers_ep' 2025-12-05T22:29:39.4022926Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.obj 2025-12-05T22:29:39.4024839Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.obj 2025-12-05T22:29:39.4026169Z [ 2%] No download step for 'flatcc_ep' 2025-12-05T22:29:39.4026952Z [ 3%] No download step for 'flatbuffers_ep' 2025-12-05T22:29:39.4027693Z [ 3%] No update step for 'flatcc_ep' 2025-12-05T22:29:39.4028398Z [ 3%] No update step for 'flatbuffers_ep' 2025-12-05T22:29:39.4029209Z [ 4%] No patch step for 'flatcc_ep' 2025-12-05T22:29:39.4029926Z [ 5%] No patch step for 'flatbuffers_ep' 2025-12-05T22:29:39.4030683Z [ 5%] Performing configure step for 'flatcc_ep' 2025-12-05T22:29:39.4031787Z [ 5%] Performing configure step for 'flatbuffers_ep' 2025-12-05T22:29:39.4032457Z CMake Warning: 2025-12-05T22:29:39.4032963Z Ignoring empty string ("") provided on the command line. 2025-12-05T22:29:39.4033481Z 2025-12-05T22:29:39.4033643Z  2025-12-05T22:29:39.4034036Z CMake Warning: 2025-12-05T22:29:39.4034551Z Ignoring empty string ("") provided on the command line. 2025-12-05T22:29:39.4035022Z 2025-12-05T22:29:39.4035182Z  2025-12-05T22:29:39.4035957Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-12-05T22:29:39.4037090Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-12-05T22:29:39.4037729Z CMake. 2025-12-05T22:29:39.4037892Z 2025-12-05T22:29:39.4038250Z Update the VERSION argument value. Or, use the ... syntax 2025-12-05T22:29:39.4039195Z to tell CMake that the project requires at least but has been updated 2025-12-05T22:29:39.4040005Z to work with policies introduced by or earlier. 2025-12-05T22:29:39.4040399Z 2025-12-05T22:29:39.4040627Z  2025-12-05T22:29:39.4041003Z fatal: No names found, cannot describe anything. 2025-12-05T22:29:39.4041795Z CMake Warning at CMake/Version.cmake:32 (message): 2025-12-05T22:29:39.4042469Z git describe failed with exit code: 128 2025-12-05T22:29:39.4042840Z 2025-12-05T22:29:39.4043126Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-12-05T22:29:39.4043799Z Call Stack (most recent call first): 2025-12-05T22:29:39.4044289Z CMakeLists.txt:5 (include) 2025-12-05T22:29:39.4044623Z 2025-12-05T22:29:39.4044843Z  2025-12-05T22:29:39.4045191Z -- Proceeding with version: 24.3.25.0 2025-12-05T22:29:39.4045769Z -- The C compiler identification is Clang 12.0.1 2025-12-05T22:29:39.4046360Z -- Detecting C compiler ABI info 2025-12-05T22:29:39.4047038Z -- The CXX compiler identification is Clang 12.0.1 2025-12-05T22:29:39.4047656Z -- Detecting CXX compiler ABI info 2025-12-05T22:29:39.4048168Z -- Detecting C compiler ABI info - done 2025-12-05T22:29:39.4049108Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-12-05T22:29:39.4050079Z -- Detecting C compile features 2025-12-05T22:29:39.4050642Z -- Detecting C compile features - done 2025-12-05T22:29:39.4051324Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-12-05T22:29:39.4052208Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-12-05T22:29:39.4052990Z -- Setting Clang compiler options 2025-12-05T22:29:39.4054307Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-12-05T22:29:39.4055653Z -- Configuring done (0.3s) 2025-12-05T22:29:39.4056129Z -- Generating done (0.0s) 2025-12-05T22:29:39.4056695Z CMake Warning: 2025-12-05T22:29:39.4057297Z Manually-specified variables were not used by the project: 2025-12-05T22:29:39.4057877Z 2025-12-05T22:29:39.4058056Z CMAKE_POLICY_VERSION_MINIMUM 2025-12-05T22:29:39.4058423Z 2025-12-05T22:29:39.4058610Z  2025-12-05T22:29:39.4059321Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatcc_ep/src/build 2025-12-05T22:29:39.4060515Z [ 5%] Performing build step for 'flatcc_ep' 2025-12-05T22:29:39.4061523Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-12-05T22:29:40.3003384Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-12-05T22:29:40.3004757Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-12-05T22:29:40.3006270Z [ 12%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-12-05T22:29:40.3007738Z [ 15%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-12-05T22:29:40.3008676Z -- Detecting CXX compiler ABI info - done 2025-12-05T22:29:40.3009885Z [ 18%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-12-05T22:29:40.3011264Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-12-05T22:29:40.3011992Z -- Detecting CXX compile features 2025-12-05T22:29:40.3012557Z -- Detecting CXX compile features - done 2025-12-05T22:29:40.3013622Z [ 21%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-12-05T22:29:40.3014508Z -- Looking for strtof_l 2025-12-05T22:29:40.3015452Z [ 24%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-12-05T22:29:40.3017091Z [ 27%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-12-05T22:29:40.3018874Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-12-05T22:29:40.3020415Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-12-05T22:29:40.3021966Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-12-05T22:29:40.3023599Z [ 39%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-12-05T22:29:40.3025163Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-12-05T22:29:40.3026549Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-12-05T22:29:40.3027341Z [ 45%] Built target flatccrt 2025-12-05T22:29:40.3028177Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-12-05T22:29:40.3029528Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-12-05T22:29:40.3030798Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-12-05T22:29:40.3032011Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-12-05T22:29:40.3033428Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-12-05T22:29:40.3034818Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-12-05T22:29:40.3035743Z -- Looking for strtof_l - found 2025-12-05T22:29:40.3036399Z -- Looking for strtoull_l 2025-12-05T22:29:40.3037382Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-12-05T22:29:40.3038803Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-12-05T22:29:40.3040138Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-12-05T22:29:40.3041637Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-12-05T22:29:40.3043039Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-12-05T22:29:40.3044411Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-12-05T22:29:40.3045739Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-12-05T22:29:40.3047040Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-12-05T22:29:40.3048357Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-12-05T22:29:40.3049818Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-12-05T22:29:40.3050746Z -- Looking for strtoull_l - found 2025-12-05T22:29:40.3051250Z -- Looking for realpath 2025-12-05T22:29:40.3051679Z [ 93%] Built target flatcc 2025-12-05T22:29:40.3052549Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-12-05T22:29:40.3053830Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-12-05T22:29:40.3054697Z [100%] Built target flatcc_cli 2025-12-05T22:29:40.3055223Z -- Looking for realpath - found 2025-12-05T22:29:40.3055785Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-12-05T22:29:40.3056426Z -- Configuring done (1.2s) 2025-12-05T22:29:40.3057271Z [ 5%] Performing install step for 'flatcc_ep' 2025-12-05T22:29:40.3057904Z -- Generating done (0.0s) 2025-12-05T22:29:40.3058771Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatc_ep/src/build 2025-12-05T22:29:40.3060009Z [ 5%] Performing build step for 'flatbuffers_ep' 2025-12-05T22:29:40.3060637Z [ 21%] Built target flatccrt 2025-12-05T22:29:40.3061095Z [ 93%] Built target flatcc 2025-12-05T22:29:40.3061540Z [100%] Built target flatcc_cli 2025-12-05T22:29:40.3062501Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-12-05T22:29:40.3063601Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-12-05T22:29:40.3064605Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-12-05T22:29:40.3065727Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-12-05T22:29:40.3066812Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-12-05T22:29:40.3067971Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-12-05T22:29:40.3069324Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-12-05T22:29:40.3070266Z Install the project... 2025-12-05T22:29:40.3070796Z -- Install configuration: "" 2025-12-05T22:29:40.3071595Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc 2025-12-05T22:29:40.3072900Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc.h 2025-12-05T22:29:40.3074362Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_accessors.h 2025-12-05T22:29:40.3075837Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_alloc.h 2025-12-05T22:29:40.3077419Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_assert.h 2025-12-05T22:29:40.3078913Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_builder.h 2025-12-05T22:29:40.3080528Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_emitter.h 2025-12-05T22:29:40.3082033Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_endian.h 2025-12-05T22:29:40.3083464Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_epilogue.h 2025-12-05T22:29:40.3084989Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_flatbuffers.h 2025-12-05T22:29:40.3086526Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_identifier.h 2025-12-05T22:29:40.3088010Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_iov.h 2025-12-05T22:29:40.3089497Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_json_parser.h 2025-12-05T22:29:40.3091050Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_json_printer.h 2025-12-05T22:29:40.3092536Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_portable.h 2025-12-05T22:29:40.3093871Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_prologue.h 2025-12-05T22:29:40.3095202Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_refmap.h 2025-12-05T22:29:40.3096588Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_rtconfig.h 2025-12-05T22:29:40.3097971Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_types.h 2025-12-05T22:29:40.3099339Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_unaligned.h 2025-12-05T22:29:40.3100894Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_verifier.h 2025-12-05T22:29:40.3102456Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/flatcc_version.h 2025-12-05T22:29:40.3103803Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable 2025-12-05T22:29:40.3105146Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/LICENSE 2025-12-05T22:29:40.3106655Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/README.md 2025-12-05T22:29:40.3108339Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/grisu3_math.h 2025-12-05T22:29:40.3110083Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/grisu3_parse.h 2025-12-05T22:29:40.3111646Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/grisu3_print.h 2025-12-05T22:29:40.3113189Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include 2025-12-05T22:29:40.3114754Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/README 2025-12-05T22:29:40.3116318Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/linux 2025-12-05T22:29:40.3117905Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/linux/endian.h 2025-12-05T22:29:40.3119619Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/std 2025-12-05T22:29:40.3121102Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/std/inttypes.h 2025-12-05T22:29:40.3122794Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/std/stdalign.h 2025-12-05T22:29:40.3124794Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/std/stdbool.h 2025-12-05T22:29:40.3126525Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/include/std/stdint.h 2025-12-05T22:29:42.7628942Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/paligned_alloc.h 2025-12-05T22:29:42.7630475Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pattributes.h 2025-12-05T22:29:42.7631448Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pbase64.h 2025-12-05T22:29:42.7632596Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pcrt.h 2025-12-05T22:29:42.7633835Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pdiagnostic.h 2025-12-05T22:29:42.7634915Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pdiagnostic_pop.h 2025-12-05T22:29:42.7635967Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pdiagnostic_push.h 2025-12-05T22:29:42.7637023Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pendian.h 2025-12-05T22:29:42.7638098Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pendian_detect.h 2025-12-05T22:29:42.7639106Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pinline.h 2025-12-05T22:29:42.7640312Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pinttypes.h 2025-12-05T22:29:42.7641309Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pmemaccess.h 2025-12-05T22:29:42.7642444Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/portable.h 2025-12-05T22:29:42.7643579Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/portable_basic.h 2025-12-05T22:29:42.7644580Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pparsefp.h 2025-12-05T22:29:42.7645741Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pparseint.h 2025-12-05T22:29:42.7646693Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pprintfp.h 2025-12-05T22:29:42.7647684Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pprintint.h 2025-12-05T22:29:42.7648651Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/prestrict.h 2025-12-05T22:29:42.7649852Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pstatic_assert.h 2025-12-05T22:29:42.7651050Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pstatic_assert_scope.h 2025-12-05T22:29:42.7652170Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pstdalign.h 2025-12-05T22:29:42.7653198Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pstdbool.h 2025-12-05T22:29:42.7654254Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pstdint.h 2025-12-05T22:29:42.7655271Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/punaligned.h 2025-12-05T22:29:42.7656324Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pversion.h 2025-12-05T22:29:42.7657379Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/portable/pwarnings.h 2025-12-05T22:29:42.7658235Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/reflection 2025-12-05T22:29:42.7659206Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/reflection/README 2025-12-05T22:29:42.7660527Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/reflection/flatbuffers_common_builder.h 2025-12-05T22:29:42.7661910Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/reflection/flatbuffers_common_reader.h 2025-12-05T22:29:42.7662987Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/reflection/reflection_builder.h 2025-12-05T22:29:42.7663936Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/reflection/reflection_reader.h 2025-12-05T22:29:42.7664906Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/reflection/reflection_verifier.h 2025-12-05T22:29:42.7665767Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/support 2025-12-05T22:29:42.7666519Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/support/README 2025-12-05T22:29:42.7667326Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/support/cdump.h 2025-12-05T22:29:42.7668142Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/support/elapsed.h 2025-12-05T22:29:42.7669034Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/support/hexdump.h 2025-12-05T22:29:42.7669870Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/include/flatcc/support/readfile.h 2025-12-05T22:29:42.7670626Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/lib/libflatccrt.a 2025-12-05T22:29:42.7671311Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/lib/libflatcc.a 2025-12-05T22:29:42.7671953Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_ep/bin/flatcc 2025-12-05T22:29:42.7672724Z [ 6%] Completed 'flatcc_ep' 2025-12-05T22:29:42.7673117Z [ 6%] Built target flatcc_ep 2025-12-05T22:29:42.7673676Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-12-05T22:29:42.7674358Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-12-05T22:29:42.7675097Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-12-05T22:29:42.7675776Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-12-05T22:29:42.7676413Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-12-05T22:29:42.7677212Z [ 6%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.obj 2025-12-05T22:29:42.7677976Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-12-05T22:29:42.7678642Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-12-05T22:29:42.7679428Z [ 7%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.obj 2025-12-05T22:29:42.7680202Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-12-05T22:29:42.7680883Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-12-05T22:29:42.7681673Z [ 7%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.obj 2025-12-05T22:29:42.7682443Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-12-05T22:29:42.7683093Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-12-05T22:29:42.7683863Z [ 8%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.obj 2025-12-05T22:29:42.7684632Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-12-05T22:29:42.7685427Z [ 8%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.obj 2025-12-05T22:29:42.7686372Z [ 8%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.obj 2025-12-05T22:29:42.7687149Z [ 8%] Linking CXX static library libgflags_nothreads.a 2025-12-05T22:29:42.7687778Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-12-05T22:29:42.7688283Z [ 8%] Built target gflags_nothreads_static 2025-12-05T22:29:42.7688838Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-12-05T22:29:42.7689588Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-12-05T22:29:42.7690338Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-12-05T22:29:42.7691016Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-12-05T22:29:42.7691661Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-12-05T22:29:42.7692267Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-12-05T22:29:42.7692939Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-12-05T22:29:42.7693668Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-12-05T22:29:42.7694388Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-12-05T22:29:42.7695047Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-12-05T22:29:42.7695712Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-12-05T22:29:42.7696461Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-12-05T22:29:42.7697239Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-12-05T22:29:42.7698035Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-12-05T22:29:42.7698851Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-12-05T22:29:42.7699657Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-12-05T22:29:42.7700450Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-12-05T22:29:42.7701062Z [100%] Linking CXX executable flatc 2025-12-05T22:29:42.7701400Z [100%] Built target flatc 2025-12-05T22:29:42.7701790Z [ 8%] Performing install step for 'flatbuffers_ep' 2025-12-05T22:29:42.7702172Z [100%] Built target flatc 2025-12-05T22:29:42.7702486Z Install the project... 2025-12-05T22:29:42.7702765Z -- Install configuration: "" 2025-12-05T22:29:42.7703252Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers 2025-12-05T22:29:42.7704038Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/allocator.h 2025-12-05T22:29:45.2107906Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/array.h 2025-12-05T22:29:45.2109422Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/base.h 2025-12-05T22:29:45.2110900Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/buffer.h 2025-12-05T22:29:45.2112428Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/buffer_ref.h 2025-12-05T22:29:45.2113957Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/code_generator.h 2025-12-05T22:29:45.2115475Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/code_generators.h 2025-12-05T22:29:45.2117111Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/default_allocator.h 2025-12-05T22:29:45.2118794Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/detached_buffer.h 2025-12-05T22:29:45.2120319Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/file_manager.h 2025-12-05T22:29:45.2122147Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/flatbuffer_builder.h 2025-12-05T22:29:45.2123827Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/flatbuffers.h 2025-12-05T22:29:45.2125211Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/flatc.h 2025-12-05T22:29:45.2126878Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/flex_flat_util.h 2025-12-05T22:29:45.2128526Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/flexbuffers.h 2025-12-05T22:29:45.2130119Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/grpc.h 2025-12-05T22:29:45.2131646Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/hash.h 2025-12-05T22:29:45.2133090Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/idl.h 2025-12-05T22:29:45.2134484Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/minireflect.h 2025-12-05T22:29:45.2135864Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/pch 2025-12-05T22:29:45.2137383Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/pch/flatc_pch.h 2025-12-05T22:29:45.2138881Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/pch/pch.h 2025-12-05T22:29:45.2140402Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/reflection.h 2025-12-05T22:29:45.2142034Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/reflection_generated.h 2025-12-05T22:29:45.2143645Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/registry.h 2025-12-05T22:29:45.2145193Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/stl_emulation.h 2025-12-05T22:29:45.2146908Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/string.h 2025-12-05T22:29:45.2148348Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/struct.h 2025-12-05T22:29:45.2149989Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/table.h 2025-12-05T22:29:45.2151408Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/util.h 2025-12-05T22:29:45.2152867Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/vector.h 2025-12-05T22:29:45.2154418Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/vector_downward.h 2025-12-05T22:29:45.2156077Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/include/flatbuffers/verifier.h 2025-12-05T22:29:45.2157725Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/lib/cmake/flatbuffers/flatbuffers-config.cmake 2025-12-05T22:29:45.2175442Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/lib/cmake/flatbuffers/BuildFlatBuffers.cmake 2025-12-05T22:29:45.2177268Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/lib/cmake/flatbuffers/flatbuffers-config-version.cmake 2025-12-05T22:29:45.2178728Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/bin/flatc 2025-12-05T22:29:45.2180009Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/lib/cmake/flatbuffers/FlatcTargets.cmake 2025-12-05T22:29:45.2181665Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatc_ep/lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake 2025-12-05T22:29:45.2183244Z [ 9%] Completed 'flatbuffers_ep' 2025-12-05T22:29:45.2183809Z [ 9%] Built target flatbuffers_ep 2025-12-05T22:29:45.2184484Z [ 9%] Generating common_schema headers 2025-12-05T22:29:45.2185088Z [ 9%] Built target common_schema 2025-12-05T22:29:45.2185756Z [ 10%] Generating program_schema headers 2025-12-05T22:29:45.2186450Z [ 10%] Built target program_schema 2025-12-05T22:29:45.2187561Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.obj 2025-12-05T22:29:45.2189174Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.obj 2025-12-05T22:29:45.2191081Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.obj 2025-12-05T22:29:45.2193112Z [ 12%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.obj 2025-12-05T22:29:45.2195029Z [ 12%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.obj 2025-12-05T22:29:45.2196543Z [ 13%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.obj 2025-12-05T22:29:45.2198000Z [ 13%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.obj 2025-12-05T22:29:45.2199578Z [ 13%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.obj 2025-12-05T22:29:45.2201146Z [ 14%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.obj 2025-12-05T22:29:45.2202720Z [ 14%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.obj 2025-12-05T22:29:45.2204228Z [ 15%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-12-05T22:29:45.2205194Z [ 15%] Built target flatccrt 2025-12-05T22:29:45.2206254Z [ 15%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.obj 2025-12-05T22:29:45.2208531Z [ 16%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.obj 2025-12-05T22:29:45.2210379Z [ 16%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.obj 2025-12-05T22:29:45.2212077Z [ 16%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.obj 2025-12-05T22:29:45.2213679Z [ 17%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.obj 2025-12-05T22:29:45.2215301Z [ 17%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.obj 2025-12-05T22:29:45.2216751Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.obj 2025-12-05T22:29:45.2218569Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.obj 2025-12-05T22:29:45.2220400Z [ 18%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.obj 2025-12-05T22:29:45.2222021Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.obj 2025-12-05T22:29:45.2223908Z [ 19%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.obj 2025-12-05T22:29:45.2230280Z /pytorch/executorch/runtime/executor/tensor_parser_exec_aten.cpp: In function 'executorch::runtime::Result executorch::runtime::deserialization::{anonymous}::getMemPlannedPtr(const executorch_flatbuffer::AllocationDetails*, size_t, executorch::runtime::HierarchicalAllocator*)': 2025-12-05T22:29:45.2234447Z /pytorch/executorch/runtime/executor/tensor_parser_exec_aten.cpp:66:62: warning: left shift count >= width of type [-Wshift-count-overflow] 2025-12-05T22:29:45.2236497Z 66 | memory_offset |= static_cast(memory_offset_high) << 32; 2025-12-05T22:29:45.2237572Z | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~ 2025-12-05T22:29:45.2238486Z [ 19%] Linking CXX static library libexecutorch_core.a 2025-12-05T22:29:45.2239242Z [ 19%] Built target executorch_core 2025-12-05T22:29:45.2240371Z [ 19%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.obj 2025-12-05T22:29:45.2253519Z [ 20%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.obj 2025-12-05T22:29:45.2255191Z [ 20%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.obj 2025-12-05T22:29:45.2257211Z [ 21%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.obj 2025-12-05T22:29:45.2259322Z [ 22%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.obj 2025-12-05T22:29:45.2261494Z [ 22%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.obj 2025-12-05T22:29:45.2263599Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.obj 2025-12-05T22:29:45.2265602Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/arange_util.cpp.obj 2025-12-05T22:29:58.6159392Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.obj 2025-12-05T22:29:58.6160990Z [ 23%] Linking CXX static library libextension_data_loader.a 2025-12-05T22:29:58.6161830Z [ 23%] Built target extension_data_loader 2025-12-05T22:29:58.6163338Z [ 23%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.obj 2025-12-05T22:29:58.6165476Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.obj 2025-12-05T22:29:58.6167599Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.obj 2025-12-05T22:29:58.6169694Z [ 24%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.obj 2025-12-05T22:29:58.6171825Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.obj 2025-12-05T22:29:58.6174238Z [ 25%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.obj 2025-12-05T22:29:58.6176467Z [ 26%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.obj 2025-12-05T22:29:58.6178029Z [ 26%] Linking CXX static library libexecutorch.a 2025-12-05T22:29:58.6179573Z [ 26%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.obj 2025-12-05T22:29:58.6180820Z [ 26%] Built target executorch 2025-12-05T22:29:58.6182313Z [ 26%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.obj 2025-12-05T22:29:58.6184336Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.obj 2025-12-05T22:29:58.6186552Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.obj 2025-12-05T22:29:58.6188797Z [ 27%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.obj 2025-12-05T22:29:58.6190932Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.obj 2025-12-05T22:29:58.6192557Z [ 28%] Linking CXX static library libkernels_util_all_deps.a 2025-12-05T22:29:58.6193369Z [ 28%] Built target kernels_util_all_deps 2025-12-05T22:29:58.6194722Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__clone_dim_order.cpp.obj 2025-12-05T22:29:58.6196751Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__empty_dim_order.cpp.obj 2025-12-05T22:29:58.6198788Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.obj 2025-12-05T22:29:58.6200873Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acos.cpp.obj 2025-12-05T22:29:58.6202644Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_abs.cpp.obj 2025-12-05T22:29:58.6204464Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acosh.cpp.obj 2025-12-05T22:29:58.6206062Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_addmm.cpp.obj 2025-12-05T22:29:58.6207483Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_alias_copy.cpp.obj 2025-12-05T22:29:58.6209169Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_add.cpp.obj 2025-12-05T22:29:58.6210983Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_allclose.cpp.obj 2025-12-05T22:29:58.6212899Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amax.cpp.obj 2025-12-05T22:29:58.6214690Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amin.cpp.obj 2025-12-05T22:29:58.6216445Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_any.cpp.obj 2025-12-05T22:29:58.6218436Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_arange.cpp.obj 2025-12-05T22:29:58.6220152Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmax.cpp.obj 2025-12-05T22:29:58.6221996Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmin.cpp.obj 2025-12-05T22:29:58.6223957Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_as_strided_copy.cpp.obj 2025-12-05T22:29:58.6225826Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asin.cpp.obj 2025-12-05T22:29:58.6227463Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asinh.cpp.obj 2025-12-05T22:29:58.6229351Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan.cpp.obj 2025-12-05T22:29:58.6230974Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan2.cpp.obj 2025-12-05T22:29:58.6232579Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atanh.cpp.obj 2025-12-05T22:29:58.6234244Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_and.cpp.obj 2025-12-05T22:29:58.6236136Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_avg_pool2d.cpp.obj 2025-12-05T22:29:58.6237805Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_not.cpp.obj 2025-12-05T22:29:58.6239474Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_or.cpp.obj 2025-12-05T22:29:58.6241174Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_xor.cpp.obj 2025-12-05T22:29:58.6242794Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bmm.cpp.obj 2025-12-05T22:29:58.6244378Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cat.cpp.obj 2025-12-05T22:29:58.6246032Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cdist_forward.cpp.obj 2025-12-05T22:29:58.6247695Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ceil.cpp.obj 2025-12-05T22:29:58.6249285Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clamp.cpp.obj 2025-12-05T22:29:58.6250873Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clone.cpp.obj 2025-12-05T22:29:58.6252712Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_constant_pad_nd.cpp.obj 2025-12-05T22:29:58.6254435Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution.cpp.obj 2025-12-05T22:29:58.6256350Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution_backward.cpp.obj 2025-12-05T22:29:58.6258047Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_copy.cpp.obj 2025-12-05T22:29:58.6259808Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cos.cpp.obj 2025-12-05T22:29:58.6261546Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cosh.cpp.obj 2025-12-05T22:29:58.6263315Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cumsum.cpp.obj 2025-12-05T22:29:58.6265137Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_detach_copy.cpp.obj 2025-12-05T22:29:58.6267066Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_diagonal_copy.cpp.obj 2025-12-05T22:29:58.6268999Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_elu.cpp.obj 2025-12-05T22:29:58.6270711Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_div.cpp.obj 2025-12-05T22:29:58.6272502Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_embedding.cpp.obj 2025-12-05T22:29:58.6274368Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_empty.cpp.obj 2025-12-05T22:29:58.6276129Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_eq.cpp.obj 2025-12-05T22:29:58.6277866Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_erf.cpp.obj 2025-12-05T22:29:58.6279627Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_exp.cpp.obj 2025-12-05T22:29:58.6281526Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expand_copy.cpp.obj 2025-12-05T22:29:58.6283340Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expm1.cpp.obj 2025-12-05T22:29:58.6285131Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fill.cpp.obj 2025-12-05T22:29:58.6286920Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_flip.cpp.obj 2025-12-05T22:29:58.6288577Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor.cpp.obj 2025-12-05T22:29:58.6290208Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor_divide.cpp.obj 2025-12-05T22:29:58.6291994Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fmod.cpp.obj 2025-12-05T22:29:58.6293634Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full.cpp.obj 2025-12-05T22:30:14.7457581Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full_like.cpp.obj 2025-12-05T22:30:14.7459491Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gather.cpp.obj 2025-12-05T22:30:14.7461136Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ge.cpp.obj 2025-12-05T22:30:14.7462758Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gelu.cpp.obj 2025-12-05T22:30:14.7464493Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_glu.cpp.obj 2025-12-05T22:30:14.7466237Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_grid_sampler_2d.cpp.obj 2025-12-05T22:30:14.7468301Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gt.cpp.obj 2025-12-05T22:30:14.7470125Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_hardtanh.cpp.obj 2025-12-05T22:30:14.7472034Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index.cpp.obj 2025-12-05T22:30:14.7473781Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_put.cpp.obj 2025-12-05T22:30:14.7475589Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_select.cpp.obj 2025-12-05T22:30:14.7477374Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isinf.cpp.obj 2025-12-05T22:30:14.7479044Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isnan.cpp.obj 2025-12-05T22:30:14.7480724Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_le.cpp.obj 2025-12-05T22:30:14.7482384Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_leaky_relu.cpp.obj 2025-12-05T22:30:14.7484165Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.obj 2025-12-05T22:30:14.7486087Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_linear_scratch_example.cpp.obj 2025-12-05T22:30:14.7487932Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log.cpp.obj 2025-12-05T22:30:14.7489631Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log10.cpp.obj 2025-12-05T22:30:14.7491352Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log1p.cpp.obj 2025-12-05T22:30:14.7493051Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log2.cpp.obj 2025-12-05T22:30:14.7494805Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log_softmax.cpp.obj 2025-12-05T22:30:14.7496864Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_and.cpp.obj 2025-12-05T22:30:14.7498754Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_not.cpp.obj 2025-12-05T22:30:14.7500505Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_or.cpp.obj 2025-12-05T22:30:14.7502306Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_xor.cpp.obj 2025-12-05T22:30:14.7504221Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logit.cpp.obj 2025-12-05T22:30:14.7505948Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lt.cpp.obj 2025-12-05T22:30:14.7507688Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_fill.cpp.obj 2025-12-05T22:30:14.7509653Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_scatter.cpp.obj 2025-12-05T22:30:14.7511544Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_select.cpp.obj 2025-12-05T22:30:14.7513309Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max.cpp.obj 2025-12-05T22:30:14.7515173Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.obj 2025-12-05T22:30:14.7517310Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.obj 2025-12-05T22:30:14.7519506Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_maximum.cpp.obj 2025-12-05T22:30:14.7521410Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mean.cpp.obj 2025-12-05T22:30:14.7523091Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_min.cpp.obj 2025-12-05T22:30:14.7524803Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_minimum.cpp.obj 2025-12-05T22:30:14.7526648Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mm.cpp.obj 2025-12-05T22:30:14.7528309Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mul.cpp.obj 2025-12-05T22:30:14.7530064Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_narrow_copy.cpp.obj 2025-12-05T22:30:14.7531949Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_batch_norm.cpp.obj 2025-12-05T22:30:14.7533873Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_dropout.cpp.obj 2025-12-05T22:30:14.7535790Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_group_norm.cpp.obj 2025-12-05T22:30:14.7537708Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_layer_norm.cpp.obj 2025-12-05T22:30:14.7539493Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ne.cpp.obj 2025-12-05T22:30:14.7541104Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_neg.cpp.obj 2025-12-05T22:30:14.7542799Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_nonzero.cpp.obj 2025-12-05T22:30:14.7544532Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ones.cpp.obj 2025-12-05T22:30:14.7546311Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pdist_forward.cpp.obj 2025-12-05T22:30:14.7548172Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_permute_copy.cpp.obj 2025-12-05T22:30:14.7550235Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_shuffle.cpp.obj 2025-12-05T22:30:14.7552118Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.obj 2025-12-05T22:30:14.7553847Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pow.cpp.obj 2025-12-05T22:30:14.7555489Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_prod.cpp.obj 2025-12-05T22:30:14.7557249Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rand.cpp.obj 2025-12-05T22:30:14.7558956Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_randn.cpp.obj 2025-12-05T22:30:14.7560734Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reciprocal.cpp.obj 2025-12-05T22:30:14.7562610Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad1d.cpp.obj 2025-12-05T22:30:14.7564529Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad2d.cpp.obj 2025-12-05T22:30:14.7566482Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad3d.cpp.obj 2025-12-05T22:30:14.7568226Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_relu.cpp.obj 2025-12-05T22:30:14.7569994Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_remainder.cpp.obj 2025-12-05T22:30:14.7571796Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat.cpp.obj 2025-12-05T22:30:14.7573635Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat_interleave.cpp.obj 2025-12-05T22:30:14.7575730Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad1d.cpp.obj 2025-12-05T22:30:14.7577681Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad2d.cpp.obj 2025-12-05T22:30:14.7579738Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad3d.cpp.obj 2025-12-05T22:30:14.7581583Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_roll.cpp.obj 2025-12-05T22:30:14.7583259Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_round.cpp.obj 2025-12-05T22:30:14.7585002Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsqrt.cpp.obj 2025-12-05T22:30:14.7586698Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsub.cpp.obj 2025-12-05T22:30:14.7588612Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scalar_tensor.cpp.obj 2025-12-05T22:30:14.7590404Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter.cpp.obj 2025-12-05T22:30:31.1732013Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter_add.cpp.obj 2025-12-05T22:30:31.1733105Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_copy.cpp.obj 2025-12-05T22:30:31.1734175Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_scatter.cpp.obj 2025-12-05T22:30:31.1735281Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sigmoid.cpp.obj 2025-12-05T22:30:31.1736372Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sign.cpp.obj 2025-12-05T22:30:31.1737410Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sin.cpp.obj 2025-12-05T22:30:31.1738423Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sinh.cpp.obj 2025-12-05T22:30:31.1739626Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_copy.cpp.obj 2025-12-05T22:30:31.1740741Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_scatter.cpp.obj 2025-12-05T22:30:31.1741820Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_softmax.cpp.obj 2025-12-05T22:30:31.1743011Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.obj 2025-12-05T22:30:31.1744202Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_copy.cpp.obj 2025-12-05T22:30:31.1745284Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sqrt.cpp.obj 2025-12-05T22:30:31.1746348Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_squeeze_copy.cpp.obj 2025-12-05T22:30:31.1747411Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_stack.cpp.obj 2025-12-05T22:30:31.1748383Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sub.cpp.obj 2025-12-05T22:30:31.1749461Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sum.cpp.obj 2025-12-05T22:30:31.1750494Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_t_copy.cpp.obj 2025-12-05T22:30:31.1751540Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tan.cpp.obj 2025-12-05T22:30:31.1752501Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tanh.cpp.obj 2025-12-05T22:30:31.1753568Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_to_copy.cpp.obj 2025-12-05T22:30:31.1754620Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_topk.cpp.obj 2025-12-05T22:30:31.1755706Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_transpose_copy.cpp.obj 2025-12-05T22:30:31.1756870Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tril.cpp.obj 2025-12-05T22:30:31.1757892Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_trunc.cpp.obj 2025-12-05T22:30:31.1758948Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unbind_copy.cpp.obj 2025-12-05T22:30:31.1760040Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unfold_copy.cpp.obj 2025-12-05T22:30:31.1761124Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.obj 2025-12-05T22:30:31.1762277Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.obj 2025-12-05T22:30:31.1763477Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d_aa.cpp.obj 2025-12-05T22:30:31.1764681Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.obj 2025-12-05T22:30:31.1765762Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_var.cpp.obj 2025-12-05T22:30:31.1766967Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_as_real_copy.cpp.obj 2025-12-05T22:30:31.1768095Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_copy.cpp.obj 2025-12-05T22:30:31.1769152Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_where.cpp.obj 2025-12-05T22:30:31.1770182Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_zeros.cpp.obj 2025-12-05T22:30:31.1771451Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_bool.cpp.obj 2025-12-05T22:30:31.1772979Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.obj 2025-12-05T22:30:31.1774318Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.obj 2025-12-05T22:30:31.1775549Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/activation_ops_util.cpp.obj 2025-12-05T22:30:31.1776694Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/advanced_index_util.cpp.obj 2025-12-05T22:30:31.1777773Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/arange_util.cpp.obj 2025-12-05T22:30:31.1778923Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/broadcast_util.cpp.obj 2025-12-05T22:30:31.1780104Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/copy_ops_util.cpp.obj 2025-12-05T22:30:31.1781284Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/distance_util.cpp.obj 2025-12-05T22:30:31.1782445Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/delinearize_index.cpp.obj 2025-12-05T22:30:31.1783617Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/dtype_util.cpp.obj 2025-12-05T22:30:31.1784714Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/grid_sampler_2d_util.cpp.obj 2025-12-05T22:30:31.1785938Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/index_util.cpp.obj 2025-12-05T22:30:31.1787312Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/kernel_ops_util.cpp.obj 2025-12-05T22:30:31.1788732Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/matmul_ops_util.cpp.obj 2025-12-05T22:30:31.1790058Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/normalization_ops_util.cpp.obj 2025-12-05T22:30:31.1791348Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/padding_util.cpp.obj 2025-12-05T22:30:31.1792597Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/reduce_util.cpp.obj 2025-12-05T22:30:31.1793917Z [ 97%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/repeat_util.cpp.obj 2025-12-05T22:30:31.1795156Z [ 97%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/select_copy_util.cpp.obj 2025-12-05T22:30:31.1796560Z [ 98%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/slice_util.cpp.obj 2025-12-05T22:30:31.1797771Z [ 98%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/stack_util.cpp.obj 2025-12-05T22:30:31.1799431Z [ 98%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/upsample_util.cpp.obj 2025-12-05T22:30:31.1800323Z [ 99%] Linking CXX static library libportable_kernels.a 2025-12-05T22:30:31.1801078Z [ 99%] Built target portable_kernels 2025-12-05T22:30:31.1801708Z [ 99%] Generating selected_operators.yaml for portable_ops_lib 2025-12-05T22:30:31.1802399Z [ 99%] Generating code for kernel registration 2025-12-05T22:30:31.1804021Z [100%] Building CXX object kernels/portable/CMakeFiles/portable_ops_lib.dir/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.obj 2025-12-05T22:30:31.1805093Z [100%] Linking CXX static library libportable_ops_lib.a 2025-12-05T22:30:31.1805599Z [100%] Built target portable_ops_lib 2025-12-05T22:30:31.1806023Z Install the project... 2025-12-05T22:30:31.1806434Z -- Install configuration: "Release" 2025-12-05T22:30:31.1806838Z -- Installing: /pytorch/executorch/cmake-out/lib/libflatccrt.a 2025-12-05T22:30:31.1807424Z -- Installing: /pytorch/executorch/cmake-out/include/fxdiv.h 2025-12-05T22:30:31.1807995Z -- Installing: /pytorch/executorch/cmake-out/lib/libkernels_util_all_deps.a 2025-12-05T22:30:31.1808678Z -- Installing: /pytorch/executorch/cmake-out/lib/libportable_kernels.a 2025-12-05T22:30:31.1809334Z -- Installing: /pytorch/executorch/cmake-out/lib/libportable_ops_lib.a 2025-12-05T22:30:31.1810115Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/portable/Functions.h 2025-12-05T22:30:31.1811112Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/portable/NativeFunctions.h 2025-12-05T22:30:31.1811916Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core 2025-12-05T22:30:31.1812674Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/array_ref.h 2025-12-05T22:30:31.1813521Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/data_loader.h 2025-12-05T22:30:31.1814310Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/defines.h 2025-12-05T22:30:31.1815127Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/error.h 2025-12-05T22:30:31.1815907Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/evalue.h 2025-12-05T22:30:31.1816728Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer.h 2025-12-05T22:30:31.1817684Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer_hooks.h 2025-12-05T22:30:31.1818943Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer_hooks_delegate.h 2025-12-05T22:30:31.1820049Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten 2025-12-05T22:30:31.1820994Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/exec_aten.h 2025-12-05T22:30:31.1822070Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util 2025-12-05T22:30:31.1823145Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h 2025-12-05T22:30:31.1824397Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h 2025-12-05T22:30:31.1825535Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/test 2025-12-05T22:30:31.1826542Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util 2025-12-05T22:30:31.1827641Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/dim_order_util.h 2025-12-05T22:30:31.1828978Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h 2025-12-05T22:30:31.1830153Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h 2025-12-05T22:30:31.1831553Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h 2025-12-05T22:30:31.1832707Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_util.h 2025-12-05T22:30:31.1833775Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/test 2025-12-05T22:30:31.1834716Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/freeable_buffer.h 2025-12-05T22:30:31.1835674Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/function_ref.h 2025-12-05T22:30:31.1836740Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/hierarchical_allocator.h 2025-12-05T22:30:31.1837770Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/memory_allocator.h 2025-12-05T22:30:31.1838759Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/named_data_map.h 2025-12-05T22:30:31.1839722Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type 2025-12-05T22:30:31.1840765Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bfloat16.h 2025-12-05T22:30:31.1841862Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bfloat16_math.h 2025-12-05T22:30:31.1842975Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bits_types.h 2025-12-05T22:30:31.1843912Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10 2025-12-05T22:30:31.1844821Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10 2025-12-05T22:30:31.1845772Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-12-05T22:30:31.1846783Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h 2025-12-05T22:30:31.1847854Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h 2025-12-05T22:30:31.1848922Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util 2025-12-05T22:30:31.1849961Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h 2025-12-05T22:30:31.1851133Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h 2025-12-05T22:30:31.1852307Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h 2025-12-05T22:30:31.1853384Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h 2025-12-05T22:30:31.1854411Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h 2025-12-05T22:30:31.1855559Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h 2025-12-05T22:30:31.1856588Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h 2025-12-05T22:30:31.1857622Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h 2025-12-05T22:30:31.1858677Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h 2025-12-05T22:30:31.1859830Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h 2025-12-05T22:30:31.1861036Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h 2025-12-05T22:30:31.1862167Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h 2025-12-05T22:30:31.1863282Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/llvmMathExtras.h 2025-12-05T22:30:31.1864467Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/overflows.h 2025-12-05T22:30:31.1865659Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/safe_numerics.h 2025-12-05T22:30:31.1866760Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/torch 2025-12-05T22:30:31.1867727Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/torch/headeronly 2025-12-05T22:30:31.1869050Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros 2025-12-05T22:30:31.1870337Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros/Export.h 2025-12-05T22:30:31.1871459Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/torch/headeronly/macros/Macros.h 2025-12-05T22:30:31.1872532Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util 2025-12-05T22:30:31.1873634Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/BFloat16.h 2025-12-05T22:30:31.1874748Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/Half.h 2025-12-05T22:30:31.1875912Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/TypeSafeSignMath.h 2025-12-05T22:30:31.1877084Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/bit_cast.h 2025-12-05T22:30:31.1878215Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/complex.h 2025-12-05T22:30:31.1879390Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/torch/headeronly/util/floating_point_utils.h 2025-12-05T22:30:31.1880448Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/complex.h 2025-12-05T22:30:31.1881301Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/device.h 2025-12-05T22:30:31.1882130Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/half.h 2025-12-05T22:30:31.1883027Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/optional.h 2025-12-05T22:30:31.1883892Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/qint_types.h 2025-12-05T22:30:31.1884758Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/scalar.h 2025-12-05T22:30:31.1885659Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/scalar_type.h 2025-12-05T22:30:31.1886767Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/string_view.h 2025-12-05T22:30:31.1887648Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor.h 2025-12-05T22:30:31.1888509Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor_impl.h 2025-12-05T22:30:31.1889427Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor_options.h 2025-12-05T22:30:31.1890294Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/test 2025-12-05T22:30:31.1891032Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/result.h 2025-12-05T22:30:31.1891721Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/span.h 2025-12-05T22:30:31.1892387Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tag.h 2025-12-05T22:30:31.1893102Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tensor_layout.h 2025-12-05T22:30:31.5358098Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tensor_shape_dynamism.h 2025-12-05T22:30:31.5359394Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/test 2025-12-05T22:30:31.5360494Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/testing_util 2025-12-05T22:30:31.5361788Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/testing_util/error_matchers.h 2025-12-05T22:30:31.5363065Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/testing_util/test 2025-12-05T22:30:31.5364087Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/executor 2025-12-05T22:30:31.5364858Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/executor/memory_manager.h 2025-12-05T22:30:31.5365706Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/executor/merged_data_map.h 2025-12-05T22:30:31.5366486Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/executor/method.h 2025-12-05T22:30:31.5367308Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/executor/method_meta.h 2025-12-05T22:30:31.5368166Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/executor/platform_memory_allocator.h 2025-12-05T22:30:31.5369019Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/executor/program.h 2025-12-05T22:30:31.5369799Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/executor/pte_data_map.h 2025-12-05T22:30:31.5370600Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/executor/tensor_parser.h 2025-12-05T22:30:31.5371360Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/executor/test 2025-12-05T22:30:31.5372178Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/executor/test/managed_memory_manager.h 2025-12-05T22:30:31.5372980Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel 2025-12-05T22:30:31.5373706Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/kernel_includes.h 2025-12-05T22:30:31.5374540Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/kernel_runtime_context.h 2025-12-05T22:30:31.5375406Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/operator_registry.h 2025-12-05T22:30:31.5376206Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/test 2025-12-05T22:30:31.5376946Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/test/test_util.h 2025-12-05T22:30:31.5377806Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/thread_parallel_interface.h 2025-12-05T22:30:31.5378633Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform 2025-12-05T22:30:31.5379323Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/abort.h 2025-12-05T22:30:31.5380047Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/assert.h 2025-12-05T22:30:31.5380781Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/clock.h 2025-12-05T22:30:31.5381536Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/compat_unistd.h 2025-12-05T22:30:31.5382325Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/compiler.h 2025-12-05T22:30:31.5383070Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/default 2025-12-05T22:30:31.5383775Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/log.h 2025-12-05T22:30:31.5384509Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/platform.h 2025-12-05T22:30:31.5385252Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/profiler.h 2025-12-05T22:30:31.5386006Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/runtime.h 2025-12-05T22:30:31.5386750Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/system.h 2025-12-05T22:30:31.5387455Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test 2025-12-05T22:30:31.5388208Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test/pal_spy.h 2025-12-05T22:30:31.5389119Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test/stub_platform.h 2025-12-05T22:30:31.5389979Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/types.h 2025-12-05T22:30:31.5390688Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util 2025-12-05T22:30:31.5391564Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h 2025-12-05T22:30:31.5392538Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/meta_programming.h 2025-12-05T22:30:31.5393381Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/test 2025-12-05T22:30:31.5394173Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/type_list.h 2025-12-05T22:30:31.5394905Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor 2025-12-05T22:30:31.5395607Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor.h 2025-12-05T22:30:31.5396404Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_accessor.h 2025-12-05T22:30:31.5397204Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_ptr.h 2025-12-05T22:30:31.5398029Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_ptr_maker.h 2025-12-05T22:30:31.5398793Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/test 2025-12-05T22:30:31.5399493Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool 2025-12-05T22:30:31.5400277Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/cpuinfo_utils.h 2025-12-05T22:30:31.5401068Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/test 2025-12-05T22:30:31.5401889Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/threadpool.h 2025-12-05T22:30:31.5402745Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/threadpool_guard.h 2025-12-05T22:30:31.5403458Z -- Installing: /pytorch/executorch/cmake-out/lib/libexecutorch.a 2025-12-05T22:30:31.5404010Z -- Installing: /pytorch/executorch/cmake-out/lib/libexecutorch_core.a 2025-12-05T22:30:31.5404657Z -- Installing: /pytorch/executorch/cmake-out/lib/cmake/ExecuTorch/executorch-config.cmake 2025-12-05T22:30:31.5405331Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_data_loader.a 2025-12-05T22:30:31.5405970Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/data_loader 2025-12-05T22:30:31.5406777Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/data_loader/buffer_data_loader.h 2025-12-05T22:30:31.5407663Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/data_loader/file_data_loader.h 2025-12-05T22:30:31.5408610Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/data_loader/file_descriptor_data_loader.h 2025-12-05T22:30:31.5409491Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/data_loader/mman.h 2025-12-05T22:30:31.5410284Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/data_loader/mman_windows.h 2025-12-05T22:30:31.5411152Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/data_loader/mmap_data_loader.h 2025-12-05T22:30:31.5412056Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/data_loader/shared_ptr_data_loader.h 2025-12-05T22:30:31.5412908Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/data_loader/test 2025-12-05T22:30:31.5413652Z -- Installing: /pytorch/executorch/cmake-out/lib/cmake/ExecuTorch/ExecuTorchTargets.cmake 2025-12-05T22:30:31.5414436Z -- Installing: /pytorch/executorch/cmake-out/lib/cmake/ExecuTorch/ExecuTorchTargets-release.cmake 2025-12-05T22:30:31.5415245Z + CXXFLAGS='-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0' 2025-12-05T22:30:31.5416473Z + cmake -DCMAKE_TOOLCHAIN_FILE=/pytorch/executorch/examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test 2025-12-05T22:30:31.5417480Z -- The C compiler identification is GNU 12.2.0 2025-12-05T22:30:31.5417862Z -- The CXX compiler identification is GNU 12.2.0 2025-12-05T22:30:31.5418416Z -- Detecting C compiler ABI info 2025-12-05T22:30:31.5418738Z -- Detecting C compiler ABI info - done 2025-12-05T22:30:31.5419531Z -- Check for working C compiler: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc - skipped 2025-12-05T22:30:31.5420262Z -- Detecting C compile features 2025-12-05T22:30:31.5420553Z -- Detecting C compile features - done 2025-12-05T22:30:31.5420880Z -- Detecting CXX compiler ABI info 2025-12-05T22:30:31.5421187Z -- Detecting CXX compiler ABI info - done 2025-12-05T22:30:31.5421923Z -- Check for working CXX compiler: /pytorch/executorch/examples/arm/ethos-u-scratch/arm-zephyr-eabi/bin/arm-zephyr-eabi-g++ - skipped 2025-12-05T22:30:31.5422657Z -- Detecting CXX compile features 2025-12-05T22:30:31.5422960Z -- Detecting CXX compile features - done 2025-12-05T22:30:31.5423620Z CMake Warning (dev) at CMakeLists.txt:32 (find_package): 2025-12-05T22:30:31.5424225Z Policy CMP0144 is not set: find_package uses upper-case _ROOT 2025-12-05T22:30:31.5424810Z variables. Run "cmake --help-policy CMP0144" for policy details. Use the 2025-12-05T22:30:31.5425355Z cmake_policy command to set the policy and suppress this warning. 2025-12-05T22:30:31.5425692Z 2025-12-05T22:30:31.5425817Z CMake variable EXECUTORCH_ROOT is set to: 2025-12-05T22:30:31.5426045Z 2025-12-05T22:30:31.5426159Z /pytorch/executorch/test/.. 2025-12-05T22:30:31.5426340Z 2025-12-05T22:30:31.5426631Z For compatibility, find_package is ignoring the variable, but code in a 2025-12-05T22:30:31.5427090Z .cmake module might still use it. 2025-12-05T22:30:31.5427497Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-12-05T22:30:31.5427952Z  2025-12-05T22:30:31.5428201Z -- Could NOT find tokenizers (missing: tokenizers_DIR) 2025-12-05T22:30:31.5428789Z aoti_cuda_backend library is not found. 2025-12-05T22:30:33.3724325Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3725107Z flatccrt library is not found. 2025-12-05T22:30:33.3725854Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3726663Z etdump library is not found. 2025-12-05T22:30:33.3727560Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3728478Z bundled_program library is not found. 2025-12-05T22:30:33.3729346Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3730313Z extension_flat_tensor library is not found. 2025-12-05T22:30:33.3731282Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3732261Z coreml_util library is not found. 2025-12-05T22:30:33.3732886Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3733663Z coreml_inmemoryfs library is not found. 2025-12-05T22:30:33.3734429Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3735192Z coremldelegate library is not found. 2025-12-05T22:30:33.3735996Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3736780Z mpsdelegate library is not found. 2025-12-05T22:30:33.3737697Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3738395Z metal_backend library is not found. 2025-12-05T22:30:33.3739098Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3739641Z neuron_backend library is not found. 2025-12-05T22:30:33.3740239Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3741188Z qnn_executorch_backend library is not found. 2025-12-05T22:30:33.3741988Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3742580Z custom_ops library is not found. 2025-12-05T22:30:33.3743341Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3744092Z extension_asr_runner library is not found. 2025-12-05T22:30:33.3744925Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3745850Z extension_evalue_util library is not found. 2025-12-05T22:30:33.3746702Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3747510Z extension_llm_runner library is not found. 2025-12-05T22:30:33.3748295Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3749109Z extension_module library is not found. 2025-12-05T22:30:33.3749982Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3750826Z extension_module_static library is not found. 2025-12-05T22:30:33.3751653Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3752424Z extension_runner_util library is not found. 2025-12-05T22:30:33.3753227Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3753856Z extension_tensor library is not found. 2025-12-05T22:30:33.3754382Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3755141Z extension_threadpool library is not found. 2025-12-05T22:30:33.3755686Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3756300Z extension_training library is not found. 2025-12-05T22:30:33.3756786Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3757264Z xnnpack_backend library is not found. 2025-12-05T22:30:33.3757741Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3758276Z vulkan_backend library is not found. 2025-12-05T22:30:33.3758760Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3759228Z optimized_kernels library is not found. 2025-12-05T22:30:33.3759724Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3760239Z optimized_portable_kernels library is not found. 2025-12-05T22:30:33.3760777Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3761229Z cpublas library is not found. 2025-12-05T22:30:33.3761693Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3762148Z eigen_blas library is not found. 2025-12-05T22:30:33.3762620Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3763104Z optimized_ops_lib library is not found. 2025-12-05T22:30:33.3763588Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3764117Z optimized_native_cpu_ops_lib library is not found. 2025-12-05T22:30:33.3764641Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3765122Z quantized_kernels library is not found. 2025-12-05T22:30:33.3765603Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3766086Z quantized_ops_lib library is not found. 2025-12-05T22:30:33.3766578Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3767062Z quantized_ops_aot_lib library is not found. 2025-12-05T22:30:33.3767573Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3768042Z openvino_backend library is not found. 2025-12-05T22:30:33.3768568Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3769055Z torchao_ops_executorch library is not found. 2025-12-05T22:30:33.3769575Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3770079Z torchao_kernels_aarch64 library is not found. 2025-12-05T22:30:33.3770584Z If needed rebuild with the proper options in CMakeLists.txt 2025-12-05T22:30:33.3771006Z -- Configuring done (0.8s) 2025-12-05T22:30:33.3771275Z -- Generating done (0.0s) 2025-12-05T22:30:33.3771699Z -- Build files have been written to: /pytorch/executorch/cmake-out/test 2025-12-05T22:30:33.3772164Z + cmake --build cmake-out/test -j9 --config Release 2025-12-05T22:30:33.3772730Z [ 25%] Building CXX object CMakeFiles/size_test.dir/size_test.cpp.obj 2025-12-05T22:30:33.3773404Z [ 50%] Building CXX object CMakeFiles/size_test_all_ops.dir/size_test.cpp.obj 2025-12-05T22:30:33.3774003Z [ 75%] Linking CXX executable size_test_all_ops 2025-12-05T22:30:33.3774459Z [100%] Linking CXX executable size_test 2025-12-05T22:30:33.3774793Z [100%] Built target size_test 2025-12-05T22:30:33.3775077Z [100%] Built target size_test_all_ops 2025-12-05T22:30:33.3775374Z + elf=cmake-out/test/size_test 2025-12-05T22:30:33.3775661Z + ls -al cmake-out/test/size_test 2025-12-05T22:30:33.3776053Z -rwxr-xr-x. 1 ci-user ci-user 189716 Dec 5 22:30 cmake-out/test/size_test 2025-12-05T22:30:33.3776515Z + arm-zephyr-eabi-size cmake-out/test/size_test 2025-12-05T22:30:33.3776887Z text data bss dec hex filename 2025-12-05T22:30:33.3777268Z 66749 2340 26120 95209 173e9 cmake-out/test/size_test 2025-12-05T22:30:33.3777729Z + python .github/scripts/run_nm.py -e cmake-out/test/size_test 2025-12-05T22:30:33.3778182Z Elf: cmake-out/test/size_test 2025-12-05T22:30:33.3778380Z 2025-12-05T22:30:33.3778472Z Address Size Type Name 2025-12-05T22:30:33.3778915Z 0x29544 24000 b executorch::runtime::(anonymous namespace)::registered_kernels_data 2025-12-05T22:30:33.3779397Z 0x12871 6446 T _vfprintf_r 2025-12-05T22:30:33.3779650Z 0x10f61 6280 T _svfprintf_r 2025-12-05T22:30:33.3779948Z 0x15cd9 3512 T _vfiprintf_r 2025-12-05T22:30:33.3780205Z 0x14471 3236 T _dtoa_r 2025-12-05T22:30:33.3780423Z 0x8381 2016 T main 2025-12-05T22:30:33.3780643Z 0x10239 1408 T _malloc_r 2025-12-05T22:30:33.3781119Z 0xb4a1 1070 T executorch::runtime::Method::parse_values(executorch::runtime::NamedDataMap const*) 2025-12-05T22:30:33.3781653Z 0x28878 1032 D __malloc_av_ 2025-12-05T22:30:33.3782273Z 0xb8d1 1032 T executorch::runtime::Method::init(executorch_flatbuffer::ExecutionPlan*, executorch::runtime::NamedDataMap const*) 2025-12-05T22:30:33.3782957Z 0x29140 1024 b method_allocator_pool 2025-12-05T22:30:33.3783242Z 0x16f25 880 T _realloc_r 2025-12-05T22:30:33.3783504Z 0xd85d 822 T __gxx_personality_v0 2025-12-05T22:30:33.3783789Z 0xe245 792 T __ieee754_fmod 2025-12-05T22:30:33.3784392Z 0xc6a5 784 T executorch::runtime::Program::load(executorch::runtime::DataLoader*, executorch::runtime::Program::Verification) 2025-12-05T22:30:33.3785034Z 0x16bd5 768 T __sfvwrite_r 2025-12-05T22:30:33.3785286Z 0xea41 668 T __udivmoddi4 2025-12-05T22:30:33.3785545Z 0x285e0 656 d impure_data 2025-12-05T22:30:33.3785780Z 0xe565 634 T __subdf3 2025-12-05T22:30:33.3786014Z 0xe565 634 T __aeabi_dsub 2025-12-05T22:30:33.3786253Z 0xe569 630 T __aeabi_dadd 2025-12-05T22:30:33.3786497Z 0xe569 630 T __adddf3 2025-12-05T22:30:33.3786726Z 0xf375 616 T _Unwind_VRS_Pop 2025-12-05T22:30:33.3787044Z 0x811d 612 t _GLOBAL__sub_I_register_prim_ops.cpp 2025-12-05T22:30:33.3787394Z 0xf119 592 t __gnu_unwind_pr_common 2025-12-05T22:30:33.3787679Z 0xf7d3 580 T __gnu_unwind_execute 2025-12-05T22:30:33.3787967Z 0x28f40 512 b activation_pool 2025-12-05T22:30:33.3788220Z 0xfe69 508 T _free_r 2025-12-05T22:30:33.3788664Z 0xadfd 490 T executorch::runtime::Method::execute_instruction() 2025-12-05T22:30:33.3789301Z 0xb2c1 480 T executorch::runtime::Method::set_input(executorch::runtime::EValue const&, unsigned int) 2025-12-05T22:30:33.3789885Z 0x10c8d 442 T strcmp 2025-12-05T22:30:33.3791322Z 0xccf5 424 T executorch::runtime::deserialization::getTensorDataPtr(executorch_flatbuffer::Tensor const*, executorch::runtime::Program const*, unsigned int, executorch::runtime::HierarchicalAllocator*, executorch::runtime::NamedDataMap const*, executorch::runtime::Span) 2025-12-05T22:30:33.3793742Z 0xac59 420 T executorch::runtime::Method::resolve_operator(long, void (**)(executorch::runtime::KernelRuntimeContext&, executorch::runtime::Span), unsigned int, executorch::runtime::Span, unsigned int) 2025-12-05T22:30:33.3795984Z 0xcebb 404 T executorch::runtime::deserialization::parseTensor(executorch::runtime::Program const*, executorch::runtime::MemoryManager*, executorch_flatbuffer::Tensor const*, executorch::runtime::NamedDataMap const*, executorch::runtime::Span) 2025-12-05T22:30:33.3797355Z 0x28c80 364 D __global_locale 2025-12-05T22:30:33.3797629Z 0x15509 356 T __multiply 2025-12-05T22:30:33.3797882Z 0x1584d 352 T __mdiff 2025-12-05T22:30:33.3798551Z 0x8db3 352 T torch::executor::function::et_view(executorch::runtime::KernelRuntimeContext&, executorch::runtime::Span) 2025-12-05T22:30:33.3800070Z 0xb08b 322 W executorch::runtime::BackendDelegate::Init(executorch_flatbuffer::BackendDelegate const&, executorch::runtime::Program const*, executorch::runtime::BackendInitContext&, executorch::runtime::BackendDelegate*) 2025-12-05T22:30:33.3801121Z 0x14335 312 t quorem 2025-12-05T22:30:33.3801487Z 0x28e14 300 b torch::executor::function::(anonymous namespace)::prim_ops 2025-12-05T22:30:33.3802231Z 0xab31 294 T executorch::runtime::Method::parse_external_constants(executorch::runtime::NamedDataMap const*) 2025-12-05T22:30:33.3802803Z 0xfa99 286 T __sflush_r 2025-12-05T22:30:33.3803878Z 0xbcd9 284 T executorch::runtime::Method::load(executorch_flatbuffer::ExecutionPlan*, executorch::runtime::Program const*, executorch::runtime::MemoryManager*, executorch::runtime::EventTracer*, executorch::runtime::NamedDataMap const*) 2025-12-05T22:30:33.3805005Z 0xfc95 272 T __sinit 2025-12-05T22:30:33.3805718Z 0x8ca5 270 T torch::executor::function::et_copy_index(executorch::runtime::KernelRuntimeContext&, executorch::runtime::Span) 2025-12-05T22:30:33.3806498Z 0x15bad 266 T __ssprint_r 2025-12-05T22:30:33.3807534Z 0x90c1 262 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#2}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3808623Z 0x1815c 257 R _ctype_ 2025-12-05T22:30:33.3808846Z 0x10905 254 T memmove 2025-12-05T22:30:33.3809087Z 0x1011d 252 T _memalign_r 2025-12-05T22:30:33.3809524Z 0x9f71 248 W executorch::runtime::MemoryAllocator::allocate(unsigned int, unsigned int) 2025-12-05T22:30:33.3810810Z 0x9a45 246 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#9}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3812685Z 0x9467 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#16}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3814590Z 0x955b 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#15}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3816711Z 0x964f 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#14}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3818746Z 0x9743 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#13}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3820698Z 0x9837 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#12}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3821758Z 0x10819 236 T memcpy 2025-12-05T22:30:33.3821990Z 0x15721 232 T __lshift 2025-12-05T22:30:33.3823007Z 0x9cdb 216 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#6}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3824863Z 0x9c07 212 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#7}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3825952Z 0x8019 208 T __cxa_call_unexpected 2025-12-05T22:30:33.3828076Z 0xd08d 208 T executorch::runtime::register_kernels(executorch::runtime::Span) 2025-12-05T22:30:33.3829095Z 0xca39 206 T executorch::runtime::internal::PteDataMap::get_data(std::basic_string_view >) const 2025-12-05T22:30:33.3830504Z 0x9b3b 204 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#8}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3831669Z 0x151a1 200 T __smakebuf_r 2025-12-05T22:30:33.3831932Z 0x18028 200 R __mprec_tens 2025-12-05T22:30:33.3832535Z 0xc53f 198 T executorch::runtime::Program::load_mutable_subsegment_into(unsigned int, unsigned int, unsigned int, void*) const 2025-12-05T22:30:33.3833234Z 0x1424d 196 T __swsetup_r 2025-12-05T22:30:33.3833661Z 0xc0a9 194 T executorch::runtime::MethodMeta::input_tensor_meta(unsigned int) const 2025-12-05T22:30:33.3834140Z 0x159ad 192 T __d2b 2025-12-05T22:30:33.3834832Z 0xd15d 192 T executorch::runtime::internal::make_kernel_key_string(executorch::runtime::Span, char*, unsigned int) 2025-12-05T22:30:33.3836368Z 0x9987 190 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#10}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3837458Z 0xee97 186 t unwind_phase2_forced 2025-12-05T22:30:33.3837736Z 0x1566d 180 T __pow5mult 2025-12-05T22:30:33.3837980Z 0x10a05 168 T memset 2025-12-05T22:30:33.3838381Z 0xa1e1 168 T executorch::extension::FileDataLoader::from(char const*, unsigned int) 2025-12-05T22:30:33.3838859Z 0x15361 164 T __multadd 2025-12-05T22:30:33.3839605Z 0xafe7 164 W executorch::runtime::BackendDelegate::GetProcessedData(executorch_flatbuffer::BackendDelegate const&, executorch::runtime::Program const*) 2025-12-05T22:30:33.3840398Z 0xdf85 160 T __cxa_type_match 2025-12-05T22:30:33.3840908Z 0xc3cf 160 T executorch::runtime::Program::get_constant_buffer_data(unsigned int, unsigned int) const 2025-12-05T22:30:33.3842097Z 0xcba1 160 T executorch::runtime::deserialization::parseTensorList(flatbuffers::Vector const*, executorch::runtime::EValue*, unsigned int, executorch::runtime::MemoryManager*) 2025-12-05T22:30:33.3843055Z 0xfdcd 156 T _malloc_trim_r 2025-12-05T22:30:33.3843754Z 0xa2dd 152 T executorch::extension::FileDataLoader::load(unsigned int, unsigned int, executorch::runtime::DataLoader::SegmentInfo const&) const 2025-12-05T22:30:33.3844844Z 0x9029 152 t torch::executor::function::(anonymous namespace)::floor_div_double(double, double, executorch::runtime::EValue&) 2025-12-05T22:30:33.3846284Z 0xbfa5 152 T executorch::runtime::TensorInfo::create(executorch::runtime::Span, executorch::runtime::Span, executorch::runtime::etensor::ScalarType, bool, std::basic_string_view >) 2025-12-05T22:30:33.3847364Z 0x15269 150 T memchr 2025-12-05T22:30:33.3848004Z 0xd21d 148 T executorch::runtime::get_op_function_from_registry(char const*, executorch::runtime::Span) 2025-12-05T22:30:33.3849537Z 0x9219 144 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#22}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3850616Z 0xed75 140 t get_eit_entry 2025-12-05T22:30:33.3851011Z 0xc2e7 140 T executorch::runtime::Program::method_meta(char const*) const 2025-12-05T22:30:33.3851694Z 0xd6f9 140 t read_encoded_value_with_base(unsigned char, unsigned int, unsigned char const*, unsigned int*) 2025-12-05T22:30:33.3852255Z 0x10b71 136 T snprintf 2025-12-05T22:30:33.3852670Z 0xd301 136 T executorch::runtime::ExtendedHeader::Parse(void const*, unsigned int) 2025-12-05T22:30:33.3853187Z 0xb215 134 T executorch::runtime::Method::execute() 2025-12-05T22:30:33.3853534Z 0x10edd 130 T strncmp 2025-12-05T22:30:33.3853773Z 0xd3f1 128 W et_pal_emit_log_message 2025-12-05T22:30:33.3854069Z 0x16a91 128 t __sbprintf 2025-12-05T22:30:33.3854806Z 0xcc41 128 T executorch::runtime::deserialization::validateTensorLayout(executorch_flatbuffer::Tensor const*, executorch::runtime::TensorLayout const&) 2025-12-05T22:30:33.3855744Z 0x2f314 128 b executorch::runtime::(anonymous namespace)::registered_backends 2025-12-05T22:30:33.3856701Z 0xa117 126 T executorch::extension::FileDataLoader::load_into(unsigned int, unsigned int, executorch::runtime::DataLoader::SegmentInfo const&, void*) const 2025-12-05T22:30:33.3857452Z 0x15ac9 124 T frexp 2025-12-05T22:30:33.3857875Z 0xa781 122 W executorch::runtime::internal::MergedDataMap::get_key(unsigned long) const 2025-12-05T22:30:33.3858505Z 0xa96b 120 T executorch::runtime::Method::get_num_external_constants() 2025-12-05T22:30:33.3859254Z 0xa5c3 118 T executorch::runtime::etensor::TensorImpl::internal_resize_contiguous(executorch::runtime::ArrayRef) 2025-12-05T22:30:33.3860098Z 0xbe3b 118 T executorch::runtime::Method::get_outputs(executorch::runtime::EValue*, unsigned int) 2025-12-05T22:30:33.3860602Z 0xfc15 116 T fflush 2025-12-05T22:30:33.3861611Z 0xdd85 116 T __cxxabiv1::__si_class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const 2025-12-05T22:30:33.3862661Z 0xdca5 110 T __cxa_rethrow 2025-12-05T22:30:33.3863712Z 0x9db3 110 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#5}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3864811Z 0xf0ad 108 T __gnu_Unwind_Backtrace 2025-12-05T22:30:33.3865877Z 0x9e21 108 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#4}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3867097Z 0xd595 108 t (anonymous namespace)::pool::free(void*) [clone .constprop.0] 2025-12-05T22:30:33.3867526Z 0xe869 106 T __floatundidf 2025-12-05T22:30:33.3867787Z 0xe869 106 T __aeabi_ul2d 2025-12-05T22:30:33.3868898Z 0x92fd 106 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#20}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3870030Z 0xaa11 106 T executorch::runtime::Method::~Method() 2025-12-05T22:30:33.3870426Z 0x15b45 104 T strncpy 2025-12-05T22:30:33.3871040Z 0xc4d9 102 T executorch::runtime::Program::LoadSegment(executorch::runtime::DataLoader::SegmentInfo const&) const 2025-12-05T22:30:33.3871635Z 0xe1e1 100 T fmod 2025-12-05T22:30:33.3872333Z 0xa6d7 100 W executorch::runtime::internal::MergedDataMap::get_tensor_layout(std::basic_string_view >) const 2025-12-05T22:30:33.3873761Z 0xcb3d 100 t executorch::runtime::deserialization::(anonymous namespace)::getMemPlannedPtr(executorch_flatbuffer::AllocationDetails const*, unsigned int, executorch::runtime::HierarchicalAllocator*) 2025-12-05T22:30:33.3875102Z 0xaa8d 98 W executorch::runtime::internal::MergedDataMap::get_data(std::basic_string_view >) const 2025-12-05T22:30:33.3875762Z 0xecef 96 t search_EIT_table 2025-12-05T22:30:33.3876017Z 0x16b4d 96 T _calloc_r 2025-12-05T22:30:33.3877044Z 0x9407 96 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#17}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3878111Z 0x107b9 94 T memcmp 2025-12-05T22:30:33.3878328Z 0x1544d 94 T __lo0bits 2025-12-05T22:30:33.3879038Z 0xa565 94 W executorch::runtime::Error executorch::runtime::dim_order_to_stride(long const*, unsigned char const*, unsigned int, long*) 2025-12-05T22:30:33.3879974Z 0xd7e7 94 t parse_lsda_header(_Unwind_Context*, unsigned char const*, lsda_header_info*) 2025-12-05T22:30:33.3880459Z 0x10e81 92 T strlen 2025-12-05T22:30:33.3880688Z 0x154ad 92 T __i2b 2025-12-05T22:30:33.3881501Z 0xc373 92 T executorch::runtime::Program::load_method(char const*, executorch::runtime::MemoryManager*, executorch::runtime::EventTracer*, executorch::runtime::NamedDataMap const*) const 2025-12-05T22:30:33.3883211Z 0x992b 92 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#11}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3884303Z 0xfbb9 90 T _fflush_r 2025-12-05T22:30:33.3884572Z 0xef55 90 T __gnu_Unwind_RaiseException 2025-12-05T22:30:33.3884883Z 0xe879 90 T __floatdidf 2025-12-05T22:30:33.3885116Z 0xe879 90 T __aeabi_l2d 2025-12-05T22:30:33.3885358Z 0x10ae9 88 T raise 2025-12-05T22:30:33.3885597Z 0xdc19 88 T __cxa_init_primary_exception 2025-12-05T22:30:33.3886701Z 0x9ed1 88 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#1}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3887904Z 0xc053 86 T executorch::runtime::MethodMeta::input_tag(unsigned int) const 2025-12-05T22:30:33.3888783Z 0xa425 86 T executorch::runtime::internal::copy_tensor_data(executorch::runtime::etensor::Tensor const&, executorch::runtime::etensor::Tensor const&) 2025-12-05T22:30:33.3889946Z 0xc485 84 T executorch::runtime::Program::get_backend_delegate_data(unsigned int, void const**, unsigned int*) const 2025-12-05T22:30:33.3891400Z 0x92a9 84 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#21}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3892831Z 0xa289 84 W executorch::runtime::Result::Result(executorch::runtime::FreeableBuffer&&) 2025-12-05T22:30:33.3893486Z 0xe123 82 T __cxa_begin_catch 2025-12-05T22:30:33.3894055Z 0xa375 82 T executorch::runtime::BoxedEvalueList >::get() const 2025-12-05T22:30:33.3894678Z 0x100ad 80 T __libc_init_array 2025-12-05T22:30:33.3895775Z 0x91c9 80 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#23}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3897631Z 0x9367 80 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#19}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3899507Z 0x93b7 80 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#18}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3900984Z 0xa855 78 W executorch::runtime::FreeableBuffer::FreeableBuffer(executorch::runtime::FreeableBuffer&&) 2025-12-05T22:30:33.3901575Z 0xee01 76 t restore_non_core_regs 2025-12-05T22:30:33.3901924Z 0xd4c1 76 T operator new(unsigned int, std::align_val_t) 2025-12-05T22:30:33.3902539Z 0xa069 76 t executorch::runtime::Result::CheckOk() const [clone .part.0] 2025-12-05T22:30:33.3903323Z 0xa069 76 t executorch::runtime::Result::CheckOk() const [clone .part.0] 2025-12-05T22:30:33.3903849Z 0x15301 76 T _Balloc 2025-12-05T22:30:33.3904153Z 0xa195 74 W executorch::runtime::FreeableBuffer::Free() 2025-12-05T22:30:33.3904853Z 0xc20d 74 t executorch::runtime::(anonymous namespace)::get_execution_plan(executorch_flatbuffer::Program const*, char const*) 2025-12-05T22:30:33.3905505Z 0xe175 72 T __cxa_end_catch 2025-12-05T22:30:33.3905938Z 0xd601 72 t (anonymous namespace)::pool::allocate(unsigned int) [clone .constprop.0] 2025-12-05T22:30:33.3906454Z 0x8faf 72 W executorch::runtime::EValue::destroy() 2025-12-05T22:30:33.3907668Z 0xbf5b 72 T executorch::runtime::TensorInfo::TensorInfo(executorch::runtime::Span, executorch::runtime::Span, executorch::runtime::etensor::ScalarType, bool, std::basic_string_view >, unsigned int) 2025-12-05T22:30:33.3908936Z 0x10065 70 T _fwalk_reent 2025-12-05T22:30:33.3909189Z 0x15405 70 T __hi0bits 2025-12-05T22:30:33.3909604Z 0xc2a1 70 T executorch::runtime::Program::get_method_name(unsigned int) const 2025-12-05T22:30:33.3910231Z 0xc9f5 68 T executorch::runtime::internal::PteDataMap::get_key(unsigned long) const 2025-12-05T22:30:33.3911490Z 0x9e8d 68 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#3}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3912548Z 0x15809 66 T __mcmp 2025-12-05T22:30:33.3912787Z 0xe825 66 T __extendsfdf2 2025-12-05T22:30:33.3913027Z 0xe825 66 T __aeabi_f2d 2025-12-05T22:30:33.3913373Z 0xd785 66 t base_of_encoded_value(unsigned char, _Unwind_Context*) 2025-12-05T22:30:33.3913770Z 0xefc1 64 T __gnu_Unwind_Resume 2025-12-05T22:30:33.3914049Z 0xea01 64 T __fixunsdfdi 2025-12-05T22:30:33.3914298Z 0xea01 64 T __aeabi_d2ulz 2025-12-05T22:30:33.3914633Z 0xd479 64 T executorch::runtime::get_backend_class(char const*) 2025-12-05T22:30:33.3915419Z 0xbef9 64 t executorch::runtime::(anonymous namespace)::get_tag(executorch_flatbuffer::EValue const*, unsigned int) [clone .constprop.0] 2025-12-05T22:30:33.3916101Z 0x10c1d 62 T __swrite 2025-12-05T22:30:33.3917100Z 0xdebd 62 T __cxxabiv1::__class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const 2025-12-05T22:30:33.3918771Z 0xa3e7 62 T executorch::runtime::internal::share_tensor_data(executorch::runtime::etensor::Tensor const&, executorch::runtime::etensor::Tensor const&) 2025-12-05T22:30:33.3920103Z 0xa4f3 62 T executorch::runtime::etensor::TensorImpl::TensorImpl(executorch::runtime::etensor::ScalarType, int, long*, void*, unsigned char*, long*, executorch::runtime::TensorShapeDynamism) 2025-12-05T22:30:33.3921011Z 0x16b11 60 T __assert_func 2025-12-05T22:30:33.3921374Z 0xd50d 60 T std::chrono::_V2::system_clock::now() 2025-12-05T22:30:33.3921878Z 0xa745 60 W executorch::runtime::internal::MergedDataMap::get_num_keys() const 2025-12-05T22:30:33.3922683Z 0xdd49 60 T __cxxabiv1::__si_class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const 2025-12-05T22:30:33.3923588Z 0xd04f 60 t executorch::runtime::(anonymous namespace)::copy_char_as_number_to_buf(int, char*, unsigned int) 2025-12-05T22:30:33.3924347Z 0xdbdb 60 t __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Control_Block*) 2025-12-05T22:30:33.3924796Z 0xee5d 58 t unwind_phase2 2025-12-05T22:30:33.3925060Z 0xe025 58 T __cxa_begin_cleanup 2025-12-05T22:30:33.3925387Z 0xe0e9 58 t __cxxabiv1::__is_gxx_exception_class(char*) 2025-12-05T22:30:33.3926030Z 0xc66d 56 W executorch::runtime::Result::Result(executorch::runtime::Program&&) 2025-12-05T22:30:33.3926891Z 0xa649 54 W executorch::runtime::internal::PlatformMemoryAllocator::allocate(unsigned int, unsigned int) 2025-12-05T22:30:33.3927454Z 0xdc71 52 T __cxa_throw 2025-12-05T22:30:33.3928278Z 0xc605 52 W std::_Optional_base::_Optional_base(std::_Optional_base&&) 2025-12-05T22:30:33.3930261Z 0xcb09 52 T executorch::runtime::internal::PteDataMap::create(executorch::runtime::DataLoader*, unsigned int, flatbuffers::Vector, unsigned long> const*, flatbuffers::Vector, unsigned long> const*) 2025-12-05T22:30:33.3932647Z 0xc639 52 W executorch::runtime::Program::Program(executorch::runtime::DataLoader*, unsigned int, executorch::runtime::FreeableBuffer&&, executorch_flatbuffer::Program const*, executorch::runtime::FreeableBuffer&&, std::optional&&) 2025-12-05T22:30:33.3934404Z 0xccc1 52 T executorch::runtime::deserialization::get_data_by_key(char const*, executorch::runtime::Span) 2025-12-05T22:30:33.3935201Z 0xe05f 50 T __gnu_end_cleanup 2025-12-05T22:30:33.3935691Z 0xde55 50 T __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const 2025-12-05T22:30:33.3936234Z 0xf789 48 t next_unwind_byte 2025-12-05T22:30:33.3936487Z 0xe9cb 48 T __fixdfdi 2025-12-05T22:30:33.3936727Z 0xe9cb 48 T __aeabi_d2lz 2025-12-05T22:30:33.3937199Z 0xa7fb 48 t executorch::runtime::EValue::operator=(executorch::runtime::EValue&&) & [clone .isra.0] 2025-12-05T22:30:33.3937739Z 0xf065 48 T _Unwind_VRS_Set 2025-12-05T22:30:33.3937991Z 0xf01d 48 T _Unwind_VRS_Get 2025-12-05T22:30:33.3938391Z 0xa4c5 46 T executorch::runtime::etensor::compute_numel(long const*, int) 2025-12-05T22:30:33.3938879Z 0xd6cb 46 t read_sleb128(unsigned char const*, long*) 2025-12-05T22:30:33.3939215Z 0xd389 44 W et_pal_init 2025-12-05T22:30:33.3939458Z 0x14221 44 T _write_r 2025-12-05T22:30:33.3939675Z 0x15a99 44 T _read_r 2025-12-05T22:30:33.3939909Z 0x15a6d 44 T _open_r 2025-12-05T22:30:33.3940121Z 0x15175 44 T _lseek_r 2025-12-05T22:30:33.3940349Z 0x10b41 44 T _kill_r 2025-12-05T22:30:33.3940572Z 0x15141 44 T _gettimeofday_r 2025-12-05T22:30:33.3940831Z 0x15115 44 T _fstat_r 2025-12-05T22:30:33.3941066Z 0xd649 44 T __cxa_allocate_exception 2025-12-05T22:30:33.3941433Z 0x17de8 44 R vtable for __cxxabiv1::__si_class_type_info 2025-12-05T22:30:33.3941858Z 0x17e5c 44 R vtable for __cxxabiv1::__class_type_info 2025-12-05T22:30:33.3942296Z 0xde29 44 T std::type_info::operator==(std::type_info const&) const 2025-12-05T22:30:33.3942780Z 0xde29 44 T std::type_info::__equal(std::type_info const&) const 2025-12-05T22:30:33.3943159Z 0xfa17 42 T __gnu_unwind_frame 2025-12-05T22:30:33.3943434Z 0x16ef9 42 T __ascii_mbtowc 2025-12-05T22:30:33.3943932Z 0xa82b 42 t executorch::runtime::EValue::operator=(executorch::runtime::EValue const&) & [clone .isra.0] 2025-12-05T22:30:33.3944938Z 0xddf9 42 T __cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const 2025-12-05T22:30:33.3945882Z 0xdf13 42 T __cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const 2025-12-05T22:30:33.3946385Z 0x12831 40 T open 2025-12-05T22:30:33.3946608Z 0xfda5 40 T fprintf 2025-12-05T22:30:33.3946828Z 0x16bad 40 T fiprintf 2025-12-05T22:30:33.3947062Z 0x80f5 40 T exit 2025-12-05T22:30:33.3947318Z 0x10e59 40 T _strdup_r 2025-12-05T22:30:33.3947564Z 0x18000 40 R __mprec_bigtens 2025-12-05T22:30:33.3947834Z 0x2f3bc 40 B __malloc_current_mallinfo 2025-12-05T22:30:33.3948193Z 0x8b61 40 t _GLOBAL__sub_I__ZN9__gnu_cxx9__freeresEv 2025-12-05T22:30:33.3948617Z 0x10c5d 38 T __sseek 2025-12-05T22:30:33.3948850Z 0xe9a5 38 T __popcountsi2 2025-12-05T22:30:33.3949124Z 0xed4f 38 t __gnu_unwind_get_pr_addr 2025-12-05T22:30:33.3949496Z 0xb1cd 38 T executorch::runtime::Method::method_meta() const 2025-12-05T22:30:33.3950674Z 0x8f13 38 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#25}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3952529Z 0x8f39 38 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#24}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.3954019Z 0xa49f 38 T executorch::runtime::internal::resize_tensor_impl(executorch::runtime::etensor::TensorImpl*, executorch::runtime::ArrayRef) 2025-12-05T22:30:33.3954827Z 0x17db4 37 R typeinfo name for __cxxabiv1::__si_class_type_info 2025-12-05T22:30:33.3955254Z 0xd3b5 36 W et_pal_current_ticks 2025-12-05T22:30:33.3955542Z 0x10ac5 36 T _sbrk_r 2025-12-05T22:30:33.3955766Z 0x16ed5 36 T _isatty_r 2025-12-05T22:30:33.3956010Z 0x14311 36 T _close_r 2025-12-05T22:30:33.3956347Z 0x28514 36 V vtable for executorch::runtime::internal::MergedDataMap 2025-12-05T22:30:33.3956904Z 0x28558 36 D vtable for executorch::runtime::internal::PteDataMap 2025-12-05T22:30:33.3957390Z 0x17d74 36 R typeinfo name for __cxxabiv1::__foreign_exception 2025-12-05T22:30:33.3957760Z 0x10bf9 34 T __sread 2025-12-05T22:30:33.3957996Z 0xe801 34 T __floatsidf 2025-12-05T22:30:33.3958231Z 0xe801 34 T __aeabi_i2d 2025-12-05T22:30:33.3958497Z 0xf71d 34 T ___Unwind_Resume_or_Rethrow 2025-12-05T22:30:33.3958796Z 0xf6f9 34 T ___Unwind_Resume 2025-12-05T22:30:33.3959075Z 0xf6d5 34 T ___Unwind_RaiseException 2025-12-05T22:30:33.3959364Z 0xf741 34 T ___Unwind_ForcedUnwind 2025-12-05T22:30:33.3959655Z 0xf765 34 T ___Unwind_Backtrace 2025-12-05T22:30:33.3960012Z 0x17e2c 34 R typeinfo name for __cxxabiv1::__class_type_info 2025-12-05T22:30:33.3960481Z 0xbf39 34 W executorch_flatbuffer::EValue::val_as_Tensor() const 2025-12-05T22:30:33.3961021Z 0xbe05 34 T executorch::runtime::Method::get_output_index(unsigned int) const 2025-12-05T22:30:33.3961600Z 0xb29b 34 T executorch::runtime::Method::get_input_index(unsigned int) const 2025-12-05T22:30:33.3962495Z 0x9f4d 34 W executorch::runtime::internal::logf(executorch::runtime::LogLevel, unsigned long long, char const*, char const*, unsigned int, char const*, ...) 2025-12-05T22:30:33.3963247Z 0xf71d 34 T _Unwind_Resume_or_Rethrow 2025-12-05T22:30:33.3963547Z 0xf6f9 34 T _Unwind_Resume 2025-12-05T22:30:33.3963823Z 0xf6d5 34 T _Unwind_RaiseException 2025-12-05T22:30:33.3964113Z 0xf741 34 T _Unwind_ForcedUnwind 2025-12-05T22:30:33.3964405Z 0xf765 34 T _Unwind_Backtrace 2025-12-05T22:30:33.3964656Z 0x17341 32 T _sbrk 2025-12-05T22:30:33.3964888Z 0xd675 32 T __cxa_free_exception 2025-12-05T22:30:33.3965306Z 0x28538 32 V vtable for executorch::runtime::internal::PlatformMemoryAllocator 2025-12-05T22:30:33.3965851Z 0x284d8 32 V vtable for executorch::runtime::MemoryAllocator 2025-12-05T22:30:33.3966328Z 0x17d4c 32 R typeinfo name for __cxxabiv1::__forced_unwind 2025-12-05T22:30:33.3966808Z 0x285ac 32 d executorch::runtime::(anonymous namespace)::pal_impl 2025-12-05T22:30:33.3967437Z 0xd7c7 32 t read_encoded_value(_Unwind_Context*, unsigned char, unsigned char const*, unsigned int*) 2025-12-05T22:30:33.3967962Z 0x15cb9 30 T __sprint_r 2025-12-05T22:30:33.3968216Z 0xe7e1 30 T __floatunsidf 2025-12-05T22:30:33.3968469Z 0xe0cb 30 T __cxa_call_terminate 2025-12-05T22:30:33.3968748Z 0xe7e1 30 T __aeabi_ui2d 2025-12-05T22:30:33.3969269Z 0xce9d 30 W long* executorch::runtime::MemoryAllocator::allocateList(unsigned int, unsigned int) 2025-12-05T22:30:33.3970286Z 0xab01 30 W executorch::runtime::EValue** executorch::runtime::MemoryAllocator::allocateList(unsigned int, unsigned int) 2025-12-05T22:30:33.3971051Z 0x17c2b 30 r CSWTCH.53 2025-12-05T22:30:33.3971280Z 0x17c04 30 r CSWTCH.23 2025-12-05T22:30:33.3971522Z 0xfa71 28 T __cxa_atexit 2025-12-05T22:30:33.3971762Z 0x17295 28 T __ascii_wctomb 2025-12-05T22:30:33.3972112Z 0x284f8 28 D vtable for executorch::extension::FileDataLoader 2025-12-05T22:30:33.3972579Z 0x8f5f 28 W executorch::runtime::etensor::Scalar::toInt() const 2025-12-05T22:30:33.3973080Z 0xa531 28 T executorch::runtime::etensor::TensorImpl::nbytes() const 2025-12-05T22:30:33.3973812Z 0xa47b 28 T executorch::runtime::internal::set_tensor_data(executorch::runtime::etensor::Tensor const&, void*, unsigned int) 2025-12-05T22:30:33.3974760Z 0xa3cb 28 T executorch::runtime::get_dim_order(executorch::runtime::etensor::Tensor const&, unsigned char*, unsigned int) 2025-12-05T22:30:33.3975462Z 0xd6af 28 t read_uleb128(unsigned char const*, unsigned long*) 2025-12-05T22:30:33.3975926Z 0xc1a1 26 W executorch_flatbuffer::DataSegment::offset() const 2025-12-05T22:30:33.3976428Z 0xc1bb 26 W executorch_flatbuffer::DataSegment::size() const 2025-12-05T22:30:33.3976806Z 0xf5dd 24 T restore_core_regs 2025-12-05T22:30:33.3977070Z 0x12859 24 T read 2025-12-05T22:30:33.3977278Z 0x28df4 24 b object.0 2025-12-05T22:30:33.3977506Z 0x12819 24 T lseek 2025-12-05T22:30:33.3977797Z 0xd3d9 24 W et_pal_ticks_to_ns_multiplier 2025-12-05T22:30:33.3978107Z 0xf5dd 24 T __restore_core_regs 2025-12-05T22:30:33.3978428Z 0xd549 24 T std::chrono::_V2::steady_clock::now() 2025-12-05T22:30:33.3978851Z 0xa0b5 24 T executorch::extension::FileDataLoader::size() const 2025-12-05T22:30:33.3979384Z 0xa54d 24 T executorch::runtime::etensor::TensorImpl::element_size() const 2025-12-05T22:30:33.3980229Z 0xdefb 24 T __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const 2025-12-05T22:30:33.3980952Z 0xf095 24 t _Unwind_SetGR 2025-12-05T22:30:33.3981225Z 0xf7b9 24 t _Unwind_GetGR.constprop.0 2025-12-05T22:30:33.3981517Z 0xf04d 24 t _Unwind_GetGR 2025-12-05T22:30:33.3981810Z 0x8b89 24 t _GLOBAL__sub_I___cxa_get_globals_fast 2025-12-05T22:30:33.3982502Z 0xc9b5 22 W executorch::runtime::internal::PteDataMap::get_tensor_layout(std::basic_string_view >) const 2025-12-05T22:30:33.3983283Z 0xc46f 22 T executorch::runtime::Program::get_named_data_map() const 2025-12-05T22:30:33.3983826Z 0xa67f 22 W executorch::runtime::internal::PlatformMemoryAllocator::reset() 2025-12-05T22:30:33.3984386Z 0xa0f9 20 T executorch::extension::FileDataLoader::~FileDataLoader() 2025-12-05T22:30:33.3985032Z 0xa6b5 20 W executorch::runtime::internal::PlatformMemoryAllocator::~PlatformMemoryAllocator() 2025-12-05T22:30:33.3985573Z 0x17cf0 20 R vtable for std::bad_alloc 2025-12-05T22:30:33.3985906Z 0x17da0 20 R vtable for std::bad_exception 2025-12-05T22:30:33.3986223Z 0xd57d 20 T std::bad_alloc::~bad_alloc() 2025-12-05T22:30:33.3986616Z 0xc26b 20 W executorch_flatbuffer::Program::segments() const 2025-12-05T22:30:33.3987106Z 0xc27f 20 W executorch_flatbuffer::Program::constant_segment() const 2025-12-05T22:30:33.3987630Z 0xc257 20 W executorch_flatbuffer::Program::constant_buffer() const 2025-12-05T22:30:33.3988174Z 0xc1f9 20 W executorch_flatbuffer::Program::execution_plan() const 2025-12-05T22:30:33.3988733Z 0xbec1 20 W executorch_flatbuffer::Tensor::dim_order() const 2025-12-05T22:30:33.3989227Z 0xa8c3 20 W executorch_flatbuffer::Tensor::extra_tensor_info() const 2025-12-05T22:30:33.3989732Z 0xbee5 20 W executorch_flatbuffer::Tensor::allocation_info() const 2025-12-05T22:30:33.3990199Z 0xa8e7 20 W executorch_flatbuffer::EValue::val() const 2025-12-05T22:30:33.3990635Z 0xa943 20 W executorch_flatbuffer::Chain::instructions() const 2025-12-05T22:30:33.3991181Z 0xc1e5 20 W executorch_flatbuffer::SubsegmentOffsets::offsets() const 2025-12-05T22:30:33.3991741Z 0xa92f 20 W executorch_flatbuffer::BackendDelegate::compile_specs() const 2025-12-05T22:30:33.3992274Z 0xa957 20 W executorch_flatbuffer::ExecutionPlan::values() const 2025-12-05T22:30:33.3992763Z 0xc18d 20 W executorch_flatbuffer::ExecutionPlan::name() const 2025-12-05T22:30:33.3993242Z 0xa90b 20 W executorch_flatbuffer::Instruction::instr_args() const 2025-12-05T22:30:33.3993839Z 0xa9f9 20 t executorch::runtime::Method::get_value(unsigned int) const [clone .localalias] 2025-12-05T22:30:33.3994447Z 0xa9f9 20 T executorch::runtime::Method::get_value(unsigned int) const 2025-12-05T22:30:33.3994999Z 0xbe27 20 T executorch::runtime::Method::get_output(unsigned int) const 2025-12-05T22:30:33.4005442Z 0xd2bd 20 T executorch::runtime::pal_abort() 2025-12-05T22:30:33.4005888Z 0xa9e3 20 T executorch::runtime::Method::reset_execution() 2025-12-05T22:30:33.4006375Z 0xdd35 20 T __cxxabiv1::__si_class_type_info::~__si_class_type_info() 2025-12-05T22:30:33.4006870Z 0xdea9 20 T __cxxabiv1::__class_type_info::~__class_type_info() 2025-12-05T22:30:33.4007252Z 0xecdd 18 t selfrel_offset31 2025-12-05T22:30:33.4007635Z 0xefaf 18 T __gnu_Unwind_ForcedUnwind 2025-12-05T22:30:33.4007975Z 0x17d2c 18 R typeinfo name for std::bad_exception 2025-12-05T22:30:33.4008470Z 0xaaef 18 W long flatbuffers::Table::GetField(unsigned short, long) const 2025-12-05T22:30:33.4008998Z 0x8f8d 18 W executorch::runtime::EValue::toDouble() const 2025-12-05T22:30:33.4009469Z 0x8f7b 18 W executorch::runtime::EValue::toInt() const 2025-12-05T22:30:33.4010357Z 0xb1f3 18 W flatbuffers::Vector const* flatbuffers::Table::GetPointer const*, unsigned long>(unsigned short) 2025-12-05T22:30:33.4205778Z 0xab1f 18 W flatbuffers::String const* flatbuffers::Table::GetPointer(unsigned short) 2025-12-05T22:30:33.4207452Z 0xaa7b 18 W executorch::runtime::Result::~Result() 2025-12-05T22:30:33.4208442Z 0xfa4b 18 T _Unwind_GetLanguageSpecificData 2025-12-05T22:30:33.4209036Z 0x1534d 18 T _Bfree 2025-12-05T22:30:33.4209449Z 0x180f0 16 r zeroes.0 2025-12-05T22:30:33.4209879Z 0x10e49 16 T strdup 2025-12-05T22:30:33.4210292Z 0x1010d 16 T memalign 2025-12-05T22:30:33.4210709Z 0x10219 16 T malloc 2025-12-05T22:30:33.4211050Z 0x12809 16 T gettimeofday 2025-12-05T22:30:33.4211420Z 0x127f9 16 T fstat 2025-12-05T22:30:33.4211729Z 0x10229 16 T free 2025-12-05T22:30:33.4212057Z 0x127e9 16 T close 2025-12-05T22:30:33.4212388Z 0x18100 16 r blanks.1 2025-12-05T22:30:33.4212806Z 0x17361 16 T _write 2025-12-05T22:30:33.4213171Z 0x17331 16 T _read 2025-12-05T22:30:33.4213543Z 0x17321 16 T _open 2025-12-05T22:30:33.4213839Z 0x17311 16 T _lseek 2025-12-05T22:30:33.4214152Z 0x17301 16 T _kill 2025-12-05T22:30:33.4214501Z 0x172f1 16 T _isatty 2025-12-05T22:30:33.4214847Z 0x172e1 16 T _gettimeofday 2025-12-05T22:30:33.4215254Z 0x172d1 16 T _getpid 2025-12-05T22:30:33.4215585Z 0x172c1 16 T _fstat 2025-12-05T22:30:33.4215912Z 0x172b1 16 T _close 2025-12-05T22:30:33.4216407Z 0xbed5 16 W executorch_flatbuffer::Tensor::data_buffer_idx() const 2025-12-05T22:30:33.4217194Z 0xbeb1 16 W executorch_flatbuffer::Tensor::scalar_type() const 2025-12-05T22:30:33.4217943Z 0xa8d7 16 W executorch_flatbuffer::EValue::val_type() const 2025-12-05T22:30:33.4219075Z 0xa91f 16 W executorch_flatbuffer::BackendDelegateDataReference::index() const 2025-12-05T22:30:33.4219833Z 0xc1d5 16 W executorch_flatbuffer::SubsegmentOffsets::segment_index() const 2025-12-05T22:30:33.4220459Z 0xa8b3 16 W executorch_flatbuffer::ExtraTensorInfo::location() const 2025-12-05T22:30:33.4221015Z 0xa8fb 16 W executorch_flatbuffer::Instruction::instr_args_type() const 2025-12-05T22:30:33.4221586Z 0xa8a3 16 W flatbuffers::Table::GetOptionalFieldOffset(unsigned short) const 2025-12-05T22:30:33.4222191Z 0xbdf5 16 T executorch::runtime::Method::outputs_size() const 2025-12-05T22:30:33.4222651Z 0xb205 16 T executorch::runtime::Method::inputs_size() const 2025-12-05T22:30:33.4223102Z 0x8f9f 16 W executorch::runtime::EValue::toBool() const 2025-12-05T22:30:33.4223519Z 0x2f394 16 b (anonymous namespace)::emergency_pool 2025-12-05T22:30:33.4223893Z 0xdb95 16 T __cxxabiv1::__terminate(void (*)()) 2025-12-05T22:30:33.4224224Z 0x17e88 16 r Zero 2025-12-05T22:30:33.4224430Z 0xfa61 14 T abort 2025-12-05T22:30:33.4224680Z 0xf001 14 T __gnu_Unwind_Resume_or_Rethrow 2025-12-05T22:30:33.4225436Z 0xa639 14 W executorch::runtime::internal::MergedDataMap::load_data_into(std::basic_string_view >, void*, unsigned int) const 2025-12-05T22:30:33.4226613Z 0xc9cb 14 W executorch::runtime::internal::PteDataMap::load_data_into(std::basic_string_view >, void*, unsigned int) const 2025-12-05T22:30:33.4227433Z 0xc293 14 T executorch::runtime::Program::num_methods() const 2025-12-05T22:30:33.4227900Z 0xc17f 14 W executorch::runtime::FreeableBuffer::data() const 2025-12-05T22:30:33.4228379Z 0xc045 14 T executorch::runtime::MethodMeta::num_inputs() const 2025-12-05T22:30:33.4228893Z 0x17e14 13 R typeinfo name for std::type_info 2025-12-05T22:30:33.4229317Z 0x17d17 13 R typeinfo name for std::exception 2025-12-05T22:30:33.4229664Z 0x17cd7 13 R typeinfo name for std::bad_alloc 2025-12-05T22:30:33.4229990Z 0x17ff4 12 r p05.0 2025-12-05T22:30:33.4230220Z 0xfc89 12 T _cleanup_r 2025-12-05T22:30:33.4230458Z 0x10ab9 12 T __malloc_unlock 2025-12-05T22:30:33.4230728Z 0x10aad 12 T __malloc_lock 2025-12-05T22:30:33.4231012Z 0xfa8d 12 T __errno 2025-12-05T22:30:33.4231270Z 0x17ce4 12 R typeinfo for std::bad_alloc 2025-12-05T22:30:33.4231600Z 0x17d40 12 R typeinfo for std::bad_exception 2025-12-05T22:30:33.4232004Z 0x17ddc 12 R typeinfo for __cxxabiv1::__si_class_type_info 2025-12-05T22:30:33.4232432Z 0x17e50 12 R typeinfo for __cxxabiv1::__class_type_info 2025-12-05T22:30:33.4232805Z 0xdd15 12 T std::get_new_handler() 2025-12-05T22:30:33.4233101Z 0xdbc5 12 T std::get_unexpected() 2025-12-05T22:30:33.4233405Z 0xdba5 12 T std::get_terminate() 2025-12-05T22:30:33.4233826Z 0xc9d9 12 T executorch::runtime::internal::PteDataMap::get_num_keys() const 2025-12-05T22:30:33.4234599Z 0xde87 12 T __cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const 2025-12-05T22:30:33.4235279Z 0x2f3a8 12 b (anonymous namespace)::eh_globals 2025-12-05T22:30:33.4235649Z 0xd2e9 12 T executorch::runtime::pal_free(void*) 2025-12-05T22:30:33.4236049Z 0xd2d1 12 T executorch::runtime::pal_current_ticks() 2025-12-05T22:30:33.4236475Z 0xd2dd 12 T executorch::runtime::pal_allocate(unsigned int) 2025-12-05T22:30:33.4236876Z 0xf011 12 T _Unwind_DeleteException 2025-12-05T22:30:33.4237176Z 0xe1d1 10 T __aeabi_atexit 2025-12-05T22:30:33.4237431Z 0xdbb1 10 T std::terminate() 2025-12-05T22:30:33.4237712Z 0xdbd1 10 T std::unexpected() 2025-12-05T22:30:33.4238154Z 0xa73b 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-12-05T22:30:33.4238937Z 0xc16b 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-12-05T22:30:33.4239800Z 0xc175 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-12-05T22:30:33.4240610Z 0xa10d 10 t executorch::extension::(anonymous namespace)::FreeSegment(void*, void*, unsigned int) 2025-12-05T22:30:33.4241233Z 0xee51 10 t _Unwind_decode_typeinfo_ptr.constprop.0 2025-12-05T22:30:33.4241592Z 0xfa41 10 T _Unwind_GetRegionStart 2025-12-05T22:30:33.4241889Z 0x1516d 8 T _localeconv_r 2025-12-05T22:30:33.4242131Z 0x10c85 8 T __sclose 2025-12-05T22:30:33.4242378Z 0xe1c1 8 T __cxa_get_globals_fast 2025-12-05T22:30:33.4242655Z 0xe1c9 8 T __cxa_get_globals 2025-12-05T22:30:33.4242948Z 0x17e24 8 R typeinfo for std::type_info 2025-12-05T22:30:33.4243264Z 0x17d24 8 R typeinfo for std::exception 2025-12-05T22:30:33.4243672Z 0x17d98 8 R typeinfo for __cxxabiv1::__foreign_exception 2025-12-05T22:30:33.4244099Z 0x17d6c 8 R typeinfo for __cxxabiv1::__forced_unwind 2025-12-05T22:30:33.4244452Z 0xd561 8 T std::bad_alloc::what() const 2025-12-05T22:30:33.4244791Z 0xd699 8 T std::bad_exception::what() const 2025-12-05T22:30:33.4245225Z 0x28e0c 8 b torch::executor::function::(anonymous namespace)::kernel_span 2025-12-05T22:30:33.4245900Z 0xa497 8 T executorch::runtime::internal::reset_data_ptr(executorch::runtime::etensor::Tensor const&) 2025-12-05T22:30:33.4246621Z 0xd2f9 8 t executorch::runtime::(anonymous namespace)::GetUInt64LE(unsigned char const*) 2025-12-05T22:30:33.4247162Z 0xdbbb 8 T __cxxabiv1::__unexpected(void (*)()) 2025-12-05T22:30:33.4247507Z 0x2f308 8 b systemStartTime 2025-12-05T22:30:33.4247866Z 0xd699 8 T transaction clone for std::bad_exception::what() const 2025-12-05T22:30:33.4248264Z 0x8011 6 W et_pal_abort 2025-12-05T22:30:33.4248577Z 0x9f31 6 W executorch::runtime::MemoryAllocator::reset() 2025-12-05T22:30:33.4248991Z 0xd2b1 6 T executorch::runtime::runtime_abort() 2025-12-05T22:30:33.4249325Z 0x80ef 6 T _Unwind_GetTextRelBase 2025-12-05T22:30:33.4249623Z 0x80e9 6 T _Unwind_GetDataRelBase 2025-12-05T22:30:33.4249968Z 0x2f3f4 4 b heap_end.0 2025-12-05T22:30:33.4250214Z 0xd475 4 W et_pal_free 2025-12-05T22:30:33.4250446Z 0xd471 4 W et_pal_allocate 2025-12-05T22:30:33.4250708Z 0x2f3f0 4 B errno 2025-12-05T22:30:33.4250937Z 0x285d8 4 D _impure_ptr 2025-12-05T22:30:33.4251184Z 0x17e98 4 R _global_impure_ptr 2025-12-05T22:30:33.4251458Z 0x10b6d 4 T _getpid_r 2025-12-05T22:30:33.4251730Z 0x28874 4 D __malloc_trim_threshold 2025-12-05T22:30:33.4252029Z 0x2f3ec 4 B __malloc_top_pad 2025-12-05T22:30:33.4252289Z 0x28870 4 D __malloc_sbrk_base 2025-12-05T22:30:33.4252566Z 0x2f3e4 4 B __malloc_max_total_mem 2025-12-05T22:30:33.4252850Z 0x2f3e8 4 B __malloc_max_sbrked_mem 2025-12-05T22:30:33.4253165Z 0xee4d 4 t __gnu_unwind_24bit.constprop.0 2025-12-05T22:30:33.4253483Z 0xf371 4 W __aeabi_unwind_cpp_pr2 2025-12-05T22:30:33.4253781Z 0xf36d 4 W __aeabi_unwind_cpp_pr1 2025-12-05T22:30:33.4254069Z 0xf369 4 T __aeabi_unwind_cpp_pr0 2025-12-05T22:30:33.4254382Z 0xd4bd 4 T operator delete(void*, unsigned int) 2025-12-05T22:30:33.4254776Z 0xd4b9 4 T operator delete(void*, std::align_val_t) 2025-12-05T22:30:33.4255123Z 0xd591 4 T operator delete(void*) 2025-12-05T22:30:33.4255456Z 0xde25 4 T std::type_info::__is_function_p() const 2025-12-05T22:30:33.4255830Z 0xde25 4 T std::type_info::__is_pointer_p() const 2025-12-05T22:30:33.4256321Z 0xa3c7 4 t executorch::runtime::etensor::Tensor::nbytes() const [clone .isra.0] 2025-12-05T22:30:33.4256856Z 0x9f2d 4 W executorch::runtime::MemoryAllocator::size() const 2025-12-05T22:30:33.4257366Z 0x9f29 4 W executorch::runtime::MemoryAllocator::base_address() const 2025-12-05T22:30:33.4257905Z 0xc03d 4 T executorch::runtime::TensorInfo::is_memory_planned() const 2025-12-05T22:30:33.4258356Z 0x2f3a4 4 b (anonymous namespace)::__new_handler 2025-12-05T22:30:33.4258786Z 0xd2b7 4 T executorch::runtime::internal::get_log_timestamp() 2025-12-05T22:30:33.4259273Z 0xaa0d 4 T executorch::runtime::Method::mutable_value(unsigned int) 2025-12-05T22:30:33.4259756Z 0x17c84 4 V executorch::runtime::ExtendedHeader::kMagic 2025-12-05T22:30:33.4260152Z 0xd2f5 4 T executorch::runtime::runtime_init() 2025-12-05T22:30:33.4260640Z 0x2f310 4 b executorch::runtime::(anonymous namespace)::num_registered_backends 2025-12-05T22:30:33.4261273Z 0x29540 4 b executorch::runtime::(anonymous namespace)::num_registered_kernels 2025-12-05T22:30:33.4261962Z 0xc041 4 T executorch::runtime::MethodMeta::MethodMeta(executorch_flatbuffer::ExecutionPlan const*) 2025-12-05T22:30:33.4262549Z 0x285cc 4 D __cxxabiv1::__unexpected_handler 2025-12-05T22:30:33.4262891Z 0x285d0 4 D __cxxabiv1::__terminate_handler 2025-12-05T22:30:33.4263216Z 0xef51 4 T _Unwind_GetCFA 2025-12-05T22:30:33.4263505Z 0xd697 2 T std::bad_exception::~bad_exception() 2025-12-05T22:30:33.4264011Z 0xa647 2 W executorch::runtime::internal::MergedDataMap::~MergedDataMap() 2025-12-05T22:30:33.4264570Z 0xc9e5 2 W executorch::runtime::internal::PteDataMap::~PteDataMap() 2025-12-05T22:30:33.4265087Z 0x9f39 2 W executorch::runtime::MemoryAllocator::~MemoryAllocator() 2025-12-05T22:30:33.4265521Z 0xf7d1 2 t unwind_UCB_from_context 2025-12-05T22:30:33.4265792Z 0x17371 2 T _exit 2025-12-05T22:30:33.4266050Z 0x10109 2 T __retarget_lock_release_recursive 2025-12-05T22:30:33.4266387Z 0x100fd 2 T __retarget_lock_init_recursive 2025-12-05T22:30:33.4266726Z 0x10101 2 T __retarget_lock_close_recursive 2025-12-05T22:30:33.4267060Z 0x10105 2 T __retarget_lock_acquire_recursive 2025-12-05T22:30:33.4267385Z 0xfa5d 2 W __aeabi_ldiv0 2025-12-05T22:30:33.4267637Z 0xfa5d 2 W __aeabi_idiv0 2025-12-05T22:30:33.4267894Z 0xde23 2 T std::type_info::~type_info() 2025-12-05T22:30:33.4268219Z 0xd695 2 T std::exception::~exception() 2025-12-05T22:30:33.4268702Z 0xe1bd 2 t (anonymous namespace)::constant_init::~constant_init() 2025-12-05T22:30:33.4269599Z 0xd2bb 2 T executorch::runtime::internal::vlogf(executorch::runtime::LogLevel, unsigned long long, char const*, char const*, unsigned int, char const*, std::__va_list) 2025-12-05T22:30:33.4270442Z 0xa9f7 2 T executorch::runtime::Method::log_outputs() 2025-12-05T22:30:33.4270850Z 0xee5b 2 t _Unwind_DebugHook 2025-12-05T22:30:33.4271133Z 0xf00f 2 T _Unwind_Complete 2025-12-05T22:30:33.4271390Z 0x28df0 1 b completed.1 2025-12-05T22:30:33.4271674Z 0x2f3b8 1 B __lock___sinit_recursive_mutex 2025-12-05T22:30:33.4272008Z 0x2f3b4 1 B __lock___malloc_recursive_mutex 2025-12-05T22:30:33.4272359Z 0x285d4 1 D __fdlib_version 2025-12-05T22:30:33.4272609Z 0x2f304 1 b initialized 2025-12-05T22:30:33.4272848Z ----- 2025-12-05T22:30:33.4273043Z > Total bytes: 93128 2025-12-05T22:30:33.4273294Z Counted: 499/499, 100.00% (filter: 'All') 2025-12-05T22:30:33.4273574Z ===== 2025-12-05T22:30:33.4273693Z 2025-12-05T22:30:33.4274021Z + python .github/scripts/run_nm.py -e cmake-out/test/size_test -f executorch -p arm-zephyr-eabi- 2025-12-05T22:30:33.4274570Z Elf: cmake-out/test/size_test 2025-12-05T22:30:33.4274749Z 2025-12-05T22:30:33.4274840Z Address Size Type Name 2025-12-05T22:30:33.4275262Z 0x29544 24000 b executorch::runtime::(anonymous namespace)::registered_kernels_data 2025-12-05T22:30:33.4275962Z 0xb4a0 1070 T executorch::runtime::Method::parse_values(executorch::runtime::NamedDataMap const*) 2025-12-05T22:30:33.4277054Z 0xb8d0 1032 T executorch::runtime::Method::init(executorch_flatbuffer::ExecutionPlan*, executorch::runtime::NamedDataMap const*) 2025-12-05T22:30:33.4278111Z 0xc6a4 784 T executorch::runtime::Program::load(executorch::runtime::DataLoader*, executorch::runtime::Program::Verification) 2025-12-05T22:30:33.4278841Z 0xadfc 490 T executorch::runtime::Method::execute_instruction() 2025-12-05T22:30:33.4279482Z 0xb2c0 480 T executorch::runtime::Method::set_input(executorch::runtime::EValue const&, unsigned int) 2025-12-05T22:30:33.4281215Z 0xccf4 424 T executorch::runtime::deserialization::getTensorDataPtr(executorch_flatbuffer::Tensor const*, executorch::runtime::Program const*, unsigned int, executorch::runtime::HierarchicalAllocator*, executorch::runtime::NamedDataMap const*, executorch::runtime::Span) 2025-12-05T22:30:33.4283635Z 0xac58 420 T executorch::runtime::Method::resolve_operator(long, void (**)(executorch::runtime::KernelRuntimeContext&, executorch::runtime::Span), unsigned int, executorch::runtime::Span, unsigned int) 2025-12-05T22:30:33.4285885Z 0xceba 404 T executorch::runtime::deserialization::parseTensor(executorch::runtime::Program const*, executorch::runtime::MemoryManager*, executorch_flatbuffer::Tensor const*, executorch::runtime::NamedDataMap const*, executorch::runtime::Span) 2025-12-05T22:30:33.4287717Z 0x8db2 352 T torch::executor::function::et_view(executorch::runtime::KernelRuntimeContext&, executorch::runtime::Span) 2025-12-05T22:30:33.4289223Z 0xb08a 322 W executorch::runtime::BackendDelegate::Init(executorch_flatbuffer::BackendDelegate const&, executorch::runtime::Program const*, executorch::runtime::BackendInitContext&, executorch::runtime::BackendDelegate*) 2025-12-05T22:30:33.4290578Z 0xab30 294 T executorch::runtime::Method::parse_external_constants(executorch::runtime::NamedDataMap const*) 2025-12-05T22:30:33.4291974Z 0xbcd8 284 T executorch::runtime::Method::load(executorch_flatbuffer::ExecutionPlan*, executorch::runtime::Program const*, executorch::runtime::MemoryManager*, executorch::runtime::EventTracer*, executorch::runtime::NamedDataMap const*) 2025-12-05T22:30:33.4293544Z 0x8ca4 270 T torch::executor::function::et_copy_index(executorch::runtime::KernelRuntimeContext&, executorch::runtime::Span) 2025-12-05T22:30:33.4295103Z 0x90c0 262 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#2}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4296376Z 0x9f70 248 W executorch::runtime::MemoryAllocator::allocate(unsigned int, unsigned int) 2025-12-05T22:30:33.4297690Z 0x9a44 246 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#9}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4299550Z 0x9466 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#16}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4301430Z 0x955a 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#15}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4303291Z 0x964e 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#14}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4305152Z 0x9742 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#13}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4306998Z 0x9836 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#12}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4308924Z 0x9cda 216 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#6}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4310775Z 0x9c06 212 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#7}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4312147Z 0xd08c 208 T executorch::runtime::register_kernels(executorch::runtime::Span) 2025-12-05T22:30:33.4313095Z 0xca38 206 T executorch::runtime::internal::PteDataMap::get_data(std::basic_string_view >) const 2025-12-05T22:30:33.4314519Z 0x9b3a 204 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#8}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4315964Z 0xc53e 198 T executorch::runtime::Program::load_mutable_subsegment_into(unsigned int, unsigned int, unsigned int, void*) const 2025-12-05T22:30:33.4316795Z 0xc0a8 194 T executorch::runtime::MethodMeta::input_tensor_meta(unsigned int) const 2025-12-05T22:30:33.4317730Z 0xd15c 192 T executorch::runtime::internal::make_kernel_key_string(executorch::runtime::Span, char*, unsigned int) 2025-12-05T22:30:33.4319426Z 0x9986 190 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#10}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4320686Z 0xa1e0 168 T executorch::extension::FileDataLoader::from(char const*, unsigned int) 2025-12-05T22:30:33.4321666Z 0xafe6 164 W executorch::runtime::BackendDelegate::GetProcessedData(executorch_flatbuffer::BackendDelegate const&, executorch::runtime::Program const*) 2025-12-05T22:30:33.4322694Z 0xc3ce 160 T executorch::runtime::Program::get_constant_buffer_data(unsigned int, unsigned int) const 2025-12-05T22:30:33.4323894Z 0xcba0 160 T executorch::runtime::deserialization::parseTensorList(flatbuffers::Vector const*, executorch::runtime::EValue*, unsigned int, executorch::runtime::MemoryManager*) 2025-12-05T22:30:33.4325333Z 0xa2dc 152 T executorch::extension::FileDataLoader::load(unsigned int, unsigned int, executorch::runtime::DataLoader::SegmentInfo const&) const 2025-12-05T22:30:33.4326395Z 0x9028 152 t torch::executor::function::(anonymous namespace)::floor_div_double(double, double, executorch::runtime::EValue&) 2025-12-05T22:30:33.4327872Z 0xbfa4 152 T executorch::runtime::TensorInfo::create(executorch::runtime::Span, executorch::runtime::Span, executorch::runtime::etensor::ScalarType, bool, std::basic_string_view >) 2025-12-05T22:30:33.4329362Z 0xd21c 148 T executorch::runtime::get_op_function_from_registry(char const*, executorch::runtime::Span) 2025-12-05T22:30:33.4330857Z 0x9218 144 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#22}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4332070Z 0xc2e6 140 T executorch::runtime::Program::method_meta(char const*) const 2025-12-05T22:30:33.4332664Z 0xd300 136 T executorch::runtime::ExtendedHeader::Parse(void const*, unsigned int) 2025-12-05T22:30:33.4333198Z 0xb214 134 T executorch::runtime::Method::execute() 2025-12-05T22:30:33.4333549Z 0xd3f0 128 W et_pal_emit_log_message 2025-12-05T22:30:33.4334339Z 0xcc40 128 T executorch::runtime::deserialization::validateTensorLayout(executorch_flatbuffer::Tensor const*, executorch::runtime::TensorLayout const&) 2025-12-05T22:30:33.4335274Z 0x2f314 128 b executorch::runtime::(anonymous namespace)::registered_backends 2025-12-05T22:30:33.4336186Z 0xa116 126 T executorch::extension::FileDataLoader::load_into(unsigned int, unsigned int, executorch::runtime::DataLoader::SegmentInfo const&, void*) const 2025-12-05T22:30:33.4337138Z 0xa780 122 W executorch::runtime::internal::MergedDataMap::get_key(unsigned long) const 2025-12-05T22:30:33.4337737Z 0xa96a 120 T executorch::runtime::Method::get_num_external_constants() 2025-12-05T22:30:33.4338488Z 0xa5c2 118 T executorch::runtime::etensor::TensorImpl::internal_resize_contiguous(executorch::runtime::ArrayRef) 2025-12-05T22:30:33.4339374Z 0xbe3a 118 T executorch::runtime::Method::get_outputs(executorch::runtime::EValue*, unsigned int) 2025-12-05T22:30:33.4340675Z 0x9db2 110 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#5}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4342577Z 0x9e20 108 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#4}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4344450Z 0x92fc 106 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#20}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4345577Z 0xaa10 106 T executorch::runtime::Method::~Method() 2025-12-05T22:30:33.4346228Z 0xc4d8 102 T executorch::runtime::Program::LoadSegment(executorch::runtime::DataLoader::SegmentInfo const&) const 2025-12-05T22:30:33.4347220Z 0xa6d6 100 W executorch::runtime::internal::MergedDataMap::get_tensor_layout(std::basic_string_view >) const 2025-12-05T22:30:33.4348669Z 0xcb3c 100 t executorch::runtime::deserialization::(anonymous namespace)::getMemPlannedPtr(executorch_flatbuffer::AllocationDetails const*, unsigned int, executorch::runtime::HierarchicalAllocator*) 2025-12-05T22:30:33.4350016Z 0xaa8c 98 W executorch::runtime::internal::MergedDataMap::get_data(std::basic_string_view >) const 2025-12-05T22:30:33.4351429Z 0x9406 96 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#17}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4353010Z 0xa564 94 W executorch::runtime::Error executorch::runtime::dim_order_to_stride(long const*, unsigned char const*, unsigned int, long*) 2025-12-05T22:30:33.4354394Z 0xc372 92 T executorch::runtime::Program::load_method(char const*, executorch::runtime::MemoryManager*, executorch::runtime::EventTracer*, executorch::runtime::NamedDataMap const*) const 2025-12-05T22:30:33.4356045Z 0x992a 92 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#11}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4357900Z 0x9ed0 88 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#1}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4359114Z 0xc052 86 T executorch::runtime::MethodMeta::input_tag(unsigned int) const 2025-12-05T22:30:33.4359973Z 0xa424 86 T executorch::runtime::internal::copy_tensor_data(executorch::runtime::etensor::Tensor const&, executorch::runtime::etensor::Tensor const&) 2025-12-05T22:30:33.4361010Z 0xc484 84 T executorch::runtime::Program::get_backend_delegate_data(unsigned int, void const**, unsigned int*) const 2025-12-05T22:30:33.4362390Z 0x92a8 84 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#21}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4363798Z 0xa288 84 W executorch::runtime::Result::Result(executorch::runtime::FreeableBuffer&&) 2025-12-05T22:30:33.4364748Z 0xa374 82 T executorch::runtime::BoxedEvalueList >::get() const 2025-12-05T22:30:33.4366166Z 0x91c8 80 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#23}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4368007Z 0x9366 80 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#19}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4369881Z 0x93b6 80 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#18}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4371224Z 0xa854 78 W executorch::runtime::FreeableBuffer::FreeableBuffer(executorch::runtime::FreeableBuffer&&) 2025-12-05T22:30:33.4372023Z 0xa068 76 t executorch::runtime::Result::CheckOk() const [clone .part.0] 2025-12-05T22:30:33.4372808Z 0xa068 76 t executorch::runtime::Result::CheckOk() const [clone .part.0] 2025-12-05T22:30:33.4373410Z 0xa194 74 W executorch::runtime::FreeableBuffer::Free() 2025-12-05T22:30:33.4374128Z 0xc20c 74 t executorch::runtime::(anonymous namespace)::get_execution_plan(executorch_flatbuffer::Program const*, char const*) 2025-12-05T22:30:33.4374832Z 0x8fae 72 W executorch::runtime::EValue::destroy() 2025-12-05T22:30:33.4376042Z 0xbf5a 72 T executorch::runtime::TensorInfo::TensorInfo(executorch::runtime::Span, executorch::runtime::Span, executorch::runtime::etensor::ScalarType, bool, std::basic_string_view >, unsigned int) 2025-12-05T22:30:33.4377355Z 0xc2a0 70 T executorch::runtime::Program::get_method_name(unsigned int) const 2025-12-05T22:30:33.4377964Z 0xc9f4 68 T executorch::runtime::internal::PteDataMap::get_key(unsigned long) const 2025-12-05T22:30:33.4379256Z 0x9e8c 68 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#3}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4380432Z 0xd478 64 T executorch::runtime::get_backend_class(char const*) 2025-12-05T22:30:33.4381250Z 0xbef8 64 t executorch::runtime::(anonymous namespace)::get_tag(executorch_flatbuffer::EValue const*, unsigned int) [clone .constprop.0] 2025-12-05T22:30:33.4382383Z 0xa3e6 62 T executorch::runtime::internal::share_tensor_data(executorch::runtime::etensor::Tensor const&, executorch::runtime::etensor::Tensor const&) 2025-12-05T22:30:33.4383719Z 0xa4f2 62 T executorch::runtime::etensor::TensorImpl::TensorImpl(executorch::runtime::etensor::ScalarType, int, long*, void*, unsigned char*, long*, executorch::runtime::TensorShapeDynamism) 2025-12-05T22:30:33.4384760Z 0xa744 60 W executorch::runtime::internal::MergedDataMap::get_num_keys() const 2025-12-05T22:30:33.4385484Z 0xd04e 60 t executorch::runtime::(anonymous namespace)::copy_char_as_number_to_buf(int, char*, unsigned int) 2025-12-05T22:30:33.4386327Z 0xc66c 56 W executorch::runtime::Result::Result(executorch::runtime::Program&&) 2025-12-05T22:30:33.4387188Z 0xa648 54 W executorch::runtime::internal::PlatformMemoryAllocator::allocate(unsigned int, unsigned int) 2025-12-05T22:30:33.4388339Z 0xc604 52 W std::_Optional_base::_Optional_base(std::_Optional_base&&) 2025-12-05T22:30:33.4390418Z 0xcb08 52 T executorch::runtime::internal::PteDataMap::create(executorch::runtime::DataLoader*, unsigned int, flatbuffers::Vector, unsigned long> const*, flatbuffers::Vector, unsigned long> const*) 2025-12-05T22:30:33.4392859Z 0xc638 52 W executorch::runtime::Program::Program(executorch::runtime::DataLoader*, unsigned int, executorch::runtime::FreeableBuffer&&, executorch_flatbuffer::Program const*, executorch::runtime::FreeableBuffer&&, std::optional&&) 2025-12-05T22:30:33.4394593Z 0xccc0 52 T executorch::runtime::deserialization::get_data_by_key(char const*, executorch::runtime::Span) 2025-12-05T22:30:33.4395571Z 0xa7fa 48 t executorch::runtime::EValue::operator=(executorch::runtime::EValue&&) & [clone .isra.0] 2025-12-05T22:30:33.4396241Z 0xa4c4 46 T executorch::runtime::etensor::compute_numel(long const*, int) 2025-12-05T22:30:33.4396679Z 0xd388 44 W et_pal_init 2025-12-05T22:30:33.4397195Z 0xa82a 42 t executorch::runtime::EValue::operator=(executorch::runtime::EValue const&) & [clone .isra.0] 2025-12-05T22:30:33.4397835Z 0xb1cc 38 T executorch::runtime::Method::method_meta() const 2025-12-05T22:30:33.4398988Z 0x8f12 38 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#25}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4400850Z 0x8f38 38 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#24}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4402337Z 0xa49e 38 T executorch::runtime::internal::resize_tensor_impl(executorch::runtime::etensor::TensorImpl*, executorch::runtime::ArrayRef) 2025-12-05T22:30:33.4403045Z 0xd3b4 36 W et_pal_current_ticks 2025-12-05T22:30:33.4403449Z 0x28514 36 V vtable for executorch::runtime::internal::MergedDataMap 2025-12-05T22:30:33.4403948Z 0x28558 36 D vtable for executorch::runtime::internal::PteDataMap 2025-12-05T22:30:33.4404444Z 0xbf38 34 W executorch_flatbuffer::EValue::val_as_Tensor() const 2025-12-05T22:30:33.4405016Z 0xbe04 34 T executorch::runtime::Method::get_output_index(unsigned int) const 2025-12-05T22:30:33.4405593Z 0xb29a 34 T executorch::runtime::Method::get_input_index(unsigned int) const 2025-12-05T22:30:33.4671214Z 0x9f4c 34 W executorch::runtime::internal::logf(executorch::runtime::LogLevel, unsigned long long, char const*, char const*, unsigned int, char const*, ...) 2025-12-05T22:30:33.4673161Z 0x28538 32 V vtable for executorch::runtime::internal::PlatformMemoryAllocator 2025-12-05T22:30:33.4674158Z 0x284d8 32 V vtable for executorch::runtime::MemoryAllocator 2025-12-05T22:30:33.4675053Z 0x285ac 32 d executorch::runtime::(anonymous namespace)::pal_impl 2025-12-05T22:30:33.4676218Z 0xce9c 30 W long* executorch::runtime::MemoryAllocator::allocateList(unsigned int, unsigned int) 2025-12-05T22:30:33.4677901Z 0xab00 30 W executorch::runtime::EValue** executorch::runtime::MemoryAllocator::allocateList(unsigned int, unsigned int) 2025-12-05T22:30:33.4678743Z 0x284f8 28 D vtable for executorch::extension::FileDataLoader 2025-12-05T22:30:33.4679229Z 0x8f5e 28 W executorch::runtime::etensor::Scalar::toInt() const 2025-12-05T22:30:33.4679736Z 0xa530 28 T executorch::runtime::etensor::TensorImpl::nbytes() const 2025-12-05T22:30:33.4680471Z 0xa47a 28 T executorch::runtime::internal::set_tensor_data(executorch::runtime::etensor::Tensor const&, void*, unsigned int) 2025-12-05T22:30:33.4681428Z 0xa3ca 28 T executorch::runtime::get_dim_order(executorch::runtime::etensor::Tensor const&, unsigned char*, unsigned int) 2025-12-05T22:30:33.4682132Z 0xc1a0 26 W executorch_flatbuffer::DataSegment::offset() const 2025-12-05T22:30:33.4682611Z 0xc1ba 26 W executorch_flatbuffer::DataSegment::size() const 2025-12-05T22:30:33.4683011Z 0xd3d8 24 W et_pal_ticks_to_ns_multiplier 2025-12-05T22:30:33.4683419Z 0xa0b4 24 T executorch::extension::FileDataLoader::size() const 2025-12-05T22:30:33.4683948Z 0xa54c 24 T executorch::runtime::etensor::TensorImpl::element_size() const 2025-12-05T22:30:33.4684749Z 0xc9b4 22 W executorch::runtime::internal::PteDataMap::get_tensor_layout(std::basic_string_view >) const 2025-12-05T22:30:33.4685535Z 0xc46e 22 T executorch::runtime::Program::get_named_data_map() const 2025-12-05T22:30:33.4686204Z 0xa67e 22 W executorch::runtime::internal::PlatformMemoryAllocator::reset() 2025-12-05T22:30:33.4686779Z 0xa0f8 20 T executorch::extension::FileDataLoader::~FileDataLoader() 2025-12-05T22:30:33.4687433Z 0xa6b4 20 W executorch::runtime::internal::PlatformMemoryAllocator::~PlatformMemoryAllocator() 2025-12-05T22:30:33.4688045Z 0xc26a 20 W executorch_flatbuffer::Program::segments() const 2025-12-05T22:30:33.4688548Z 0xc27e 20 W executorch_flatbuffer::Program::constant_segment() const 2025-12-05T22:30:33.4689162Z 0xc256 20 W executorch_flatbuffer::Program::constant_buffer() const 2025-12-05T22:30:33.4689673Z 0xc1f8 20 W executorch_flatbuffer::Program::execution_plan() const 2025-12-05T22:30:33.4690164Z 0xbec0 20 W executorch_flatbuffer::Tensor::dim_order() const 2025-12-05T22:30:33.4690646Z 0xa8c2 20 W executorch_flatbuffer::Tensor::extra_tensor_info() const 2025-12-05T22:30:33.4691160Z 0xbee4 20 W executorch_flatbuffer::Tensor::allocation_info() const 2025-12-05T22:30:33.4691617Z 0xa8e6 20 W executorch_flatbuffer::EValue::val() const 2025-12-05T22:30:33.4692073Z 0xa942 20 W executorch_flatbuffer::Chain::instructions() const 2025-12-05T22:30:33.4692582Z 0xc1e4 20 W executorch_flatbuffer::SubsegmentOffsets::offsets() const 2025-12-05T22:30:33.4693130Z 0xa92e 20 W executorch_flatbuffer::BackendDelegate::compile_specs() const 2025-12-05T22:30:33.4693679Z 0xa956 20 W executorch_flatbuffer::ExecutionPlan::values() const 2025-12-05T22:30:33.4694158Z 0xc18c 20 W executorch_flatbuffer::ExecutionPlan::name() const 2025-12-05T22:30:33.4694656Z 0xa90a 20 W executorch_flatbuffer::Instruction::instr_args() const 2025-12-05T22:30:33.4695233Z 0xa9f8 20 t executorch::runtime::Method::get_value(unsigned int) const [clone .localalias] 2025-12-05T22:30:33.4695895Z 0xa9f8 20 T executorch::runtime::Method::get_value(unsigned int) const 2025-12-05T22:30:33.4696440Z 0xbe26 20 T executorch::runtime::Method::get_output(unsigned int) const 2025-12-05T22:30:33.4696897Z 0xd2bc 20 T executorch::runtime::pal_abort() 2025-12-05T22:30:33.4697307Z 0xa9e2 20 T executorch::runtime::Method::reset_execution() 2025-12-05T22:30:33.4697779Z 0x8f8c 18 W executorch::runtime::EValue::toDouble() const 2025-12-05T22:30:33.4698208Z 0x8f7a 18 W executorch::runtime::EValue::toInt() const 2025-12-05T22:30:33.4698736Z 0xaa7a 18 W executorch::runtime::Result::~Result() 2025-12-05T22:30:33.4699334Z 0xbed4 16 W executorch_flatbuffer::Tensor::data_buffer_idx() const 2025-12-05T22:30:33.4699832Z 0xbeb0 16 W executorch_flatbuffer::Tensor::scalar_type() const 2025-12-05T22:30:33.4700289Z 0xa8d6 16 W executorch_flatbuffer::EValue::val_type() const 2025-12-05T22:30:33.4700828Z 0xa91e 16 W executorch_flatbuffer::BackendDelegateDataReference::index() const 2025-12-05T22:30:33.4701428Z 0xc1d4 16 W executorch_flatbuffer::SubsegmentOffsets::segment_index() const 2025-12-05T22:30:33.4701989Z 0xa8b2 16 W executorch_flatbuffer::ExtraTensorInfo::location() const 2025-12-05T22:30:33.4702523Z 0xa8fa 16 W executorch_flatbuffer::Instruction::instr_args_type() const 2025-12-05T22:30:33.4703044Z 0xbdf4 16 T executorch::runtime::Method::outputs_size() const 2025-12-05T22:30:33.4703510Z 0xb204 16 T executorch::runtime::Method::inputs_size() const 2025-12-05T22:30:33.4703943Z 0x8f9e 16 W executorch::runtime::EValue::toBool() const 2025-12-05T22:30:33.4704749Z 0xa638 14 W executorch::runtime::internal::MergedDataMap::load_data_into(std::basic_string_view >, void*, unsigned int) const 2025-12-05T22:30:33.4705912Z 0xc9ca 14 W executorch::runtime::internal::PteDataMap::load_data_into(std::basic_string_view >, void*, unsigned int) const 2025-12-05T22:30:33.4706730Z 0xc292 14 T executorch::runtime::Program::num_methods() const 2025-12-05T22:30:33.4707188Z 0xc17e 14 W executorch::runtime::FreeableBuffer::data() const 2025-12-05T22:30:33.4707661Z 0xc044 14 T executorch::runtime::MethodMeta::num_inputs() const 2025-12-05T22:30:33.4708217Z 0xc9d8 12 T executorch::runtime::internal::PteDataMap::get_num_keys() const 2025-12-05T22:30:33.4708792Z 0xd2e8 12 T executorch::runtime::pal_free(void*) 2025-12-05T22:30:33.4709195Z 0xd2d0 12 T executorch::runtime::pal_current_ticks() 2025-12-05T22:30:33.4709639Z 0xd2dc 12 T executorch::runtime::pal_allocate(unsigned int) 2025-12-05T22:30:33.4710188Z 0xa73a 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-12-05T22:30:33.4710997Z 0xc16a 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-12-05T22:30:33.4711860Z 0xc174 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-12-05T22:30:33.4712668Z 0xa10c 10 t executorch::extension::(anonymous namespace)::FreeSegment(void*, void*, unsigned int) 2025-12-05T22:30:33.4713437Z 0xa496 8 T executorch::runtime::internal::reset_data_ptr(executorch::runtime::etensor::Tensor const&) 2025-12-05T22:30:33.4714160Z 0xd2f8 8 t executorch::runtime::(anonymous namespace)::GetUInt64LE(unsigned char const*) 2025-12-05T22:30:33.4714664Z 0x8010 6 W et_pal_abort 2025-12-05T22:30:33.4714983Z 0x9f30 6 W executorch::runtime::MemoryAllocator::reset() 2025-12-05T22:30:33.4715396Z 0xd2b0 6 T executorch::runtime::runtime_abort() 2025-12-05T22:30:33.4715719Z 0xd474 4 W et_pal_free 2025-12-05T22:30:33.4715965Z 0xd470 4 W et_pal_allocate 2025-12-05T22:30:33.4716376Z 0xa3c6 4 t executorch::runtime::etensor::Tensor::nbytes() const [clone .isra.0] 2025-12-05T22:30:33.4716912Z 0x9f2c 4 W executorch::runtime::MemoryAllocator::size() const 2025-12-05T22:30:33.4717417Z 0x9f28 4 W executorch::runtime::MemoryAllocator::base_address() const 2025-12-05T22:30:33.4717940Z 0xc03c 4 T executorch::runtime::TensorInfo::is_memory_planned() const 2025-12-05T22:30:33.4718697Z 0xd2b6 4 T executorch::runtime::internal::get_log_timestamp() 2025-12-05T22:30:33.4719188Z 0xaa0c 4 T executorch::runtime::Method::mutable_value(unsigned int) 2025-12-05T22:30:33.4719678Z 0x17c84 4 V executorch::runtime::ExtendedHeader::kMagic 2025-12-05T22:30:33.4720132Z 0xd2f4 4 T executorch::runtime::runtime_init() 2025-12-05T22:30:33.4720620Z 0x2f310 4 b executorch::runtime::(anonymous namespace)::num_registered_backends 2025-12-05T22:30:33.4721223Z 0x29540 4 b executorch::runtime::(anonymous namespace)::num_registered_kernels 2025-12-05T22:30:33.4721903Z 0xc040 4 T executorch::runtime::MethodMeta::MethodMeta(executorch_flatbuffer::ExecutionPlan const*) 2025-12-05T22:30:33.4722586Z 0xa646 2 W executorch::runtime::internal::MergedDataMap::~MergedDataMap() 2025-12-05T22:30:33.4723124Z 0xc9e4 2 W executorch::runtime::internal::PteDataMap::~PteDataMap() 2025-12-05T22:30:33.4723650Z 0x9f38 2 W executorch::runtime::MemoryAllocator::~MemoryAllocator() 2025-12-05T22:30:33.4724561Z 0xd2ba 2 T executorch::runtime::internal::vlogf(executorch::runtime::LogLevel, unsigned long long, char const*, char const*, unsigned int, char const*, std::__va_list) 2025-12-05T22:30:33.4725410Z 0xa9f6 2 T executorch::runtime::Method::log_outputs() 2025-12-05T22:30:33.4725753Z ----- 2025-12-05T22:30:33.4725950Z > Total bytes: 42626 2025-12-05T22:30:33.4726224Z Counted: 198/499, 39.68% (filter: 'ExecuTorch') 2025-12-05T22:30:33.4726524Z ===== 2025-12-05T22:30:33.4726667Z 2025-12-05T22:30:33.4727018Z + python .github/scripts/run_nm.py -e cmake-out/test/size_test -f executorch_text -p arm-zephyr-eabi- 2025-12-05T22:30:33.4727581Z Elf: cmake-out/test/size_test 2025-12-05T22:30:33.4727777Z 2025-12-05T22:30:33.4727870Z Address Size Type Name 2025-12-05T22:30:33.4728365Z 0xb4a0 1070 T executorch::runtime::Method::parse_values(executorch::runtime::NamedDataMap const*) 2025-12-05T22:30:33.4729255Z 0xb8d0 1032 T executorch::runtime::Method::init(executorch_flatbuffer::ExecutionPlan*, executorch::runtime::NamedDataMap const*) 2025-12-05T22:30:33.4730273Z 0xc6a4 784 T executorch::runtime::Program::load(executorch::runtime::DataLoader*, executorch::runtime::Program::Verification) 2025-12-05T22:30:33.4731055Z 0xadfc 490 T executorch::runtime::Method::execute_instruction() 2025-12-05T22:30:33.4731690Z 0xb2c0 480 T executorch::runtime::Method::set_input(executorch::runtime::EValue const&, unsigned int) 2025-12-05T22:30:33.4733430Z 0xccf4 424 T executorch::runtime::deserialization::getTensorDataPtr(executorch_flatbuffer::Tensor const*, executorch::runtime::Program const*, unsigned int, executorch::runtime::HierarchicalAllocator*, executorch::runtime::NamedDataMap const*, executorch::runtime::Span) 2025-12-05T22:30:33.4736060Z 0xac58 420 T executorch::runtime::Method::resolve_operator(long, void (**)(executorch::runtime::KernelRuntimeContext&, executorch::runtime::Span), unsigned int, executorch::runtime::Span, unsigned int) 2025-12-05T22:30:33.4738420Z 0xceba 404 T executorch::runtime::deserialization::parseTensor(executorch::runtime::Program const*, executorch::runtime::MemoryManager*, executorch_flatbuffer::Tensor const*, executorch::runtime::NamedDataMap const*, executorch::runtime::Span) 2025-12-05T22:30:33.4740229Z 0x8db2 352 T torch::executor::function::et_view(executorch::runtime::KernelRuntimeContext&, executorch::runtime::Span) 2025-12-05T22:30:33.4741242Z 0xab30 294 T executorch::runtime::Method::parse_external_constants(executorch::runtime::NamedDataMap const*) 2025-12-05T22:30:33.4742643Z 0xbcd8 284 T executorch::runtime::Method::load(executorch_flatbuffer::ExecutionPlan*, executorch::runtime::Program const*, executorch::runtime::MemoryManager*, executorch::runtime::EventTracer*, executorch::runtime::NamedDataMap const*) 2025-12-05T22:30:33.4744229Z 0x8ca4 270 T torch::executor::function::et_copy_index(executorch::runtime::KernelRuntimeContext&, executorch::runtime::Span) 2025-12-05T22:30:33.4745851Z 0x90c0 262 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#2}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4747763Z 0x9a44 246 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#9}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4749708Z 0x9466 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#16}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4751561Z 0x955a 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#15}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4753430Z 0x964e 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#14}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4755286Z 0x9742 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#13}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4757142Z 0x9836 244 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#12}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4758986Z 0x9cda 216 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#6}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4760887Z 0x9c06 212 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#7}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4762270Z 0xd08c 208 T executorch::runtime::register_kernels(executorch::runtime::Span) 2025-12-05T22:30:33.4763187Z 0xca38 206 T executorch::runtime::internal::PteDataMap::get_data(std::basic_string_view >) const 2025-12-05T22:30:33.4764639Z 0x9b3a 204 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#8}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4766077Z 0xc53e 198 T executorch::runtime::Program::load_mutable_subsegment_into(unsigned int, unsigned int, unsigned int, void*) const 2025-12-05T22:30:33.4766891Z 0xc0a8 194 T executorch::runtime::MethodMeta::input_tensor_meta(unsigned int) const 2025-12-05T22:30:33.4767824Z 0xd15c 192 T executorch::runtime::internal::make_kernel_key_string(executorch::runtime::Span, char*, unsigned int) 2025-12-05T22:30:33.4769611Z 0x9986 190 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#10}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4770886Z 0xa1e0 168 T executorch::extension::FileDataLoader::from(char const*, unsigned int) 2025-12-05T22:30:33.4771610Z 0xc3ce 160 T executorch::runtime::Program::get_constant_buffer_data(unsigned int, unsigned int) const 2025-12-05T22:30:33.4772847Z 0xcba0 160 T executorch::runtime::deserialization::parseTensorList(flatbuffers::Vector const*, executorch::runtime::EValue*, unsigned int, executorch::runtime::MemoryManager*) 2025-12-05T22:30:33.4774233Z 0xa2dc 152 T executorch::extension::FileDataLoader::load(unsigned int, unsigned int, executorch::runtime::DataLoader::SegmentInfo const&) const 2025-12-05T22:30:33.4775332Z 0x9028 152 t torch::executor::function::(anonymous namespace)::floor_div_double(double, double, executorch::runtime::EValue&) 2025-12-05T22:30:33.4776760Z 0xbfa4 152 T executorch::runtime::TensorInfo::create(executorch::runtime::Span, executorch::runtime::Span, executorch::runtime::etensor::ScalarType, bool, std::basic_string_view >) 2025-12-05T22:30:33.4778269Z 0xd21c 148 T executorch::runtime::get_op_function_from_registry(char const*, executorch::runtime::Span) 2025-12-05T22:30:33.4779752Z 0x9218 144 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#22}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4781334Z 0xc2e6 140 T executorch::runtime::Program::method_meta(char const*) const 2025-12-05T22:30:33.4782044Z 0xd300 136 T executorch::runtime::ExtendedHeader::Parse(void const*, unsigned int) 2025-12-05T22:30:33.4782565Z 0xb214 134 T executorch::runtime::Method::execute() 2025-12-05T22:30:33.4783541Z 0xcc40 128 T executorch::runtime::deserialization::validateTensorLayout(executorch_flatbuffer::Tensor const*, executorch::runtime::TensorLayout const&) 2025-12-05T22:30:33.4784872Z 0xa116 126 T executorch::extension::FileDataLoader::load_into(unsigned int, unsigned int, executorch::runtime::DataLoader::SegmentInfo const&, void*) const 2025-12-05T22:30:33.4785925Z 0xa96a 120 T executorch::runtime::Method::get_num_external_constants() 2025-12-05T22:30:33.4786679Z 0xa5c2 118 T executorch::runtime::etensor::TensorImpl::internal_resize_contiguous(executorch::runtime::ArrayRef) 2025-12-05T22:30:33.4787511Z 0xbe3a 118 T executorch::runtime::Method::get_outputs(executorch::runtime::EValue*, unsigned int) 2025-12-05T22:30:33.4788970Z 0x9db2 110 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#5}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4790856Z 0x9e20 108 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#4}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4792748Z 0x92fc 106 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#20}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4794123Z 0xaa10 106 T executorch::runtime::Method::~Method() 2025-12-05T22:30:33.4794783Z 0xc4d8 102 T executorch::runtime::Program::LoadSegment(executorch::runtime::DataLoader::SegmentInfo const&) const 2025-12-05T22:30:33.4796088Z 0xcb3c 100 t executorch::runtime::deserialization::(anonymous namespace)::getMemPlannedPtr(executorch_flatbuffer::AllocationDetails const*, unsigned int, executorch::runtime::HierarchicalAllocator*) 2025-12-05T22:30:33.4797870Z 0x9406 96 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#17}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4799721Z 0xc372 92 T executorch::runtime::Program::load_method(char const*, executorch::runtime::MemoryManager*, executorch::runtime::EventTracer*, executorch::runtime::NamedDataMap const*) const 2025-12-05T22:30:33.4802252Z 0x992a 92 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#11}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4822055Z Traceback (most recent call last): 2025-12-05T22:30:33.4823034Z File "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py", line 102, in 2025-12-05T22:30:33.4824696Z 0x9ed0 88 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#1}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4825930Z 0xc052 86 T executorch::runtime::MethodMeta::input_tag(unsigned int) const 2025-12-05T22:30:33.4826789Z 0xa424 86 T executorch::runtime::internal::copy_tensor_data(executorch::runtime::etensor::Tensor const&, executorch::runtime::etensor::Tensor const&) 2025-12-05T22:30:33.4827889Z 0xc484 84 T executorch::runtime::Program::get_backend_delegate_data(unsigned int, void const**, unsigned int*) const 2025-12-05T22:30:33.4829364Z 0x92a8 84 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#21}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4830744Z 0xa374 82 T executorch::runtime::BoxedEvalueList >::get() const 2025-12-05T22:30:33.4832144Z 0x91c8 80 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#23}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4833995Z 0x9366 80 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#19}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4835900Z 0x93b6 80 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#18}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4837224Z 0xa068 76 t executorch::runtime::Result::CheckOk() const [clone .part.0] 2025-12-05T22:30:33.4838022Z 0xa068 76 t executorch::runtime::Result::CheckOk() const [clone .part.0] 2025-12-05T22:30:33.4838905Z 0xc20c 74 t executorch::runtime::(anonymous namespace)::get_execution_plan(executorch_flatbuffer::Program const*, char const*) 2025-12-05T22:30:33.4840470Z 0xbf5a 72 T executorch::runtime::TensorInfo::TensorInfo(executorch::runtime::Span, executorch::runtime::Span, executorch::runtime::etensor::ScalarType, bool, std::basic_string_view >, unsigned int) 2025-12-05T22:30:33.4841797Z 0xc2a0 70 T executorch::runtime::Program::get_method_name(unsigned int) const 2025-12-05T22:30:33.4842405Z 0xc9f4 68 T executorch::runtime::internal::PteDataMap::get_key(unsigned long) const 2025-12-05T22:30:33.4843657Z 0x9e8c 68 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#3}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4844818Z 0xd478 64 T executorch::runtime::get_backend_class(char const*) 2025-12-05T22:30:33.4845606Z 0xbef8 64 t executorch::runtime::(anonymous namespace)::get_tag(executorch_flatbuffer::EValue const*, unsigned int) [clone .constprop.0] 2025-12-05T22:30:33.4846738Z 0xa3e6 62 T executorch::runtime::internal::share_tensor_data(executorch::runtime::etensor::Tensor const&, executorch::runtime::etensor::Tensor const&) 2025-12-05T22:30:33.4848064Z 0xa4f2 62 T executorch::runtime::etensor::TensorImpl::TensorImpl(executorch::runtime::etensor::ScalarType, int, long*, void*, unsigned char*, long*, executorch::runtime::TensorShapeDynamism) 2025-12-05T22:30:33.4849026Z main() 2025-12-05T22:30:33.4849668Z File "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py", line 98, in main 2025-12-05T22:30:33.4850484Z run_cmd_or_die(f"docker exec -t {container_name} /exec") 2025-12-05T22:30:33.4851322Z File "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py", line 39, in run_cmd_or_die 2025-12-05T22:30:33.4852215Z raise RuntimeError(f"Command {cmd} failed with exit code {exit_code}") 2025-12-05T22:30:33.4853081Z RuntimeError: Command docker exec -t a725f1c22e3858929068cfe9dfcce09290af494fb1bd013ec9c6f317e7180479 /exec failed with exit code 1 2025-12-05T22:30:33.4854078Z 0xd04e 60 t executorch::runtime::(anonymous namespace)::copy_char_as_number_to_buf(int, char*, unsigned int) 2025-12-05T22:30:33.4855763Z 0xcb08 52 T executorch::runtime::internal::PteDataMap::create(executorch::runtime::DataLoader*, unsigned int, flatbuffers::Vector, unsigned long> const*, flatbuffers::Vector, unsigned long> const*) 2025-12-05T22:30:33.4857646Z 0xccc0 52 T executorch::runtime::deserialization::get_data_by_key(char const*, executorch::runtime::Span) 2025-12-05T22:30:33.4858628Z 0xa7fa 48 t executorch::runtime::EValue::operator=(executorch::runtime::EValue&&) & [clone .isra.0] 2025-12-05T22:30:33.4859280Z 0xa4c4 46 T executorch::runtime::etensor::compute_numel(long const*, int) 2025-12-05T22:30:33.4859966Z 0xa82a 42 t executorch::runtime::EValue::operator=(executorch::runtime::EValue const&) & [clone .isra.0] 2025-12-05T22:30:33.4860591Z 0xb1cc 38 T executorch::runtime::Method::method_meta() const 2025-12-05T22:30:33.4861757Z 0x8f12 38 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#25}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4863642Z 0x8f38 38 t torch::executor::function::(anonymous namespace)::prim_ops::{lambda(executorch::runtime::KernelRuntimeContext&, executorch::Span)#24}::_FUN(executorch::runtime::KernelRuntimeContext, executorch::EValue*) 2025-12-05T22:30:33.4865120Z 0xa49e 38 T executorch::runtime::internal::resize_tensor_impl(executorch::runtime::etensor::TensorImpl*, executorch::runtime::ArrayRef) 2025-12-05T22:30:33.4865976Z 0xbe04 34 T executorch::runtime::Method::get_output_index(unsigned int) const 2025-12-05T22:30:33.4866596Z 0xb29a 34 T executorch::runtime::Method::get_input_index(unsigned int) const 2025-12-05T22:30:33.4867143Z 0xa530 28 T executorch::runtime::etensor::TensorImpl::nbytes() const 2025-12-05T22:30:33.4867887Z 0xa47a 28 T executorch::runtime::internal::set_tensor_data(executorch::runtime::etensor::Tensor const&, void*, unsigned int) 2025-12-05T22:30:33.4868922Z 0xa3ca 28 T executorch::runtime::get_dim_order(executorch::runtime::etensor::Tensor const&, unsigned char*, unsigned int) 2025-12-05T22:30:33.4869648Z 0xa0b4 24 T executorch::extension::FileDataLoader::size() const 2025-12-05T22:30:33.4870184Z 0xa54c 24 T executorch::runtime::etensor::TensorImpl::element_size() const 2025-12-05T22:30:33.4870723Z 0xc46e 22 T executorch::runtime::Program::get_named_data_map() const 2025-12-05T22:30:33.4871253Z 0xa0f8 20 T executorch::extension::FileDataLoader::~FileDataLoader() 2025-12-05T22:30:33.4871851Z 0xa9f8 20 t executorch::runtime::Method::get_value(unsigned int) const [clone .localalias] 2025-12-05T22:30:33.4872479Z 0xa9f8 20 T executorch::runtime::Method::get_value(unsigned int) const 2025-12-05T22:30:33.4873014Z 0xbe26 20 T executorch::runtime::Method::get_output(unsigned int) const 2025-12-05T22:30:33.4873482Z 0xd2bc 20 T executorch::runtime::pal_abort() 2025-12-05T22:30:33.4873922Z 0xa9e2 20 T executorch::runtime::Method::reset_execution() 2025-12-05T22:30:33.4874376Z 0xbdf4 16 T executorch::runtime::Method::outputs_size() const 2025-12-05T22:30:33.4874846Z 0xb204 16 T executorch::runtime::Method::inputs_size() const 2025-12-05T22:30:33.4875304Z 0xc292 14 T executorch::runtime::Program::num_methods() const 2025-12-05T22:30:33.4875818Z 0xc044 14 T executorch::runtime::MethodMeta::num_inputs() const 2025-12-05T22:30:33.4876334Z 0xc9d8 12 T executorch::runtime::internal::PteDataMap::get_num_keys() const 2025-12-05T22:30:33.4876825Z 0xd2e8 12 T executorch::runtime::pal_free(void*) 2025-12-05T22:30:33.4877222Z 0xd2d0 12 T executorch::runtime::pal_current_ticks() 2025-12-05T22:30:33.4877646Z 0xd2dc 12 T executorch::runtime::pal_allocate(unsigned int) 2025-12-05T22:30:33.4878206Z 0xa73a 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-12-05T22:30:33.4878972Z 0xc16a 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-12-05T22:30:33.4880330Z 0xc174 10 t executorch::runtime::Result::CheckOk() const [clone .isra.0] 2025-12-05T22:30:33.4881600Z 0xa10c 10 t executorch::extension::(anonymous namespace)::FreeSegment(void*, void*, unsigned int) 2025-12-05T22:30:33.4882377Z 0xa496 8 T executorch::runtime::internal::reset_data_ptr(executorch::runtime::etensor::Tensor const&) 2025-12-05T22:30:33.4883112Z 0xd2f8 8 t executorch::runtime::(anonymous namespace)::GetUInt64LE(unsigned char const*) 2025-12-05T22:30:33.4883639Z 0xd2b0 6 T executorch::runtime::runtime_abort() 2025-12-05T22:30:33.4884122Z 0xa3c6 4 t executorch::runtime::etensor::Tensor::nbytes() const [clone .isra.0] 2025-12-05T22:30:33.4884682Z 0xc03c 4 T executorch::runtime::TensorInfo::is_memory_planned() const 2025-12-05T22:30:33.4885191Z 0xd2b6 4 T executorch::runtime::internal::get_log_timestamp() 2025-12-05T22:30:33.4885688Z 0xaa0c 4 T executorch::runtime::Method::mutable_value(unsigned int) 2025-12-05T22:30:33.4886129Z 0xd2f4 4 T executorch::runtime::runtime_init() 2025-12-05T22:30:33.4886712Z 0xc040 4 T executorch::runtime::MethodMeta::MethodMeta(executorch_flatbuffer::ExecutionPlan const*) 2025-12-05T22:30:33.4887791Z 0xd2ba 2 T executorch::runtime::internal::vlogf(executorch::runtime::LogLevel, unsigned long long, char const*, char const*, unsigned int, char const*, std::__va_list) 2025-12-05T22:30:33.4888659Z 0xa9f6 2 T executorch::runtime::Method::log_outputs() 2025-12-05T22:30:33.4888994Z ----- 2025-12-05T22:30:33.4889203Z > Total bytes: 15518 2025-12-05T22:30:33.4889501Z Counted: 120/499, 24.05% (filter: 'ExecuTorch .text') 2025-12-05T22:30:33.4889825Z ===== 2025-12-05T22:30:33.4889934Z 2025-12-05T22:30:33.4890115Z + arm-zephyr-eabi-strip cmake-out/test/size_test 2025-12-05T22:30:33.4890464Z ++ ls -la cmake-out/test/size_test 2025-12-05T22:30:33.4890905Z + output='-rwxr-xr-x. 1 ci-user ci-user 135776 Dec 5 22:30 cmake-out/test/size_test' 2025-12-05T22:30:33.4891342Z + arr=($output) 2025-12-05T22:30:33.4891559Z + size=135776 2025-12-05T22:30:33.4891777Z + echo 'size: 135776, threshold: 135768' 2025-12-05T22:30:33.4892092Z size: 135776, threshold: 135768 2025-12-05T22:30:33.4892364Z + [[ 135776 -le 135768 ]] 2025-12-05T22:30:33.4892607Z + echo 'Fail 135776 > 135768' 2025-12-05T22:30:33.4892870Z Fail 135776 > 135768 2025-12-05T22:30:33.4893081Z + exit 1 2025-12-05T22:30:33.4904035Z ##[error]Process completed with exit code 1. 2025-12-05T22:30:33.4966763Z ##[group]Run pmeier/pytest-results-action@a2c1430e2bddadbad9f49a6f9b879f062c6b19b1 2025-12-05T22:30:33.4967483Z with: 2025-12-05T22:30:33.4967904Z path: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:30:33.4968648Z fail-on-empty: false 2025-12-05T22:30:33.4969079Z env: 2025-12-05T22:30:33.4969512Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:30:33.4970047Z REPOSITORY: pytorch/executorch 2025-12-05T22:30:33.4970448Z PR_NUMBER: 2025-12-05T22:30:33.4981353Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:30:33.4992183Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:30:33.4992794Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:30:33.4993353Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:30:33.4993731Z ##[endgroup] 2025-12-05T22:30:33.5591766Z ##[group]Run # Only do these steps if we actually want to upload an artifact 2025-12-05T22:30:33.5592374Z # Only do these steps if we actually want to upload an artifact 2025-12-05T22:30:33.5592853Z if [[ -n "${UPLOAD_ARTIFACT_NAME}" ]]; then 2025-12-05T22:30:33.5593398Z  # If the default execution path is followed then we should get a wheel in the dist/ folder 2025-12-05T22:30:33.5594030Z  # attempt to just grab whatever is in there and scoop it all up 2025-12-05T22:30:33.5594533Z  if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then 2025-12-05T22:30:33.5594961Z  mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/" 2025-12-05T22:30:33.5595298Z  fi 2025-12-05T22:30:33.5595560Z  if [[ -d "artifacts-to-be-uploaded" ]]; then 2025-12-05T22:30:33.5596015Z  mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/" 2025-12-05T22:30:33.5596412Z  fi 2025-12-05T22:30:33.5596747Z  if [[ -d "${RUNNER_TEMP}/artifacts-to-be-uploaded" ]]; then 2025-12-05T22:30:33.5597275Z  mv -v "${RUNNER_TEMP}"/artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/" 2025-12-05T22:30:33.5597813Z  fi 2025-12-05T22:30:33.5598013Z fi 2025-12-05T22:30:33.5598218Z  2025-12-05T22:30:33.5598428Z upload_docs=0 2025-12-05T22:30:33.5598818Z # Check if there are files in the documentation folder to upload, note that 2025-12-05T22:30:33.5599289Z # empty folders do not count 2025-12-05T22:30:33.5599785Z if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 -type f | read -r; then 2025-12-05T22:30:33.5600390Z  # TODO: Add a check here to test if on ec2 because if we're not on ec2 then this 2025-12-05T22:30:33.5600884Z  # upload will probably not work correctly 2025-12-05T22:30:33.5601226Z  upload_docs=1 2025-12-05T22:30:33.5601474Z fi 2025-12-05T22:30:33.5601776Z echo "upload-docs=${upload_docs}" >> "${GITHUB_OUTPUT}" 2025-12-05T22:30:33.5611191Z shell: /usr/bin/bash -e {0} 2025-12-05T22:30:33.5611453Z env: 2025-12-05T22:30:33.5611740Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:30:33.5612131Z REPOSITORY: pytorch/executorch 2025-12-05T22:30:33.5612417Z PR_NUMBER: 2025-12-05T22:30:33.5623112Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:30:33.5633049Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:30:33.5633659Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:30:33.5634209Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:30:33.5634609Z UPLOAD_ARTIFACT_NAME: 2025-12-05T22:30:33.5634850Z ##[endgroup] 2025-12-05T22:30:33.5769385Z Prepare all required actions 2025-12-05T22:30:33.5806939Z ##[group]Run ./test-infra/.github/actions/teardown-linux 2025-12-05T22:30:33.5807309Z with: 2025-12-05T22:30:33.5807499Z env: 2025-12-05T22:30:33.5807779Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:30:33.5808162Z REPOSITORY: pytorch/executorch 2025-12-05T22:30:33.5808527Z PR_NUMBER: 2025-12-05T22:30:33.5817974Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:30:33.5828271Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:30:33.5844740Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:30:33.5845332Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:30:33.5845731Z ##[endgroup] 2025-12-05T22:30:33.5872458Z ##[group]Run set -eou pipefail 2025-12-05T22:30:33.5872779Z set -eou pipefail 2025-12-05T22:30:33.5873054Z  2025-12-05T22:30:33.5873442Z echo "Holding runner for 2 hours until all ssh sessions have logged out" 2025-12-05T22:30:33.5873905Z for _ in $(seq 1440); do 2025-12-05T22:30:33.5874240Z  # Break if no ssh session exists anymore 2025-12-05T22:30:33.5874584Z  if [ "$(who)" = "" ]; then 2025-12-05T22:30:33.5874887Z  break 2025-12-05T22:30:33.5875108Z  fi 2025-12-05T22:30:33.5875334Z  echo "." 2025-12-05T22:30:33.5875565Z  sleep 5 2025-12-05T22:30:33.5875800Z done 2025-12-05T22:30:33.5881481Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:30:33.5881923Z env: 2025-12-05T22:30:33.5882204Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:30:33.5882603Z REPOSITORY: pytorch/executorch 2025-12-05T22:30:33.5882893Z PR_NUMBER: 2025-12-05T22:30:33.5892300Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:30:33.5902275Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:30:33.5902876Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:30:33.5903456Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:30:33.5903859Z ##[endgroup] 2025-12-05T22:30:33.5927280Z Holding runner for 2 hours until all ssh sessions have logged out 2025-12-05T22:30:33.6012461Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-12-05T22:30:33.6013033Z # ignore expansion of "docker ps -q" since it could be empty 2025-12-05T22:30:33.6013486Z # shellcheck disable=SC2046 2025-12-05T22:30:33.6013813Z docker stop $(docker ps -q) || true 2025-12-05T22:30:33.6014160Z # Prune all of the docker images 2025-12-05T22:30:33.6014495Z docker system prune -af 2025-12-05T22:30:33.6020086Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:30:33.6020453Z env: 2025-12-05T22:30:33.6020739Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:30:33.6021127Z REPOSITORY: pytorch/executorch 2025-12-05T22:30:33.6021394Z PR_NUMBER: 2025-12-05T22:30:33.6030931Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:30:33.6040851Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:30:33.6041466Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:30:33.6042030Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:30:33.6042413Z ##[endgroup] 2025-12-05T22:30:44.2704812Z a725f1c22e38 2025-12-05T22:30:44.8160748Z Deleted Containers: 2025-12-05T22:30:44.8161324Z a725f1c22e3858929068cfe9dfcce09290af494fb1bd013ec9c6f317e7180479 2025-12-05T22:30:44.8161789Z 2025-12-05T22:30:47.8636488Z Deleted Images: 2025-12-05T22:30:47.8637629Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image:executorch-ubuntu-22.04-arm-sdk-8b194b3d34040a6246469ef4313dbaffb5ffffc4 2025-12-05T22:30:47.8639381Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/ci-image@sha256:27d0b2020eae9446c53cace7bff0a89d412712cee742f2507060604c83fc4fdf 2025-12-05T22:30:47.8640349Z deleted: sha256:3784ddaba658307bd40557c8b6f4da221f2f3319a6e738217f1568f3da20bda1 2025-12-05T22:30:47.8641048Z deleted: sha256:3adc8c3a0ad950719ea8551591f7fd12aaa7fc873f9eeff3e0686206b82652e9 2025-12-05T22:30:47.8641720Z deleted: sha256:fc97259d1e3f6f72a38c1bcc604fd7984956121cdeabce4964b64564ba5d34d9 2025-12-05T22:30:47.8642372Z deleted: sha256:66fd19477d6b3013bbe8ca3a036cfd4cfdff0049939abf65e3965df13b605d33 2025-12-05T22:30:47.8643032Z deleted: sha256:2237ec692bfbe5f3dde11de6d09224242da7669ae82622b26fd5849eaa8df91f 2025-12-05T22:30:47.8643700Z deleted: sha256:7aeced3a612ec71fa30ca9f475746ba1a96ee889f137c6fcf1bcda026bf7e43a 2025-12-05T22:30:47.8644664Z deleted: sha256:39a8e7c57074b3cc3e7c4676b11026097b7ac34d58b590261e5b374b81d8848f 2025-12-05T22:30:47.8645422Z deleted: sha256:d9f58ba339c27387f32429bd37622b1f378a9cf566050a8cfcff4df51e65aaab 2025-12-05T22:30:47.8646062Z deleted: sha256:05e6b3c3af929f4300ab066b3c1fa62e45a3f07cb31d2208ac5d55022bf7f129 2025-12-05T22:30:47.8646720Z deleted: sha256:14a1fd583642130f44f03f54127a62c93beb80b2aca38e5dc7ffbf90be2a2ddd 2025-12-05T22:30:47.8647435Z deleted: sha256:4ffbba3ca603b01f369585e152f7eb864c08ed1a7915b53f1657613b52df3124 2025-12-05T22:30:47.8648080Z deleted: sha256:08fcd10b5791bd56ff03e45f63e64fe37b978b1c0cb54e65747fef00274380f6 2025-12-05T22:30:47.8648741Z deleted: sha256:3c9de693ae2ab6318be1c560eb75afe5932d7de5f8ea30b3abee3b36c8cfaa63 2025-12-05T22:30:47.8649396Z deleted: sha256:f76e400ef16da66c48b0761fe9c021ac7f9c4c821a6a8d0caaea8a965050fcf1 2025-12-05T22:30:47.8650056Z deleted: sha256:a7f8dbf5f420bdd921f47689f7e319df1b17eb44e0d24b327700629ba65d2dc0 2025-12-05T22:30:47.8650843Z deleted: sha256:ed378b3bf9194c6333aec719a10efab5a3ccfa1ee7775e9050cb4fe55583b907 2025-12-05T22:30:47.8651506Z deleted: sha256:f88469de6ea6b895552246b7a072f3fa1951fcd83a251ceab5877b7e09039442 2025-12-05T22:30:47.8652158Z deleted: sha256:5cff454e63587ffad2470ecf8c1553a3a4bea4449d82ea1a815144a021ea46b5 2025-12-05T22:30:47.8652796Z deleted: sha256:188e38058bb481d2a88817aef0ed28596423c0490c08596127dfaa8ab7b48879 2025-12-05T22:30:47.8653450Z deleted: sha256:2d51537d1490ade655d5984ddd9eaac9182ad516bbeffe9b49e1ebaab660f923 2025-12-05T22:30:47.8654096Z deleted: sha256:40b71d885e09dce137820d5b09f4e033aa7802edef00a85257d62ced2e6a41ae 2025-12-05T22:30:47.8654750Z deleted: sha256:a0e6ca325dfcc41ed0141b0bfe720879cfaa1f2715aa5f342866ee90eaaaae77 2025-12-05T22:30:47.8655398Z deleted: sha256:fb5425fbaf636606c7c43e24cc36dc3ed584cef7ce72ef1d175041ef16493439 2025-12-05T22:30:47.8656184Z deleted: sha256:add195bb1be50b56ee11754b0b78a160d769e0962e430607d148bc054aede3a1 2025-12-05T22:30:47.8656843Z deleted: sha256:f6270ecc229d49ced1fad69266798c506a6bda477bffc59e0137ec138a4dbdd4 2025-12-05T22:30:47.8657492Z deleted: sha256:c331463960b13ddfecae3aae86e089aeff5f7ca9cb4d01c386d318f7d987d8cb 2025-12-05T22:30:47.8658150Z deleted: sha256:e22ef2898fd532fcf8a3fb45de699b49400b4057084a9e15d71f39b6085de3a5 2025-12-05T22:30:47.8658793Z deleted: sha256:e1f41c549c70fbca7ad108852a3b0b85a1d9af38b8d50b99eed977184c8c016e 2025-12-05T22:30:47.8659445Z deleted: sha256:2af8656779178ebc4b21a8dfed2e04f7377b03618b7017803408ad822dad78e9 2025-12-05T22:30:47.8660085Z deleted: sha256:113b5484f09b9e8894f0d5a8b56de9f740b3caf36977d6f90649904d1d06b2eb 2025-12-05T22:30:47.8660727Z deleted: sha256:cacd58ec5a9871babaff8317c54b1f21a6edd35c6b83c07e35e05537f50abfb9 2025-12-05T22:30:47.8661393Z deleted: sha256:7dcf428f41fc16dbdf743ea95896bfc55b54b1fb53d3f55a4a62727bafc0a4a7 2025-12-05T22:30:47.8662212Z deleted: sha256:4300ff01a7295029d0b364f509811b790e2fcb4719bbd47ead86b1da69dda523 2025-12-05T22:30:47.8662867Z deleted: sha256:2f72b415f61b1248fcc1abec3be403a21564149f7eaf02ef34851d7c5c54a597 2025-12-05T22:30:47.8663516Z deleted: sha256:7117abf745374fac600adb7055691adc2e274a79db342f5951d94f1ba17cc4c1 2025-12-05T22:30:47.8664174Z deleted: sha256:941e8c2a00a21171d896b690ae0b71df823bcbed3ba6ef71f3045f549512bf11 2025-12-05T22:30:47.8664813Z deleted: sha256:a5f67e12471211ed281a40f687ba5454494185739038e42ec922c06c471a87f0 2025-12-05T22:30:47.8665430Z deleted: sha256:f1a6964e6e711555f3d23898a91c8bb62800652601d6235ba5a122c544feda35 2025-12-05T22:30:47.8666091Z deleted: sha256:0b0c0fddeb9c5d1628cf7c133e88dfc7e2a4db4bca816ae1872dda67a45d4dfb 2025-12-05T22:30:47.8666749Z deleted: sha256:899a9d50579f6dc622ebd4ec78208101e086d5de3a8e4ab963de8eca8619d0f1 2025-12-05T22:30:47.8667401Z deleted: sha256:75c20fa155dba0467667f0226ea19bc6f541cb126ae26c6f954498d9bb77ab4b 2025-12-05T22:30:47.8668060Z deleted: sha256:36997a0a587afa3fa28cb56fd62117f6467bdb7acd961d31dc1d37dfaab03c33 2025-12-05T22:30:47.8668785Z deleted: sha256:d33dcfd74034ab7ebf80b12e184533c83ae4293549ebdb3b2f672770535ab579 2025-12-05T22:30:47.8669556Z deleted: sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b 2025-12-05T22:30:47.8669980Z 2025-12-05T22:30:47.8685133Z Total reclaimed space: 14.78GB 2025-12-05T22:30:47.8736542Z ##[group]Run set +e 2025-12-05T22:30:47.8736850Z set +e 2025-12-05T22:30:47.8737115Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-12-05T22:30:47.8737530Z  sudo rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-12-05T22:30:47.8738000Z else 2025-12-05T22:30:47.8738280Z  rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-12-05T22:30:47.8738639Z fi 2025-12-05T22:30:47.8738854Z set -e 2025-12-05T22:30:47.8748222Z shell: /usr/bin/bash -e {0} 2025-12-05T22:30:47.8748597Z env: 2025-12-05T22:30:47.8748904Z DOCKER_IMAGE: ci-image:executorch-ubuntu-22.04-arm-sdk 2025-12-05T22:30:47.8749315Z REPOSITORY: pytorch/executorch 2025-12-05T22:30:47.8749597Z PR_NUMBER: 2025-12-05T22:30:47.8759186Z SCRIPT: # 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}" cxx_flags="-fno-exceptions -fno-rtti -Wall -Werror -Wno-int-in-bool-context -DET_HAVE_PREAD=0" setup_script_args="" if [[ zephyr-preset == "bare_metal" ]]; then toolchain_prefix=arm-none-eabi- threshold="110592" # 108 KiB toolchain_cmake=examples/arm/ethos-u-setup/arm-none-eabi-gcc.cmake elif [[ zephyr-preset == "zephyr-preset" ]]; then setup_script_args="--target-toolchain zephyr" toolchain_prefix=arm-zephyr-eabi- threshold="135768" # 136 KiB toolchain_cmake=examples/zephyr/x86_64-linux-arm-zephyr-eabi-gcc.cmake else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi source .ci/scripts/utils.sh install_executorch "--use-pt-pinned-commit" .ci/scripts/setup-arm-baremetal-tools.sh ${setup_script_args} source examples/arm/ethos-u-scratch/setup_path.sh # User toolchain ${toolchain_prefix}c++ --version # Setup cmake target to desired toolchain toolchain_cmake=$(realpath ${toolchain_cmake}) # Build and run size test if [[ zephyr-preset == "bare_metal" ]]; then bash test/build_size_test.sh "-DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DEXECUTORCH_BUILD_ARM_BAREMETAL=ON" elif [[ zephyr-preset == "zephyr-preset" ]]; then CXXFLAGS=${cxx_flags} cmake --preset zephyr -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_OPTIMIZE_SIZE=ON -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out . cmake --build cmake-out -j9 --target install --config Release CXXFLAGS=${cxx_flags} cmake -DCMAKE_TOOLCHAIN_FILE=${toolchain_cmake} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake-out -Bcmake-out/test test cmake --build cmake-out/test -j9 --config Release else echo "Fail unsupport OS selection zephyr-preset" exit 1 fi elf="cmake-out/test/size_test" # Dump basic info ls -al ${elf} ${toolchain_prefix}size ${elf} # Dump symbol python .github/scripts/run_nm.py -e ${elf} python .github/scripts/run_nm.py -e ${elf} -f "executorch" -p "${toolchain_prefix}" python .github/scripts/run_nm.py -e ${elf} -f "executorch_text" -p "${toolchain_prefix}" # Add basic guard - TODO: refine this! ${toolchain_prefix}strip ${elf} output=$(ls -la ${elf}) arr=($output) size=${arr[4]} echo "size: $size, threshold: $threshold" if [[ "$size" -le "$threshold" ]]; then echo "Success $size <= $threshold" else echo "Fail $size > $threshold" exit 1 fi 2025-12-05T22:30:47.8769164Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-12-05T22:30:47.8769781Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-12-05T22:30:47.8770341Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-12-05T22:30:47.8770745Z NO_SUDO: false 2025-12-05T22:30:47.8770964Z ##[endgroup] 2025-12-05T22:30:49.7952865Z Post job cleanup. 2025-12-05T22:30:49.9063299Z Post job cleanup. 2025-12-05T22:30:50.0031133Z [command]/usr/bin/git version 2025-12-05T22:30:50.0089386Z git version 2.50.1 2025-12-05T22:30:50.0130236Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/a7c6e9a9-2db8-4370-b79f-9a2ca6d3e29d' before making global git config changes 2025-12-05T22:30:50.0131325Z Adding repository directory to the temporary git global config as a safe directory 2025-12-05T22:30:50.0135183Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-12-05T22:30:50.0165668Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-12-05T22:30:50.0203098Z [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-12-05T22:30:50.0493389Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-12-05T22:30:50.0516846Z http.https://github.com/.extraheader 2025-12-05T22:30:50.0532955Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-12-05T22:30:50.0564983Z [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-12-05T22:30:50.0901198Z A job completed hook has been configured by the self-hosted runner administrator 2025-12-05T22:30:50.0927203Z ##[group]Run '/home/ec2-user/runner-scripts/after_job.sh' 2025-12-05T22:30:50.0932686Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-05T22:30:50.0933071Z ##[endgroup] 2025-12-05T22:30:57.1093268Z Cleaning up orphan processes